如何向我的 gridview 添加超链接
我想在我的网格视图中设置超链接(在图像上)。当用户单击该超链接时,应根据下拉列表的选定值生成查询字符串。如何在gridview中设置超链接以及如何为该超链接形成查询字符串?
提前致谢..
I want to set hyperlink (on image) in my gridview. When user clicks on that hyperlink, a query string should be generated based on selected value of dropdown list. How to set the hyperlink in gridview and how to form query string for that hyperlink?
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以简单地将下拉列表的值连接到超链接
编辑:的
NavigateUrl
属性You can simply Cancatinate the value of your dropdown to
NavigateUrl
property of hyperlinkEdit:
为此,您可能需要 javascript。
一些更详细的信息将有助于为您提供一些代码。 。
您是否使用 asp HyperLink、ImageButton...?
例如,您可以使用 OnClientClick 属性< /a> 如果您要使用 ImageButton。
You will probably need javascript for this.
Some more detailed information would be useful to be able to provide you with some code..
Are you using an asp HyperLink, ImageButton, ...?
You could for example use the OnClientClick property in case you would be using an ImageButton.