ASP.NET 中的动态 NavigationURL 取自 MySQL 数据库
我试图在 ASP.NET 的 ListView 控件中创建一个额外的字段,以使用 URL 中该条目的 ID 链接到另一个页面。
目前正在尝试
<asp:HyperLink
ID="HLDisasterDetails"
runat="server"
Text="Disaster Details"
NavigateUrl=<% "~/DisasterDetails.aspx?Disaster_ID=" &
Eval("Disaster_ID") %> />
哪个不起作用。
非常感谢您的帮助
~M
I'm trying to make an extra field in a ListView control in ASP.NET to link to another page using the ID from that entry in the URL.
Currently trying
<asp:HyperLink
ID="HLDisasterDetails"
runat="server"
Text="Disaster Details"
NavigateUrl=<% "~/DisasterDetails.aspx?Disaster_ID=" &
Eval("Disaster_ID") %> />
which doesn't work.
Help would be greatly appreciated
~M
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加#符号
-RVR
Add a # Symbol
-RVR