摘要: 各进制之间的转换各进制之间的转换#region 各进制之间的转换 public static string TenConvertToOther(int num,int type) { //1)10进制转换为2,8,10,16进制 //2)numm是十进制数 //3)type是转换类型,可以是2,8,10,... 阅读全文
posted @ 2006-01-15 02:23 jhtchina 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1.思归http://blog.joycode.com/saucer/2.LoveCherryhttp://lovecherry.cnblogs.com/3.陕北吴旗娃http://blog.mvpcn.net/webdiyer/http://www.webdiyer.com/4.蝈蝈俊.nethttp://blog.joycode.com/ghj/5.袁峰http://blog.joycode.... 阅读全文
posted @ 2006-01-15 02:21 jhtchina 阅读(257) 评论(0) 推荐(0) 编辑
摘要: --1.给表中字段添加描述信息CREATE table T2 (id int , name char (20))GOEXEC sp_addextendedproperty 'MS_Description', 'Employee ID', 'user', dbo, 'table', T2, 'column', idEXEC sp_updateextendedproperty 'MS_De... 阅读全文
posted @ 2006-01-15 02:14 jhtchina 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 添加到收藏夹和设置首页代码大全 加入收藏夹 鼠标滑过文字弹出收藏夹 ... 阅读全文
posted @ 2006-01-15 01:49 jhtchina 阅读(624) 评论(0) 推荐(0) 编辑
摘要: javascript.function textCounter(field, maxlimit){ if (field.value.length > maxlimit) field.value = field.value.substring(0, maxlimit);}textBox.TextMode = TextBoxMode.MultiLine;textBox.Rows = 5;textB... 阅读全文
posted @ 2006-01-15 01:48 jhtchina 阅读(1250) 评论(0) 推荐(0) 编辑
摘要: From:http://singlepine.cnblogs.com/articles/299457.html 1.WMI简介WMI是英文Windows Management Instrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,关闭进程,创建进程等。2.使用时首先添加System.Managemen... 阅读全文
posted @ 2006-01-15 01:46 jhtchina 阅读(898) 评论(0) 推荐(0) 编辑
摘要: SELECT 表名=case when a.colorder=1 then d.name else '' end, 表说明=case when a.colorder=1 then isnull(f.value,'') else '' end, 字段序号=a.colorder, 字段名=a.name, 标识=case when COLUMNPROPERTY( a.id,a.name,'IsIden... 阅读全文
posted @ 2006-01-15 01:20 jhtchina 阅读(431) 评论(0) 推荐(0) 编辑
摘要: *.resx;*.scc;*.bak;*.cs;*.webinfo;*.vspscc;*.csproj;*.vsdisco;*.pdb上面的文件是需要删除的 阅读全文
posted @ 2006-01-15 00:39 jhtchina 阅读(506) 评论(2) 推荐(0) 编辑