摘要:
找到电脑安装ajax的目录,将文件夹下web.config中。。。段复制,覆盖掉项目中web.config中的。。。 阅读全文
摘要:
1. 在页面头中加入EnableEventValidation="false"2.在GridView_RowDataBound方法中加入以下代码段protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) {e.Row.Attributes["style"] = "cursor:hand"; #region /... 阅读全文
摘要:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { //鼠标经过时,行背景色变 //e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#E6F5FA'"); //... 阅读全文