会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
conjon Gu
享受代码,体验人生
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
下一页
2009年9月2日
日常小结
摘要: 版权标志 alt+169 &cope
阅读全文
posted @ 2009-09-02 14:52 新郎
阅读(131)
评论(0)
推荐(0)
2009年8月12日
sql 查询表的字段名称
摘要: select b.name from sysobjects a,syscolumns b where a.id=b.id and a.name= 'tableName'
阅读全文
posted @ 2009-08-12 11:24 新郎
阅读(215)
评论(0)
推荐(1)
2009年8月4日
dataset和实体类 之间的转换
摘要: //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 新郎
阅读(3868)
评论(0)
推荐(1)
2009年6月29日
windows7 vs2008问题结合
摘要: 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 新郎
阅读(282)
评论(0)
推荐(0)
2009年6月2日
datagridview 积累
摘要: //遍历每一列,禁用排序 for (int i = 0; i < dgvDemo.Columns.Count; i++) dgvDemo.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable;
阅读全文
posted @ 2009-06-02 12:23 新郎
阅读(141)
评论(0)
推荐(1)
2009年5月7日
sql小常识
摘要: 复制表(只复制结构,源表名: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 新郎
阅读(156)
评论(0)
推荐(1)
2008年12月9日
aspnet_regsql
摘要: 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 新郎
阅读(464)
评论(0)
推荐(0)
2008年11月25日
简单使用aspnetpage分页控件
摘要: 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 新郎
阅读(508)
评论(0)
推荐(0)
ajax 调用 webserver
摘要: ajax webserver 用户名:
阅读全文
posted @ 2008-11-25 20:56 新郎
阅读(608)
评论(0)
推荐(0)
2008年11月24日
固定table 的标题行
摘要: 列头 列头 h1 h2 h3 h4 h5 565656 565656 5656565656 56565656 56565656 56565656 56565656 56566666666666666666666666666666666666666666666666666666666666666666565656 a 单元...
阅读全文
posted @ 2008-11-24 16:28 新郎
阅读(5709)
评论(3)
推荐(2)
上一页
1
2
3
4
5
下一页
公告