如何使用参数制作链接按钮 onclick
HTML:
<asp:LinkButton ID="lnk_productImage" runat="server" Text="select"
OnClick="viewProductImage('<%#DataBinder.Eval(Container.DataItem,"Id") %>')"
>
</asp:LinkButton>
隐藏代码:
protected void viewProductImage(object sender, EventArgs e, int id)
{
//Load Product Image
}
HTML :
<asp:LinkButton ID="lnk_productImage" runat="server" Text="select"
OnClick="viewProductImage('<%#DataBinder.Eval(Container.DataItem,"Id") %>')"
>
</asp:LinkButton>
CodeBehind:
protected void viewProductImage(object sender, EventArgs e, int id)
{
//Load Product Image
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我看到您正在使用中继器,因此您可能可以使用以下代码:
在中继器模板中:
然后处理中继器的 ItemCommand 事件:
I see you're using a repeater, so you probably could use this code:
In your repeater template:
Then handle the repeater's ItemCommand event:
使用 linkbutton 的 CommandArgument 属性来传递参数。
CommandArgument 属性:
获取或设置传递给命令事件处理程序的可选参数以及关联的命令名称属性。
LinkButton 成员
Use CommandArgument property of linkbutton to pass parameters.
CommandArgument property:
Gets or sets an optional argument passed to the Command event handler along with the associated command name property.
LinkButton Members