DataGrid单击行时改变颜色
摘要: <script>//DataGrid单击行时改变颜色var oldrow;var newColor='#CCCCFF';var oldColor;function SelectRow(rowno){ if (oldrow == null){oldColor = document.all('row'+rowno).style.backgroundColor;document.all('r...
阅读全文
posted @
2006-04-29 10:37 记得忘记 阅读(87) |
评论 (0) 编辑
关于DataGrid最后一页只有一行记录时,删除此记录出错的问题
摘要: 一般在DataGrid中使用删除功能的时候,我们有时可能会遇到这样的情况:当我们执行一般的删除时可以正常删除,但是当最后一页只有一行记录时,这时我们删除此记录会出现下面的错误提示:Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount.aa这是因为当我们删除后,DataGrid的总页数(PageCount)...
阅读全文
posted @
2006-04-28 12:58 记得忘记 阅读(122) |
评论 (0) 编辑
数据库开发个人总结(ADO.NET小结)
摘要: 一.用SqlConnection连接SQL Server1..加入命名空间using System.Data.SqlClient;2.连接数据库SqlConnection myConnection = new SqlConnection();myConnection.ConnectionString = "user id=sa;password=sinofindb;initial catalog=...
阅读全文
posted @
2006-04-26 11:15 记得忘记 阅读(69) |
评论 (0) 编辑