|
-
Dec 21st, 2011, 06:20 PM
#1
Thread Starter
Frenzied Member
[RESOLVED] gridview column hyperlinks
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>
Last edited by met0555; Dec 21st, 2011 at 06:46 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|