Archive for May, 2008
Brain Test
I created my own account in tickle and got interested in their Brain Test. I was really impressed at my own result, never thought my left and right brain are perfectly working together fair and square. Hehe! It’s really fun you should try it.
Richard, you are Balanced-brained
That means you are able to draw on [...]
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>
In this example, the HyperLink Text property is binded to a specific [...]


