Gridview ItemTemplate OnClientClick javascript 函数,以 DataItem 值作为参数
我在 GridView 中的
中有一个按钮,我想在该按钮的 OnClientClick
上调用一个 javascript 函数,将 DataItem 值作为 javascript 的参数传递 。
<ItemTemplate>
// Labels and Html styles
....
<asp:Button ID="btnEdit" runat="server" Text="Edit" OnClientClick='javascript:CreateEditAddress(<%#Bind("Id") %>);' />
<asp:Button ID="btnDelete" runat="server" Text="Delete" />
</ItemTemplate>
如果我不会在 CreateEditAdess() 中添加参数,那么这很好用,但我需要参数
我知道我可以将 OnClientClick 事件值放在 gridview 的 OnRowDataBound 事件中,但我不想将其放在 CodeBehind 中。看来服务器标签没有正确解析。
我在这里错过了什么吗?
I have a button inside my <ItemTemplate>
in GridView and I want to call a javascript function on the OnClientClick
of that button passing the DataItem value as a parameter of the javascript function
<ItemTemplate>
// Labels and Html styles
....
<asp:Button ID="btnEdit" runat="server" Text="Edit" OnClientClick='javascript:CreateEditAddress(<%#Bind("Id") %>);' />
<asp:Button ID="btnDelete" runat="server" Text="Delete" />
</ItemTemplate>
If I will not put a parameter in CreateEditAddess()
this works well but I need the parameter.
I know I can put the OnClientClick event value in OnRowDataBound event of the gridview but I don't want to put it in CodeBehind. It seems like the server tag is not parsed correctly.
Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅:
使用超链接列加载 gridview
我认为你应该使用 <代码>DataBinder.Eval(Container, "DataItem.YourProperty")。
See this:
loading gridview with hyperlink column
I think you should use
DataBinder.Eval(Container, "DataItem.YourProperty")
.您也可以这样尝试:
当需要将一个或多个变量传递给 javascript 函数时,这将为您提供帮助。
You can also try like this:
This will help you when there is need to pass one or more variables to javascript function.