protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor='#FFFFFF';this.style.color='#336699'");
e.Row.Attributes.Add("OnMouseOver", "this.style.backgroundColor='#228ECE';this.style.color='#FF0000'");
e.Row.Attributes.Add("OnDblClick", "DbClickEvent('" + ((System.Data.DataRowView)(e.Row.DataItem)).Row.ItemArray[1] + "','" + Gcmc + "','" + Conn + "')");
e.Row.Attributes["style"] = "Cursor:hand";
}
}