如何在aspx页面中的转发器ItemDataBound函数中传递Control.ClientID?

时间:2012-07-21 07:46:48

标签: javascript asp.net clientid

我想调用JavaScript函数来折叠/展开。

我在跨度

的asp:repeater ItemTemplate中使用此代码
onclick="javascript:funCollExp(this,'<%= P1.ClientID %>');"

如何通过Control.ClientID

它将P1.ClientID替换为页面上的字符串。

2 个答案:

答案 0 :(得分:3)

你只需要这样做

"onclick="javascript:funCollExp(this,'" + P1.ClinetID + "');"

完整代码可以使用像这样的itemdatabound事件

<强>标记

<asp:Repeater id="myRepeater" 
       OnItemDataBound="myRepeater_ItemDataBound" runat="server">
    <ItemTemplate>
        <asp:button id="myDiv" runat="server">......</asp:button>
    </ItemTemplate>
</asp:Repeater>

<强>代码隐藏

protected void myRepeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if(e.Item.ItemType == ListItemType.Item 
           || e.Item.ItemType == ListItemType.AlternatingItem)
    {
      Button mybtn = e.Item.FindControl("mybtn") as bUTTON;

      mybtn.Attributes.Add("ONCLICK", "MYFUNCTION(this,'" + P1.ClientID + "');");
    }
}

答案 1 :(得分:1)

您需要做的就是这样使用

"onclick="javascript:funCollExp(this,'" + P1.ClinetID + "');"