摘要:
1.gridview双击GridView的OnRowDataBound事件;在后台的GridView1_RowDataBound()方法添加代码,最后代码如下所示:protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse){//首先判断是否是数据行if(e.Row.RowType==DataControlRowType.DataRow){//当鼠标停留时更改背景色e.Row.Attributes.Add("onmouseover","c=this.style.backgroundC 阅读全文
摘要:
今天在登录SqlServer2005的MicroSoft Sql Server Managerment Studio的时候,系统提示:在建立与服务器的连接时出错。在连接到SQL Server 2005时,在默认的设置下SQL Server不允许进行远程连接可能会导致此失败。(provider:命名管道提供程序,error:40-无法打开到SQL Server的连接)(Microsoft SQL Server,错误:53)。原因最后还是 是计算机名称的问题. 阅读全文
摘要:
.net获取select控件中的文本内容2009-11-28 21:19小V古|分类:C#/.NET|浏览1374次-----------------------------------------------------string houseType = ""; foreach(string elem in Request.get) { if (elem.Contains("SecType")) { houseType=Request[elem]; break; ... 阅读全文