Hi,
I would like to transform the data in the column into hyper link.
let's say if i have "apple" in my column , when clicked on it i wud like it to go to "microsoft.com/apple" . Any tip will be apprciated. THx
my current gridview code looks like this
<asp:TemplateField HeaderText="Status">
<EditItemTemplate>
<asp:TextBox ID="txtStatus" runat="server" Text='<%# Bind("Status") %>' Width="60" Font-Size="8" Font-Names="tahoma" ></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label12" runat="server" Text='<%# Bind("Status") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>


Reply With Quote

