Advertisement
Advertisement
| 07.02.2008 at 07:45PM PDT, ID: 23535707 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
...{
e.Row.Attributes.Add("onmouseover", ""window.open('javascript.htm', 'CustomPopUp',");
e.Row.Attributes.Add("onmouseout", ""window.close('javascript.htm', 'CustomPopUp',");
);
e.Row.Attributes["style"] = "Cursor:hand";
}
}
|