Finally I have my own domain name. Please click HERE to read this same post on my new site. Thanks!
Problem: I customized my gridview and created a set of boundfield columns. Now, I need to make one of these boundfields be clickable or some sort of hyperlink.
Solution: Create a TemplateField and a hyperlink control in your ItemTemplate.
<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:HyperLink ID="Hyperlink1" runat="server"
Text='<%# Bind("FieldName") %>'>
</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
Please click HERE to continue reading.
Filed under: .Net | 3 Comments
Tags: ASP, boundfield, gridview, hyperlink
Woooh! Pre, I Installed VS 2005 at home for self study. Will ask you if I have questions .net master! hehehe! XD
wehehe, wag ka maingay bleue nagpapanggap lang akong may alam!
But thats not clickable. How do I make that clickable.