代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1.首先我会检查一下服务器配置,重新配置一次服务器安全,可以参考http://hi.baidu.com/zzxap/blog/item/18180000ff921516738b6564.html2.其... Read More
posted @ 2010-09-06 15:49 咸鱼公子 Views(133) Comments(0) Diggs(0) Edit
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--数据库优化l64位MSSQL2008:少用触发器/游标/外键。多用存贮过程和视图。适量使用索引查询速度会提高很多,每个表的索引尽量不要超过3个。定时查看死锁的进程和等待进程,并清除,还要及时修正死锁的... Read More
posted @ 2010-09-06 15:14 咸鱼公子 Views(165) Comments(0) Diggs(0) Edit
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--天气预报Web服务,数据来源于中国气象局公用事业http://www.webxml.com.cn/WebServices/WeatherWebService.asmx中国股票行情分时走势预览缩略图ht... Read More
posted @ 2010-09-06 14:33 咸鱼公子 Views(249) Comments(0) Diggs(0) Edit
研究window服务,这文章不错!讲得也不错...最近项目中用到window服务程序,以前没接触过,比较陌生,花了两天的时间学习了下,写了个简单的服务,但在制作安装程序的时候,参照网上很多资料,却都制作不成功,可能是开发环境或项目配置的不同,这里把自己成功制作的方式贴出来,一方面留给自己,一方面也希望能给遇到同样问题绝望中不能自拔、以致失去灵魂的路人甲,路人乙一还魂丹 . . . IDE :WIN... Read More
posted @ 2010-09-06 11:22 咸鱼公子 Views(430) Comments(0) Diggs(0) Edit
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/*用途:检查输入字符串是否是带小数的数字格式,可以是负数输入:s:字符串返回:如果通过验证返回true,否则返回false*/functionisDecimal(str){if(isInteger(... Read More
posted @ 2010-09-06 11:17 咸鱼公子 Views(364) Comments(0) Diggs(0) Edit
我以前常用:IDictionary<string,string> iDict和IList<FileInfo> dirList但是后来有高手说了要用hashtable据说性能比前两者好,那以后就用这hashtable吧呵呵,跟着大部队走...hashtable听起来也牛一些,就像人们比较:.net和JAVA的时候,人们往往都会说JAVA好,事事上JAVA工资也比.net高代码... Read More
posted @ 2010-09-06 11:04 咸鱼公子 Views(917) Comments(0) Diggs(0) Edit
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--LinqToSql会把连接字符串散落地写在多个位置,并且编译后就固定不可更改了。于是带来了各种不方便。比如在一台机器上配置好的程序拿到另一台机器上,就不得不找出所有散落的连接字符串,然后一一修改才能... Read More
posted @ 2010-08-30 10:08 咸鱼公子 Views(183) Comments(0) Diggs(0) Edit
最近在用linq那家伙,爽哇.基本不用自己写啥代码,拿来就可以用哇,查询方法如:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--基本语法varresult=fromitemincontainerorderbyvalueascending/desce... Read More
posted @ 2010-08-30 09:08 咸鱼公子 Views(297) Comments(0) Diggs(0) Edit
代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->在服务器端page_loadAjaxPro.Utility.RegisterTypeForAjax(typeof(test));this.Button_Write.Attributes.Add("onclick","WriteSession();");//写sessionthis.Button_Read.Attributes.Add("on Read More
posted @ 2010-08-04 08:52 咸鱼公子 Views(211) Comments(0) Diggs(0) Edit
Textbox回事件keychar//表示控下健的对应的字符代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--textbox有一个keypress事件,当触发的时候该事件对应的ASCII代码是:13[代码]验证TextBox中是不是数字e.handl... Read More
posted @ 2010-08-03 13:20 咸鱼公子 Views(186) Comments(0) Diggs(0) Edit