zoukankan      html  css  js  c++  java
  • Repeater中通过CommandName 获取到CommandArgument='<%#Eval("id") %>' 的值

    前台:

    <asp:Repeater ID="RepeaterShow" runat="server" OnItemCommand="RepeaterShow_ItemCommand">
    <%--OnItemCommand="Repeater1_ItemCommand"--%>
    <ItemTemplate>

    <tr role="row" class="gradeX even">

    <%-- <td>
    <asp:Label ID="Label2" runat="server" Text='<%# Eval("id") %>'></asp:Label></td>--%>
    <td>
    <asp:Label ID="Label1" Text='<%# Eval("title") %>' runat="server"></asp:Label></td>

    <td>
    <%-- <a class="make" onmouseup="hide('open')" href="#" onclick="SelectedImg(<%#Eval("id")%>)">
    选中</a>--%>
    <asp:LinkButton ID="LinkButton1" CommandName="make" CommandArgument='<%#Eval("id") %>' runat="server">选中</asp:LinkButton><%--OnClientClick="SelectedImg(<%#Eval("id")%>)"--%>

    </td>
    </tr>
    </ItemTemplate>
    </asp:Repeater>

     

     

    后台:

    protected void Page_Load(object sender, EventArgs e)
    {
    BindDate();
    }
    public void BindDate()//绑定数据
    {
    RepeaterShow.DataSource = IBLL.Factory.infoArticleCreate().GetModelList("Id=21");
    RepeaterShow.DataBind();
    }
    protected void RepeaterShow_ItemCommand(object source, RepeaterCommandEventArgs e)
    {
    if (e.CommandName == "make")
    {
       string str = e.CommandArgument.ToString();
       this.Alert(str);
    }

    }

     

  • 相关阅读:
    jq随手写图片放大
    solr查询语句示例
    solr使用语法笔记
    PHP的输出缓冲区(转)
    利用fsockopen可实现异步成功访问
    mysql自动加入添加时间列
    MySQL性能分析及explain的使用
    VS 无法启动程序
    android 编写动画
    Advanced Installer
  • 原文地址:https://www.cnblogs.com/shanshuiYiCheng/p/9626383.html
Copyright © 2011-2022 走看看