Click here to Skip to main content
15,898,020 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
how to take linklable inside datagridview in c# and to retrive the data from the database
Posted
Comments
Nigam Patel 22-Dec-11 1:43am    
Hi can u describe your question in brief?

See discussion for same
LinkLable control inside datagridview
 
Share this answer
 
google is your friend, learn to use it:

LinkLabel DataGrid Column[^]

DataGrid ColumnStyle as LinkLabel[^]

hope it helps :)
 
Share this answer
 
use this

<asp:GridView ID="grd" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:HyperLinkField DataTextField="Record_No"
DataNavigateUrlFields="page_to_navigate.aspx" />
<asp:ButtonField DataTextField="Name" />

</Columns>
</asp:GridView>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900