Hi,

in my asp.net project, I am populating a datagrid ( on a web form ) using a datareader (GetAllTrades). See below...

With dgNewTrades
.DataSource = oCatTMS.GetAllTrades
.DataKeyField = "tnum"
.DataBind()
End With

The AllowSorting property is set to true.

But I can not sort the data. When I place the mouse over the column names, I will not get the hyperlinks.

Any thoughts?
Thanks