2009年9月2日
摘要: 版权标志 alt+169 &cope 阅读全文
posted @ 2009-09-02 14:52 新郎 阅读(123) 评论(0) 推荐(0) 编辑
  2009年8月12日
摘要: select b.name from sysobjects a,syscolumns b where a.id=b.id and a.name= 'tableName' 阅读全文
posted @ 2009-08-12 11:24 新郎 阅读(204) 评论(0) 推荐(1) 编辑
  2009年8月4日
摘要: //dataset转实体类 public static IList<T> FillModel(DataSet ds) { List<T> l = new List<T>(); T model = default(T);if (ds.Tables[0].Columns[0].ColumnName == "rowId") { ds.Tables[0].Columns... 阅读全文
posted @ 2009-08-04 10:18 新郎 阅读(3863) 评论(0) 推荐(1) 编辑
  2009年6月29日
摘要: Q:无法调试的问题(localhost无法直接调试需要改成127.0.0.1)A:修改windows-》system32=》drivers=》ect=》host文件。对应localhost 和127.0.0.1Q:VS2008对JQuery的支持 1.3.2?A:需要安装2008sp1的补丁,然后jquery-1.3.2-vsdoc2.js 改成 jquery-1.3.2-vsdoc.js就可以实... 阅读全文
posted @ 2009-06-29 16:07 新郎 阅读(276) 评论(0) 推荐(0) 编辑
  2009年6月2日
摘要: //遍历每一列,禁用排序 for (int i = 0; i < dgvDemo.Columns.Count; i++) dgvDemo.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable; 阅读全文
posted @ 2009-06-02 12:23 新郎 阅读(132) 评论(0) 推荐(1) 编辑
  2009年5月7日
摘要: 复制表(只复制结构,源表名:a 新表名:b)   SQL: select * into b from a where 1<>1   拷贝表(拷贝数据,源表名:a 目标表名:b)   SQL: insert into b(a, b, c) select d,e,f from b; 阅读全文
posted @ 2009-05-07 15:01 新郎 阅读(150) 评论(0) 推荐(1) 编辑
  2008年12月9日
摘要: aspnet_regsql使SQL支持会话状态aspnet_regsql -S localhost -U sa -P password -ssadd -sstype p其中:-sstype有三个值:t,p,c(详细说明可使用 aspnet_regsql -? 命令查看)使数据库支持SQL Server高速缓存禁用功能aspnet_regsql -S localhost -U sa -P passw... 阅读全文
posted @ 2008-12-09 09:55 新郎 阅读(460) 评论(0) 推荐(0) 编辑
  2008年11月25日
摘要: public partial class Default : System.Web.UI.Page { protected static string CONNECTIONSTRING = System.Configuration.ConfigurationManager.AppSettings["configer"]; protected void... 阅读全文
posted @ 2008-11-25 22:00 新郎 阅读(501) 评论(0) 推荐(0) 编辑
摘要: ajax webserver 用户名: 阅读全文
posted @ 2008-11-25 20:56 新郎 阅读(602) 评论(0) 推荐(0) 编辑
  2008年11月24日
摘要: 列头 列头 h1 h2 h3 h4 h5 565656 565656 5656565656 56565656 56565656 56565656 56565656 56566666666666666666666666666666666666666666666666666666666666666666565656 a 单元... 阅读全文
posted @ 2008-11-24 16:28 新郎 阅读(5697) 评论(3) 推荐(2) 编辑