zoukankan      html  css  js  c++  java
  • 在 repeater控件中有button控件,如何点击button按钮在后头产生方法

     <asp:Repeater ID="Repeater1" runat="server" OnItemCommand="Repeater1_ItemCommand">
          <ItemTemplate>
              <ul>
                  <li>
                         <%#Eval("id") %></li>
                    <li>
                     <asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
                    <asp:Button ID="Button3" runat="server" CommandName="Insert" CommandArgument='<%#Eval("id") %>' Text="添加" /></li>

                  </ul>
                </ItemTemplate>
           </asp:Repeater>
       </div>



    protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
        {
            if (e.CommandName == "Insert")
            {
                int id = int.Parse(e.CommandArgument.ToString());
                string str = ((TextBox)e.Item.FindControl("TextBox3")).Text;

                //插入数据库
            }
        }

  • 相关阅读:
    python常用包收集
    python pep 8
    常用python字符串处理
    安全资源整理
    WordPress下载安装简单配置实例
    PHP框架学习之Laravel基本功能
    PHP框架学习之Laravel安装
    PHP面试题之优化
    PHP面试题之小杂鱼
    PHP面试题之文件目录操作
  • 原文地址:https://www.cnblogs.com/q101301/p/3693735.html
Copyright © 2011-2022 走看看