Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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","getProductCategoryNameGV","getProductCategoryIDGV", "~/PT_productdetails.aspx?ProductID={0}&amp;CategoryName={1}&amp;CategoryID={2}") %>'>
like image 607
burntsugar Avatar asked Feb 25 '10 05:02

burntsugar


1 Answers

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"))) %>'
like image 148
dugas Avatar answered Oct 07 '22 12:10

dugas