摘要:
版权标志 alt+169 &cope 阅读全文
摘要:
select b.name from sysobjects a,syscolumns b where a.id=b.id and a.name= 'tableName' 阅读全文
摘要:
//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... 阅读全文
摘要:
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就可以实... 阅读全文
摘要:
//遍历每一列,禁用排序 for (int i = 0; i < dgvDemo.Columns.Count; i++) dgvDemo.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable; 阅读全文
摘要:
复制表(只复制结构,源表名: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; 阅读全文
摘要:
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... 阅读全文
摘要:
public partial class Default : System.Web.UI.Page { protected static string CONNECTIONSTRING = System.Configuration.ConfigurationManager.AppSettings["configer"]; protected void... 阅读全文
摘要:
ajax webserver 用户名: 阅读全文
摘要:
列头 列头 h1 h2 h3 h4 h5 565656 565656 5656565656 56565656 56565656 56565656 56565656 56566666666666666666666666666666666666666666666666666666666666666666565656 a 单元... 阅读全文