I have a Gridview with a Hyperlink column. I want to route(Navigate) using hyperlinks depending on the id value from the database.
<asp:HyperLinkField DataNavigateUrlFields="id"
DataNavigateUrlFormatString="product" DataTextField="pName"
HeaderText="Product Name"
NavigateUrl='<%$ RouteUrl:id=Eval("id"), routename = ProductRoute%>'
/>
This开发者_如何学C results in an error message:
404 page not found
How can this be fixed? .
Try creating the link in the RowDataBound event handler in your code-behind and debug it there.
精彩评论