Showing posts with label Pass two arguments toDataNavigateUrlFormatString in hyperlink field of Asp.NET Grid-View. Show all posts
Showing posts with label Pass two arguments toDataNavigateUrlFormatString in hyperlink field of Asp.NET Grid-View. Show all posts

Thursday, May 9, 2013

Pass two arguments to DataNavigateUrlFormatString

Hyperlink Column in a Gridview can be easily accomadated to accept two or more arguments as displayed below.

 <asp:GridView ID=”GridView1″ runat=”server” AutoGenerateColumns=”False” >
<Columns>

<asp:HyperLinkField DataNavigateUrlFields=”ProducrID,Company” DataNavigateUrlFormatString=”ProductDetails.aspx?ProducrID={0}&Company={1}” Text=”View Student” />
<asp:BoundField DataField=”Description” HeaderText=”Description"  />
</Columns>
</asp:GridView>   

Cheers
Samitha