ASP.NET multiple Eval fields
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","getProduc开发者_高级运维tCategoryNameGV","getProductCategoryIDGV", "~/PT_productdetails.aspx?ProductID={0}&CategoryName={1}&CategoryID={2}") %>'>
Try:
NavigateUrl= '<%# String.Format("~/PT_productdetails.aspx?ProductID={0}&CategoryName={1}&CategoryID={2}", HttpUtility.UrlEncode(Eval("getProductIDGV")), HttpUtility.UrlEncode(Eval("getProductCategoryNameGV")), HttpUtility.UrlEncode(Eval("getProductCategoryIDGV"))) %>'
精彩评论