上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 52 下一页
摘要: C# 建立数据库 CRL 项目 .Net 3.5public partial class MyClr{ [Microsoft.SqlServer.Server.SqlFunction] public static SqlBoolean CLRFBitContains(string MyB... 阅读全文
posted @ 2012-02-26 14:30 NewSea 阅读(5768) 评论(0) 推荐(0) 编辑
摘要: 最近发现一个页面速度很慢,IE8 下报脚本运行时间太长,是否要停止的警告. 定位到$(d).find(":text,textarea,:hidden,:password,:radio:checked") .在其它浏览器里没有问题, 只有 IE8 .继续查找,发现它会执行如下代码.在 jQuery 上执行 : sortOrder 函数 . // Otherwise they're somewhere else in the tree so we need // to build up a full list of the parentNodes for compari 阅读全文
posted @ 2012-01-04 18:44 NewSea 阅读(1555) 评论(0) 推荐(0) 编辑
摘要: public override DbType DbType{ get { return this.GetMetaTypeOnly().DbType; } set { MetaType type = this._metaType; if (((type == null) || (type.DbType != value)) || ((value == DbType.Date) || (value == DbType.Time))) { this.PropertyTypeChanging()... 阅读全文
posted @ 2011-12-26 16:02 NewSea 阅读(2036) 评论(3) 推荐(2) 编辑
摘要: 遇到很奇怪的问题:新建Mvc2.0项目,添加新的Area,在 Area里的 Web.config 配置<customErrors mode="On"/> , 在Area里的Controller 加上 ErrorHandle , 在Shared里添加 Error.aspx.Action 抛一个错.显示正确的 Error.aspx 里的信息,没问题.在真实项目中, 不能通过. 显示 运行时错误,需要配置customErrors .到现在依然没有找到真正的原因.现只记录解决的结果(在此感谢 TomXu 的大力帮助 ):public class MyError : Ha 阅读全文
posted @ 2011-12-20 16:34 NewSea 阅读(765) 评论(0) 推荐(1) 编辑
摘要: 从 VS 粘贴到 WPS 或 Word中,代码会惨不忍睹.几个月前,Word打开时总安装几分钟的东西,跟SB一样,忍无可忍,换了WPS.今天同样忍无可忍,决定搞定它.不让它如此烦人.选中代码 , WPS 里 开始->文字工具->智能格式整理.搞定.WPS就如此简单,如此小巧,如此智能(没弹出安装,比Word智能100000000倍.) 太帅了. 阅读全文
posted @ 2011-12-20 14:58 NewSea 阅读(8475) 评论(1) 推荐(1) 编辑
摘要: 安装Microsoft Silverlight 4 Tools for Visual Studio 2010 时报错:安装需求:必须先安装与 Silverlight Tools 4 语言版本相一致的 Visual Studio 2010、Visual Web Developer 学习版 2010 或 Visual Phone Developer 学习版 2010,Silverlight Tools 的安装才能继续。以下网址提供了其他语言版本的 Silverlight Tools: <A HREF="http://go.microsoft.com/fwlink/?LinkId=1 阅读全文
posted @ 2011-12-09 17:18 NewSea 阅读(2347) 评论(1) 推荐(1) 编辑
摘要: 第一名: PowerDesigner。 低级用户众多。完全没必要存在。第二名: iBatis 它什么都没做,而且配置超级复杂。其它:Oracle 开放给客户而非开发放给开发者,大小写问题从未规范。Office 相比 WPS , 它的产品太大了,无故的提示安装,和 SB一样。VSS SVN完胜。IE 用VS调试,IE会卡死 ,其设计者跟SB一样,prompt 都会阻止!FireFox Chrome 完胜, 版本一个月一个, 脑袋让驴踢了. 要命的是, Copy URL , Close FireFox , 它居然清空剪贴板, 我顶你个肺. 阅读全文
posted @ 2011-11-05 16:11 NewSea 阅读(711) 评论(6) 推荐(1) 编辑
摘要: declare @t1 table ( id int , val varchar(20)) insert into @t1 select 1 , 'a' union select 2 , 'b' union select 3 , 'd' ;declare @t2 table ( id int , val varchar(20)) insert into @t2 select 2 , 'b' union select 3 , 'b' union select 4 , 'c' ;select * fro 阅读全文
posted @ 2011-10-24 18:32 NewSea 阅读(253) 评论(0) 推荐(0) 编辑
摘要: this.GetType().GUID 的作用域是 固定版本下的程序集。即,在相同版本的程序集中,类的GUID 是固定的;版本不同的程序集,其 GUID是不同的。this.GetType().MetadataToken 是程序集下的唯一表示。即,在同一程序集中,类的 MetadataToken 是固定的;和版本没关系。 阅读全文
posted @ 2011-10-21 15:40 NewSea 阅读(712) 评论(0) 推荐(0) 编辑
摘要: DateTime.Today.Format("yyyy/MM/dd") 产生的结果依赖于 系统的地区和语言中关于时间的设置。如果系统设置为 "yyyy/MM/dd" 则 结果为 2011/10/21如果系统设置为 "yyyy-MM-dd" 则结果为 2011-10-21强制转为 "yyyy/MM/dd" 的方法为:DateTime.Today.Format(@"yyyy\/MM\/dd") ; 阅读全文
posted @ 2011-10-21 15:26 NewSea 阅读(434) 评论(3) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 52 下一页