If you want to change the Cursor when the mouse is over the GridView, follow the simple steps below:
protected void RowCreated (object sender, GridViewRowEventArgs e)
{
e.Row.Attributes.Add("onMouseOver", "this.style.cursor='n-resize'");
}
Hope that helps,
Regards
Tags: ASP.NET 2.0 - General