hazelmagic
New Member
I have recently converted my <asp:hyperlink> and <asp:BounderColumn> to <asp:TemplateColumn> in my datagrid. Like this:<BR><BR>from:<BR><asp:BoundColumn DataField=MfrName HeaderText=Manufacturer SortExpression=MfrName></asp:BoundColumn><BR><BR>to:<BR><asp:TemplateColumn SortExpression="MfrName"><BR> <HeaderTemplate><BR> Manufacturer<BR> </HeaderTemplate><BR> <ItemTemplate><BR> <%# DataBinder.Eval(Container, "DataItem.MfrName") %><BR> </ItemTemplate><BR></asp:TemplateColumn><BR><BR>Sorting works for the first example, but not for the second one. The table headers on the second example doesn't convert to hyperlinks. Any Ideas?<BR><BR>Regards<BR>Wiko