Im trying to change the "javascript:___dopostback" message in the header linkbutton (sort column).
Im handling the ItemDataBound event, and using this code:
if (e.Item is GridHeaderItem)
{
((LinkButton)e.Item.Cells[2].Controls[0]).Attributes.Add("onmouseover", "window.status='';");
}
But Its not working, someone tried it before?