ASP.NET 多个 Eval 字段
我需要在超链接控件的导航 URL 字段中包含多个 Eval 字段,但是,我尝试过的代码不起作用。
<asp:HyperLink ID="hlkImageLink" runat="server" NavigateUrl='<%# Eval("getProductIDGV","getProductCategoryNameGV","getProductCategoryIDGV", "~/PT_productdetails.aspx?ProductID={0}&CategoryName={1}&CategoryID={2}") %>'>
I need to include multiple Eval fields in the Navigate URL field of a hyperlink control, however, the code I have tried does not work.
<asp:HyperLink ID="hlkImageLink" runat="server" NavigateUrl='<%# Eval("getProductIDGV","getProductCategoryNameGV","getProductCategoryIDGV", "~/PT_productdetails.aspx?ProductID={0}&CategoryName={1}&CategoryID={2}") %>'>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: