LinkButton 将值发送到 OnClick 后面的代码
我有一个 ASP LinkButton
控件,我想知道如何在单击它时将值发送到后面的代码?这次活动可以吗?
<asp:LinkButton ID="ENameLinkBtn" runat="server"
style="font-weight: 700; font-size: 8pt;"
onclick="ENameLinkBtn_Click" ><%# Eval("EName") %></asp:LinkButton>
I have a ASP LinkButton
Control and I was wondering how to send a value to the code behind when it is clicked? Is that possible with this event?
<asp:LinkButton ID="ENameLinkBtn" runat="server"
style="font-weight: 700; font-size: 8pt;"
onclick="ENameLinkBtn_Click" ><%# Eval("EName") %></asp:LinkButton>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需添加到
CommandArgument
参数并在Click
处理程序上读出它:然后在您的点击事件中:
您还可以在以下情况下设置
CommandArgument
参数 :如果您在任何可绑定控件中使用LinkButton
,则通过执行以下操作进行绑定:Just add to the
CommandArgument
parameter and read it out on theClick
handler:Then in your click event:
Also you can set the
CommandArgument
argument when binding if you are using theLinkButton
in any bindable controls by doing:将 CommandName 属性和 CommandArgument 属性(可选)添加到 LinkButton 控件。然后将 OnCommand 属性设置为命令事件处理程序的名称。
然后,它将在您的处理程序中可用:有关
MSDN
Add a CommandName attribute, and optionally a CommandArgument attribute, to your LinkButton control. Then set the OnCommand attribute to the name of your Command event handler.
Then it will be available when in your handler:
More info on MSDN
尝试在后面的代码中检索链接按钮的文本属性:
Try and retrieve the text property of the link button in the code behind: