Hi Friend,
1. place DIV control with absolute position.
2. write / call javascript like below. in GridView1_RowDataBound
iam writing code for change background. you can alter for image
-------------------------------------------------------------------------------------------
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "this.originalstyle=this.style.backgroundColor;this.style.backgroundColor='#DDDDDD'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=this.originalstyle");
e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this.GridView1, "Select$" + e.Row.RowIndex);
}
Jayakumars, if this helps please login to Mark As Answer. | Alert Moderator