protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//单击/双击 事件
//e.Row.Attributes.Add("OnClick", "ClickEvent('" + e.Row.Cells[1].Text + "')");
e.Row.Attributes.Add("OnDblClick", "window.open('Login.aspx?ID=" + e.Row.Cells[1].Text + "')");//"DbClickEvent1('" + e.Row.Cells[1].Text + "')");
//e.Row.Attributes.Add("OnKeyDown", "GridViewItemKeyDownEvent('" + e.Row.Cells[1].Text + "')");
}}
//连接Access数据库
string strCon = "Provider=Microsoft.Jet.OleDB.4.0;Data Source=" + HttpContext.Current.Server.MapPath("~/App_Data/dbtest.mdb");