<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.feedsky.com/styles/feedsky6.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.feedsky.com/52hai" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/52hai" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 06 Nov 2008 06:59:26 GMT</lastBuildDate><title>星星猫技巧&amp;源码收集</title><description>我在网上闲晃时收集的一些AJAX/JS/ASP/PHP/FLASH源代码</description><link>http://www.52hai.com/2005/</link><language>en</language><copyright>Copyright 2008, 星星猫-技巧&amp;源码收集 [每日更新]</copyright><pubDate>Thu, 06 Nov 2008 07:19:05 GMT</pubDate><item><title>存储过程分页方法</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133965162/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2617</wfw:commentRss><description>asp类加存储过程分页方法，查询使用非常方便 new 一个类，加几个参数，就可以分页显示、多条件查询、多个字段排序等功能、连表查询等，一气呵成！&lt;br /&gt;&lt;br /&gt;     存储过程采用的是select top 加 not in的方式完成，速度也算是相当快了 我测试过了百万级数据量一般查询在1秒一下，贴出来大家交流下，看有没有什么好的建议。&lt;br /&gt;&lt;br /&gt;简单几句话就可以实现分页功能,请看代码：&lt;br /&gt;&lt;br /&gt; 最简单使用方法（适用于任何数据表）：&lt;br /&gt;test.asp&lt;div class=&quot;code&quot;&gt;&amp;lt;!--#include file=&amp;quot;conn.asp&amp;quot;--&amp;gt;&lt;br /&gt;&amp;lt;!--#include file=&amp;quot;Page.asp&amp;quot;--&amp;gt;&lt;/div&gt;</description><category>ASP&amp;PHP</category><pubDate>Thu, 06 Nov 2008 14:59:26 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2617</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2617</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133965162/5264823</fs:itemid></item><item><title>批处理上传文件到服务器</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133965163/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2616</wfw:commentRss><description>批处理上传文件到服务器 &lt;br /&gt;上传数据库备份文件到数据备份服务器，我所用的批处理文件。&lt;br /&gt;&lt;br /&gt;backup.bat&lt;div class=&quot;code&quot;&gt;backup.batftp -n -s:&amp;quot;d:\userweb\upbak.ftp&amp;quot; &lt;/div&gt;&lt;br /&gt;upbak.ftp&lt;div class=&quot;code&quot;&gt;upbak.ftpopen 192.168.1.19&lt;br /&gt;user webbakusername&lt;br /&gt;bakpassword!@#123&lt;br /&gt;lcd D:\userweb\www.gsta.cn\CMS\Databases    &lt;br /&gt;bin&lt;br /&gt;prompt&lt;br /&gt;mput *.*&lt;br /&gt;bye&lt;br /&gt;quit&lt;br /&gt;exit&lt;/div&gt;</description><category>Other Code</category><pubDate>Thu, 06 Nov 2008 14:57:20 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2616</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2616</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133965163/5264823</fs:itemid></item><item><title>[asp] xml缓存类 ，缓存到XML文件，有例子</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133965164/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2615</wfw:commentRss><description>代码:&lt;div class=&quot;code&quot;&gt;&amp;lt;%&lt;br /&gt;Rem xml缓存类&lt;br /&gt;&amp;#39;--------------------------------------------------------------------&lt;br /&gt;&amp;#39;转载的时候请保留版权信息&lt;br /&gt;&amp;#39;作者:╰⑥月の雨╮&lt;br /&gt;&amp;#39;版本:ver1.0&lt;br /&gt;&amp;#39;本类部分借鉴 walkmanxml数据缓存类，使用更为方便 欢迎各位交流进步&lt;br /&gt;&amp;#39;--------------------------------------------------------------------&lt;br /&gt;Class XmlCacheCls&lt;br /&gt;&amp;nbsp;Private m_DataConn                &amp;#39;数据源,必须已经打开&lt;/div&gt;</description><category>ASP&amp;PHP</category><pubDate>Thu, 06 Nov 2008 14:52:47 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2615</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2615</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133965164/5264823</fs:itemid></item><item><title>行业网站的商业计划书</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945449/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2614</wfw:commentRss><description>网站规划书写作 &lt;br /&gt;　　一个网站的成功与否与建站前的网站规划有着极为重要的关系。在建立网站前应明确建设网站的目的，确定网站的功能，确定网站规模、投入费用，进行必要的市场分析等。只有详细的规划，才能避免在网站建设中出现的很多问题，使网站建设能顺利进行。 &lt;br /&gt;　　网站规划是指在网站建设前对市场进行分析、确定网站的目的和功能，并根据需要对网站建设中的技术、内容、费用、测试、维护等做出规划。网站规划对网站建设起到计划和指导的作用，对网站的内容和维护起到定位作用。 &lt;br /&gt;&lt;br /&gt;　　 网站规划书出应该尽可能涵盖网站规划中的各个方面，网站规划书的写作要科学、认真、实事求是。 &lt;br /&gt;&lt;br /&gt;　　 网站规划书包含的内容如下： &lt;br /&gt;</description><category>优化&amp;赚钱</category><pubDate>Thu, 06 Nov 2008 13:42:41 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2614</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2614</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945449/5264823</fs:itemid></item><item><title>ajax表单验证效果</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945450/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2613</wfw:commentRss><description>保存到本地后运行，注意要保存成utf-8格式html文件[html]&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; title=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; title=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;script language=&amp;quot;javascript&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;</description><category>AJAX&amp;JS</category><pubDate>Sat, 01 Nov 2008 15:52:37 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2613</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2613</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945450/5264823</fs:itemid></item><item><title>鼠标拖动来写字，Ctrl+鼠标左键擦掉。</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945452/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2612</wfw:commentRss><description>[html]&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; title=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; title=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=gb2312&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;写字&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;</description><category>AJAX&amp;JS</category><pubDate>Sat, 01 Nov 2008 15:49:20 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2612</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2612</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945452/5264823</fs:itemid></item><item><title>ajax天气预报源代码，效果不错。</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945453/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2611</wfw:commentRss><description>html[html]&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; title=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; title=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Ajax天气预报&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;</description><category>AJAX&amp;JS</category><pubDate>Sat, 01 Nov 2008 15:43:03 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2611</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2611</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945453/5264823</fs:itemid></item><item><title>CSS+JS实现文字色彩渐变</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945454/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2610</wfw:commentRss><description>[html]&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; title=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; title=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;CLIP实现色彩渐变字体&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;body{font:12px/1.5 arial}&lt;br /&gt;</description><category>Other Code</category><pubDate>Sat, 01 Nov 2008 15:41:23 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2610</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2610</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945454/5264823</fs:itemid></item><item><title>tab选项卡型的菜单</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945455/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2609</wfw:commentRss><description>[html]&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; title=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; title=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Language&amp;quot; content=&amp;quot;zh-cn&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=gb2312&amp;quot; /&amp;gt;&lt;br /&gt;</description><category>AJAX&amp;JS</category><pubDate>Tue, 28 Oct 2008 13:36:44 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2609</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2609</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945455/5264823</fs:itemid></item><item><title>节约空间，一些大的代码压缩打包到群空间。</title><link>http://item.feedsky.com/~feedsky/52hai/~7155963/133945448/5264823/1/item.html</link><wfw:commentRss>http://www.52hai.com/2005/feed.asp?q=comment&amp;id=2385</wfw:commentRss><description>&lt;span style=&quot;font-size:18pt&quot;&gt;本站QQ群：14981896 &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;节约空间，一些大的代码压缩打包到群空间。有需要的请加群。&lt;span style=&quot;font-size:18pt&quot;&gt;验证信息&amp;quot;&lt;span style=&quot;color:Red&quot;&gt;52hai.com星星猫&lt;/span&gt;&amp;quot;。否则不通过。&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;另外加了群后，大家有自己收藏的好代码，不妨也贡献贡献，让更多的人学习哈~~，不要敝帚自珍哈~~&lt;br /&gt;&lt;br /&gt;现在群空间上传附件截图&lt;br /&gt;2008-1-16====2008-1-17&lt;br /&gt;&lt;div style=&quot;width: 100%;overflow-x : auto;&quot;&gt;&lt;a href=&quot;http://www.52hai.com/2005/uploads/200801/17_174044_1111.jpg&quot; target=&quot;_blank&quot;  rel=&quot;lightbox[roadtrip]&quot; alt=&quot;Welcome To My Blog&quot;&gt;&lt;img src=&quot;http://www.52hai.com/2005/uploads/200801/17_174044_1111.jpg&quot; onload=&quot;javascript:if(this.width&gt;550)this.width=550;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;2008-1-16前&lt;br /&gt;&lt;div style=&quot;width: 100%;overflow-x : auto;&quot;&gt;&lt;a href=&quot;http://www.52hai.com/2005/uploads/200801/15_094408_.jpg&quot; target=&quot;_blank&quot;  rel=&quot;lightbox[roadtrip]&quot; alt=&quot;Welcome To My Blog&quot;&gt;&lt;img src=&quot;http://www.52hai.com/2005/uploads/200801/15_094408_.jpg&quot; onload=&quot;javascript:if(this.width&gt;550)this.width=550;&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</description><category>个人记录</category><pubDate>Tue, 08 Jan 2008 11:31:06 +0800</pubDate><author>Admin &lt;null@null.com&gt;</author><guid isPermaLink="false">http://www.52hai.com/2005/article.asp?id=2385</guid><dc:creator>Admin &lt;null@null.com&gt;</dc:creator><fs:srclink>http://www.52hai.com/2005/article.asp?id=2385</fs:srclink><fs:srcfeed>http://www.52hai.com/2005/feed.asp</fs:srcfeed><fs:itemid>feedsky/52hai/~7155963/133945448/5264823</fs:itemid></item></channel></rss>