<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_。呢他</title><subtitle type="text">   </subtitle><id>http://feed.cnblogs.com/blog/u/21667/rss</id><updated>2007-06-07T05:36:20Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/21667/rss"/><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/06/07/774910.html</id><title type="text">Table变量和临时表区别</title><summary type="text">当table变量即使遇到回滚命令,但是也不会真的执行回滚.&#xD;任何含有临时表的存储过程是不能被预编译的.这在一个很长的存储过程中,优势会更加凸显.&#xD;table变量作为变量只能在同范围内存在,不可能跨范围.还有就是table变量在内置的存储过程中或者exec(string)语句中是不可见的还有就是不能被用于INSERT/EXEC statements.&#xD;</summary><published>2007-06-07T03:21:00Z</published><updated>2007-06-07T03:21:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/06/07/774910.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/06/07/774910.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/05/16/748589.html</id><title type="text">C#trim不掉空格的原因</title><summary type="text">项目中使用trim()方法trim()不掉,原来是是因为在字符串中含有非ascii的空格,而是含有不可见的ascii字符,比如ascii的0到63之间有许多不可见字符,例如 "\0" 这个在base64编码的时候很常见.只需要将那些不可见的字符去掉即可,如果不知道含有哪些不可见字符,可以循环把他们的asc码打印出来.</summary><published>2007-05-16T06:53:00Z</published><updated>2007-05-16T06:53:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/05/16/748589.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/05/16/748589.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/05/15/747444.html</id><title type="text">vss2005 只获取到文件夹获取不到文件的解决</title><summary type="text">今天特不爽,因为这个问题折腾了一天,还搞得晚上加班,post以留纪念,也为别人遇到类似问题提供参考.问题是这样的,我新到一个项目组,然后代码重量总共大概50M,然后我第一次使用vss2005获取整个文件夹.但是却获取了很久也没有获取到文件,只是文件夹一大堆的获取,而且界面死机频繁.而且经常到半途就告诉我network not found,很无奈,强行结束vss,后来反复几次,还是不行,最后,换了网...</summary><published>2007-05-15T09:20:00Z</published><updated>2007-05-15T09:20:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/05/15/747444.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/05/15/747444.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/04/17/716885.html</id><title type="text">关于asp.net session机制的疑惑以及猜想</title><summary type="text">   这几天自己做着玩一个网站，但是遇到了一个关于session的问题。我使用prototype的Ajax对象来访问页面获取参数，这个参数必须要根据当前的会话的唯一id来确认客户。一般这种需求都会想到SessionId，所以我使用了他。但是我却惊奇得发现，每次使用ajax去请求的时候，SessionId却是变化的！</summary><published>2007-04-17T07:38:00Z</published><updated>2007-04-17T07:38:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/04/17/716885.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/04/17/716885.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/04/14/712767.html</id><title type="text">一段关于浏览器兼容的事件定位代码，经过测试！</title><summary type="text">functionsetTipLocation(e){varintX=0,intY=0;if(e==null){e=window.event;}if(e.pageX||e.pageY)//如果要是存在这个对象pageX，那么{intX=e.pageX;intY=e.pageY;}elseif(e.clientX||e.clientY)//如果存在这个对象clientX,那么{if(document....</summary><published>2007-04-13T16:18:00Z</published><updated>2007-04-13T16:18:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/04/14/712767.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/04/14/712767.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/04/13/712750.html</id><title type="text">收集关于scrollTop信息</title><summary type="text">要获取当前页面的滚动条纵坐标位置，用：document.documentElement.scrollTop;而不是：document.body.scrollTop;documentElement 对应的是 html 标签，而 body 对应的是 body 标签。在标准w3c下，document.body.scrollTop恒为0，需要用document.documentElement.scroll...</summary><published>2007-04-13T15:53:00Z</published><updated>2007-04-13T15:53:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/04/13/712750.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/04/13/712750.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/04/03/697883.html</id><title type="text">数据库中null字段在逻辑层的判断的两种办法</title><summary type="text">群里的一位朋友问如何在逻辑层判断null字段，我写了个demo,顺便来个post.判断是否为null,在framework中有个类，叫做DBNull类，判断某个列是否为空，可以采用以下办法：1 if (ds.Tables[0].Rows[0]["NullField"] == DBNull.Value) 2 if (ds.Tables[0].Rows[i]["NullField"]is DBNull...</summary><published>2007-04-03T02:37:00Z</published><updated>2007-04-03T02:37:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/04/03/697883.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/04/03/697883.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/03/27/689985.html</id><title type="text">sql server 2005 新分页存储过程</title><summary type="text">createPROCEDURE[dbo].[PagingRecord](@PageIndexint,--页号,从0开始@PageSizeint,--页尺寸@OrderFieldvarchar(100),--排序字段及类型(多个条件用逗号分开)如：JobIDDESC,Checkintime@TableNamevarchar(100),--表名或视图表@FieldListvarchar(2000),-...</summary><published>2007-03-27T06:41:00Z</published><updated>2007-03-27T06:41:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/03/27/689985.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/03/27/689985.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/03/21/682509.html</id><title type="text">sql 优化之关于null 和数据类型</title><summary type="text">避免使用不兼容的数据类型： 例如float和INt、char和varchar、bINary和varbINary是不兼容的。数据类型的不兼容可能使优化器无法执行一些本来可以进行的优化操作。例如: SELECT name FROM employee WHERE salary ＞ 60000 在这条语句中,如salary字段是money型的,则优化器很难对其进行优化,因为60000是个整型数。我们应当在...</summary><published>2007-03-21T06:01:00Z</published><updated>2007-03-21T06:01:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/03/21/682509.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/03/21/682509.html"/></entry><entry><id>http://www.cnblogs.com/FrameWork/archive/2007/03/21/682459.html</id><title type="text">js trim函数</title><summary type="text">functiontrimStr(str){varre=/\s*(\S[^\0]*\S)\s*/;re.exec(str);returnRegExp.$1;}</summary><published>2007-03-21T05:26:00Z</published><updated>2007-03-21T05:26:00Z</updated><author><name>在北京的湖南人</name><uri>http://www.cnblogs.com/FrameWork/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FrameWork/archive/2007/03/21/682459.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FrameWork/archive/2007/03/21/682459.html"/></entry></feed>
