Let the storm money come!
摘要: 给SQL Server的表和字段加上注释类似于Oracle的comment。/comment on table UserInfo is '用户信息'/comment on column UserInfo."ID" is '用户编号'在SQL Server中,是这样实现的:EXECUTE sp_addextendedproperty N'MS_Description', N'教师开课表', N'us... 阅读全文
posted @ 2010-06-02 09:39 精密~顽石 阅读(7481) 评论(1) 推荐(0) 编辑
摘要: $("p:eq(1)").css("color", "red"); 也可以用 $("p:nth(1)") 来表示,不知道原理是什么,但是经过测试确实有效。 阅读全文
posted @ 2010-05-29 16:59 精密~顽石 阅读(302) 评论(1) 推荐(0) 编辑
摘要: 这是正确的写法:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<asp:TextBoxID="txtCostOrProject"contenteditable="false"CssClass="text"runat="server">... 阅读全文
posted @ 2010-05-28 15:43 精密~顽石 阅读(175) 评论(0) 推荐(0) 编辑
摘要: $("ul:nth-child(5n)").css("background-color","red");这样可以选择 5 的倍数行 阅读全文
posted @ 2010-05-12 14:50 精密~顽石 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<%@PageLanguage="C#"AutoEventWireup="true"CodeBehind="Default.aspx.cs"Inherits="TestDemo._Default... 阅读全文
posted @ 2010-05-12 10:43 精密~顽石 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 如果有测试项目在工程中, 将那个测试项目, 右击属性 - 》 安全选项, 将 clickonce 的那个勾去掉就可以了。 阅读全文
posted @ 2010-05-11 09:33 精密~顽石 阅读(576) 评论(0) 推荐(0) 编辑
摘要: contenteditable="false" 阅读全文
posted @ 2010-05-07 16:31 精密~顽石 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--functionNewClick(obj){varcurrentIndex=$(obj).parent().parent()[0].rowIndex;//得到当前的行索引$(obj).parent()... 阅读全文
posted @ 2010-04-20 20:03 精密~顽石 阅读(212) 评论(0) 推荐(0) 编辑
摘要: winform程序未捕获异常解决方法 (转)转自:http://www.cnblogs.com/kevinlzf/archive/2009/11/25/1610929.html在开发winform程序时,用到多线程,在服务器部署后运行,老是自动关才程序,症状描述如下:在Windows Server 2003的操作系统上,运行.Net 2.0或者3.5的应用程序时,会发现没有任何反应,到系统的事件查... 阅读全文
posted @ 2010-04-19 23:53 精密~顽石 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--publicTCastAll<T>(objectvalue){Ttemp=default(T);try{temp=(T)value;}catch{temp=default(T);}retu... 阅读全文
posted @ 2010-04-10 23:39 精密~顽石 阅读(186) 评论(0) 推荐(0) 编辑
在通往地狱的路上,加班能使你更快到达。