﻿<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xsl" href="/Images/rss.xslt"?><rss version="2.0"><channel><title>柳永法－ASP+VBS</title><description>柳永法(yongfa365)'Blog RSS</description><link>http://www.yongfa365.com/ASP/</link><copyright>(C) 2007 http://www.yongfa365.com</copyright><item>
  <title>硬盘整数分区FAT32/NTFS正确方法</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       硬盘整数分区FAT32/NTFS正确方法<br />' * FileName    Disk-Int-NTFS-FAT32<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/Disk-Int-NTFS-FAT32.vbs.html<br />' * From 		http://www.slyar.com/blog/disk-int-ntfs-fat32.html<br />' * MadeTime    2009-09-12 15:48:18<br />' * LastModify  2009-09-12 15:48:18<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/Disk-Int-NTFS-FAT32.html</link>
  <pubDate>Sat, 12 Sep 2009 15:51:44 GMT</pubDate>
</item>
<item>
  <title>添加网站到安全站点.设置安全站点打开ActiveX时提示.去页眉页脚.vbs</title>
  <description><![CDATA[<br />'/*=========================================================================<br />' * Intro       主要是解决在使用WebBrowser打印时，得先设置IE安全性的问题<br />' * FileName    添加网站到安全站点.设置安全站点打开ActiveX时提示.去页眉页脚.vbs<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB       ..]]></description>
  <link>http://www.yongfa365.com/Item/Set-IE-ActiveX-Prompted.vbs.html</link>
  <pubDate>Sat, 20 Jun 2009 09:32:12 GMT</pubDate>
</item>
<item>
  <title>定时自动备份文件夹AutoBackUpFolder.vbs</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       定时自动备份文件夹到一个以时间命名的新目录，设置好后加到启动项里，只要一启动机器程序就会自动运行，占系统资源可以不计<br />' * FileName    AutoBackUpFolder.VBS<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/AutoBackUpFolder.vbs.html<br />' * MadeTime    2009-05-14 17:18:33<br />' * LastModify  2009-05-14 17:18:33<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/AutoBackUpFolder.vbs.html</link>
  <pubDate>Thu, 14 May 2009 17:27:41 GMT</pubDate>
</item>
<item>
  <title>PHP安装脚本 PHPInstall.vbs V3.1</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       PHP安装脚本，您所要做的操作是：保存这个文件与要安装的php文件夹放一起(不要放在C盘根目录下)<br />' *             (当前版本php-5.2.5-Win32如果是其它请替换当前文档相关文件名)，然后双击运行这个文件,&lt;?phpinfo()?&gt;<br />' * FileName    PHPInstall.vbs<br />' * Author      yongfa365<br />' * Version     v3.1<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365@qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/PHPInstall.vbs.html<br />' * From        http://www.yongfa365.com/Item/PHPFirstInstall.vbs.html<br />' * MadeTime    2008-04-01 15:55:41<br />' * LastModify  2009-05-04 12:21:48<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/PHPInstall.vbs.html</link>
  <pubDate>Sun, 03 May 2009 18:57:33 GMT</pubDate>
</item>
<item>
  <title>VBS读网页</title>
  <description><![CDATA[<br />strURL = InputBox(&quot;请输入要读的网址&quot;, &quot;朗读网页&quot;, &quot;http://www.yongfa365.com/Item/ZhiXingLiBiChuangYiGengZhongYao.html&quot;)<br /><br />If strURL = &quot;&quot; Then<br />    Wscript.quit<br />End If<br /><br />Set ie = WScript.CreateObject(&quot;InternetExplorer.Application&quot;)<br />ie.visible = True<br />ie.navigate strURL<br />Do<br />    Wscript.Sleep ..]]></description>
  <link>http://www.yongfa365.com/Item/VBS-Du-Wang-Ye.html</link>
  <pubDate>Wed, 08 Apr 2009 09:12:38 GMT</pubDate>
</item>
<item>
  <title>启用IIS6的GZIP功能，提高网站打开速度，减少带宽占用</title>
  <description><![CDATA[IIS6默认情况下没有开启GZIP功能，需要我们手动配置，但他又没提供图形化配置功能，所以呀，像我这样的技术人才，都没考虑过使用他，昨天突然看到这个想到，也许对我有用，但从网上找了找，都是一堆手工操作方法，非常麻烦呀，不过以前研究过IIS的配置文件：C:\WINDOWS\system32\inetsrv\MetaBase.xml，所以呀，我知道只要是..]]></description>
  <link>http://www.yongfa365.com/Item/IIS6-Enable-Web-GZIP.html</link>
  <pubDate>Sat, 21 Mar 2009 10:16:11 GMT</pubDate>
</item>
<item>
  <title>VBScript使用ADSI为IIS批量添加屏蔽或允许访问的IP</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       VBScript使用ADSI为IIS批量添加屏蔽或允许访问的IP<br />' * FileName    VBScript-ADSI-IIS-Add-Deny-Grant-IP-Change-MetaBase.xml.vbs<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/ADSI-IIS-Add-Deny-Grant-IP.vbs.html<br />' * From        http://blog.csdn.net/linyu/archive/2008/11/14/3300454.aspx<br />' * MadeTime    2008-12-08 23:10:45<br />' * LastModify  2008-12-08 23:10:45<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/ADSI-IIS-Add-Deny-Grant-IP.vbs.html</link>
  <pubDate>Mon, 08 Dec 2008 23:32:32 GMT</pubDate>
</item>
<item>
  <title>使用WMI切换或改变IE代理(Use WMI Change IE Proxy)</title>
  <description><![CDATA['把你弄到的代理都写在一个文本文件里（IP.txt），格式是一行一个： ip:端口<br />IPS = CreateObject(&quot;Scripting.FileSystemObject&quot;).OpenTextFile(&quot;IP.txt&quot;, 1, True).ReadAll<br />IPS = Split(IPS, vbCrLf)<br /><br />For Each IP in IPS<br />    IPTemp = Split(IP, &quot;:&quot;)<br />    ChangeProxy IPTemp(0), IPTemp(1)<br />    Wscript.echo I..]]></description>
  <link>http://www.yongfa365.com/Item/ChangeProxy.vbs.html</link>
  <pubDate>Thu, 06 Nov 2008 14:16:36 GMT</pubDate>
</item>
<item>
  <title>让SendKeys可以发送中文</title>
  <description><![CDATA[<br /><br />'让SendKeys可以发送中文,clip.exe在windows2003里有<br />Set WshShell=CreateObject(&quot;WScript.Shell&quot;)<br />code=&quot;让SendKeys可以发送中文&quot;<br />WshShell.Run &quot;cmd.exe /c echo &quot; &amp; code &amp; &quot;| clip.exe&quot;, vbHide<br />app=WshShell.Run (&quot;notepad&quot;)<br />WScript.Sleep 1000<br />WshShell.AppActivate app<br />WshShell.SendKeys &quot;^v{BS}&quot;<br />Wsc..]]></description>
  <link>http://www.yongfa365.com/Item/SendKeys-Chinese.html</link>
  <pubDate>Thu, 06 Nov 2008 09:22:08 GMT</pubDate>
</item>
<item>
  <title>VBScript 可以做什么的简单说明</title>
  <description><![CDATA[　　先说说我都用VBScript做什么吧：ASP环境开发网页时，用VBScript脚本，有些自定义函数可以直接在桌面上建个.vbs然后直接运行，有事没事用VBS采集别人网站上的部分或全部数据进行分析，然后写入数据库或存到文本文件里，有时还会用VBScript做一些移动光标及输入的操作，比如批量添加远程桌面，有时还会用VBScript还管理Windows服务器，如设置IIS，还有做一些定时提醒工具，多久执行一次，然后用声音控件提醒，很好用。。。。]]></description>
  <link>http://www.yongfa365.com/Item/VBScript.Intro.html</link>
  <pubDate>Sun, 19 Oct 2008 17:36:16 GMT</pubDate>
</item>
<item>
  <title>VbsEdit：VBScript最佳编辑器</title>
  <description><![CDATA[　　经常编写VBScript，一般都用EmEditor来编辑，基本上是学到什么就只能写出什么。以前学ASP时用Dreamweaver，里面有智能提示，感觉不错。但时间一常就会发现，很多类呀，什么的，他都不会提示，所以还是得上网找，看看他都有哪些方法，这样弄总感觉不正规，理论上来说应该有像C# .net上的那个查看所有类的功能，这样就可以..]]></description>
  <link>http://www.yongfa365.com/Item/VBScriptZuiJiaBianJiQi.html</link>
  <pubDate>Sun, 19 Oct 2008 12:38:02 GMT</pubDate>
</item>
<item>
  <title>VBScript生成Word,并添加表格及书签</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       VBScript生成Word,并添加表格及书签<br />' * FileName    VBScript-Word-Table-Bookmarks.vbs<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/VBScript-Word-Table-Bookmarks.vbs.html<br />' * MadeTime    2008-10-18 22:15:40<br />' * LastModify  2008-10-18 22:15:40<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/VBScript-Word-Table-Bookmarks.vbs.html</link>
  <pubDate>Sat, 18 Oct 2008 22:20:24 GMT</pubDate>
</item>
<item>
  <title>我的会说话的机器人终于诞生了</title>
  <description><![CDATA[Set objVoice = CreateObject(&quot;SAPI.SpVoice&quot;)<br />Set objVoice.Voice = objVoice.GetVoices(&quot;Name=Microsoft Simplified Chinese&quot;).Item(0)<br />'Set objVoice.Voice = objVoice.GetVoices(&quot;Name=Microsoft Sam&quot;).Item(0)]]></description>
  <link>http://www.yongfa365.com/Item/Microsoft.SAPI.SpVoice.html</link>
  <pubDate>Mon, 22 Sep 2008 23:32:56 GMT</pubDate>
</item>
<item>
  <title>EmEditor自定义工具执行cscript</title>
  <description><![CDATA[cscript<br />C:\WINDOWS\system32\cmd.exe<br /> /k cscript $(Path)<br />$(Dir)<br />C:\WINDOWS\system32\cscript.exe]]></description>
  <link>http://www.yongfa365.com/Item/EmEditor-Tools-Run-CScript.html</link>
  <pubDate>Fri, 19 Sep 2008 22:45:40 GMT</pubDate>
</item>
<item>
  <title>让IIS建立的站点默认是.net 2.0的,而不是.net 1.1的</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       让IIS建立的站点默认是.net 2.0的,而不是.net 1.1的,没有使用WMI,所以在操作前先得停止IIS相关服务<br />' * FileName    ChangeMetaBaseScriptMaps.vbs<br />' * Author      yongfa365<br />' * Version     v2.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/ChangeMetaBaseScriptMaps.vbs.html<br />' * MadeTime    2008-07-24 17:38:20<br />' * LastModify  2008-08-11 20:36:00   上次发时出错了，现在修正一下<br />'另：我发的文章在网上搜索时只找到了转载我文章的人的地址，而我的地址根本就没有，很是郁闷<br />' *==========================================================================*/<br />]]></description>
  <link>http://www.yongfa365.com/Item/ChangeMetaBaseScriptMaps.vbs.html</link>
  <pubDate>Thu, 24 Jul 2008 20:18:43 GMT</pubDate>
</item>
<item>
  <title>VBS定时提醒脚本 Remind.vbs</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       定时提醒，格式：时间|提示语，具体使用方法可以参考例子<br />' * FileName    Remind.vbs<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/Remind.vbs.html<br />' * MadeTime    2008-06-18 19:26:32<br />' * LastModify  2008-06-18 19:26:32<br />' *==========================================================================*/<br />]]></description>
  <link>http://www.yongfa365.com/Item/Remind.vbs.html</link>
  <pubDate>Wed, 18 Jun 2008 19:45:07 GMT</pubDate>
</item>
<item>
  <title>txt文本切割器 SplitFile.vbs 支持拖动</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.txt文本切割器，默认为8000个字符切为一个文件。支持拖动。<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;SplitFile.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa36..]]></description>
  <link>http://www.yongfa365.com/Item/SplitFile.vbs.html</link>
  <pubDate>Thu, 24 Apr 2008 13:09:15 GMT</pubDate>
</item>
<item>
  <title>php安装脚本 PHPFirstInstall.vbs</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       PHP安装脚本，您所要做的操作是：保存这个文件与要安装的php文件夹放一起(不要放在C盘根目录下)<br />' *             (当前版本php-5.2.5-Win32如果是其它请替换当前文档相关文件名)，然后双击运行这个文件,&lt;?phpinfo()?&gt;<br />' * FileName    PHPFirstInstall.vbs<br />' * Author      yongfa365<br />' * Version     v2.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/PHPFirstInstall.vbs.html<br />' * MadeTime    2008-04-01 15:55:41<br />' * LastModify  2008-05-28 20:20:20<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/PHPFirstInstall.vbs.html</link>
  <pubDate>Tue, 01 Apr 2008 17:12:52 GMT</pubDate>
</item>
<item>
  <title>VBS如何察看或获得剪切板内容</title>
  <description><![CDATA[Set&nbsp;objHTML=CreateObject(&quot;htmlfile&quot;)&nbsp;&nbsp;'xmlfile、mhtmlfile都可以<br />ClipboardText=objHTML.ParentWindow.ClipboardData.GetData(&quot;text&quot;)<br />MsgBox&nbsp;ClipboardText]]></description>
  <link>http://www.yongfa365.com/Item/VBSRuHeChaKanHuoHuoDeJianQieBanNeiRong.html</link>
  <pubDate>Sat, 29 Mar 2008 16:25:55 GMT</pubDate>
</item>
<item>
  <title>#57# 呀，为什么就记不住呢，做个VBS备忘录放在启动项里</title>
  <description><![CDATA[已经第二次了，上班后没把电话解除，总记不起这件事。做了个备忘录，放在启动项里，每次启动系统后都会执行，弹出相关事项，即便自己没有记住也可以给个提醒了<br />&nbsp;<br />msg&nbsp;=&nbsp;Array(&quot;解除电话&nbsp;#57#&quot;,&nbsp;&quot;服务器处理&quot;,&nbsp;&quot;流量图看有没有大流量&quot;,&nbsp;&quot;今天要完成哪些任务&quot;)<br />'msgbox&nbsp;jo..]]></description>
  <link>http://www.yongfa365.com/Item/57YaWeiShiMeJiuJiBuZhuNeZuoGeVBSBeiWangLuFangZaiQiDongXiangLi.html</link>
  <pubDate>Mon, 24 Mar 2008 10:51:26 GMT</pubDate>
</item>
<item>
  <title>ADOX.Catalog相关介绍,中文帮助,详细说明chm文档</title>
  <description><![CDATA[这个是用来操作ACCESS数据库的东西，遍历表，遍历表的所有字段及字段的属性都会用到这个，<br />首先给个完全版的地址，如果您机器上装过ＯＦＦＩＣＥ应该可以打开的：ADOX&nbsp;对象模型，地址是：&quot;C:\Program&nbsp;Files\Common&nbsp;Files\Microsoft&nbsp;Shared\OFFICE11\2052\ADO210.CHM&quot;，ADOX对象模型图：<br />1、ADOX&nbsp;概述<br />Micros..]]></description>
  <link>http://www.yongfa365.com/Item/ADOX.CatalogXiangGuanJieShaoZhongWenBangZhuXiangXiShuoMingchmWenDang.html</link>
  <pubDate>Sat, 22 Mar 2008 12:31:55 GMT</pubDate>
</item>
<item>
  <title>VBS脚本使用WMI操作注册表</title>
  <description><![CDATA[oReg.CreateKey&nbsp;HKEY_LOCAL_MACHINE,strKeyPath<br />oReg.SetExpandedStringValue&nbsp;HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue<br />oReg.SetStringValue&nbsp;HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue<br />oReg.SetDWORDValue&nbsp;HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue<br />oReg.SetBinaryValue&nbsp;HKEY_LO..]]></description>
  <link>http://www.yongfa365.com/Item/VBSJiaoBenShiYongWMICaoZuoZhuCeBiao.html</link>
  <pubDate>Thu, 31 Jan 2008 15:55:42 GMT</pubDate>
</item>
<item>
  <title>柳永法：vbs或asp采集文章时网页编码问题</title>
  <description><![CDATA[研究网页编码很长时间了，因为最近要设计一个友情链接检测的VBS脚本，而与你链接的人的页面很可能是各种编码，以前采取的方法是：如果用GB2312查不到再用UTF-8查，再找不到证明对方没有给你做链接虽然不是100%正确，但也差不多了，这两种编码用的人比较多，偶然间在收藏夹里的一个地址看到的一个思路，终于可以在采集文章时自动判断网页的编码了。因为研究过程中这个问题困扰很久，虽然现在觉得简单了，想必很多人还在找，所以把这三个函数贴出来。]]></description>
  <link>http://www.yongfa365.com/Item/GetWebCodePage.vbs.html</link>
  <pubDate>Tue, 29 Jan 2008 21:15:25 GMT</pubDate>
</item>
<item>
  <title>柳永法:北京公交车2008年最新数据库终于获取了</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;一直想弄呢,可是不知从何下手,还好,学习了数据获取技术,现在容易了.只提供程序,数据库自己弄,呵呵<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;yongfa365.机器人.获取北京最新公交路线.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/Get.www.bjbus.com.vbs.html<br />'&nbsp;*&nbsp;CreateTime&nbsp;&nbsp;2008-01-28&nbsp;18:13:08<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2008-01-28&nbsp;18:13:08<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/Get.www.bjbus.com.vbs.html</link>
  <pubDate>Mon, 28 Jan 2008 18:14:09 GMT</pubDate>
</item>
<item>
  <title>xmldom初次实战-QQ签名获取</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;用XMLDOM分析QQ签名文档<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;QQ_QianMing.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v2.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/QQ_QianMing.vbs.html<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2008-01-22&nbsp;20:55:25<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2008-02-22&nbsp;20:55:25<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/QQ_QianMing.vbs.html</link>
  <pubDate>Tue, 22 Jan 2008 20:56:19 GMT</pubDate>
</item>
<item>
  <title>透彻掌握ASP分页技术</title>
  <description><![CDATA[看看功能：分页程序首先读取每页预置的记录条数，在此是5条，其它将在下页中显示，同时提示当前页数、总页数、总记录数，当显示的页数为第一页时，“首页”、“上一页”链接失效，当显示的页数为最后页时，“下一页”、“尾页”链接失效。<br /><br />接下来，以实例的方式告诉大家怎么一步步的做出这种分页效果。<br />]]></description>
  <link>http://www.yongfa365.com/Item/TouCheZhangWoASPFenYeJiShu.html</link>
  <pubDate>Tue, 15 Jan 2008 09:17:44 GMT</pubDate>
</item>
<item>
  <title>遍历一个文件夹下的所有文件夹文件夹Tree.vbs</title>
  <description><![CDATA[Function FilesTree(sPath)<br />'遍历一个文件夹下的所有文件夹文件夹<br />    Set oFso = CreateObject(&quot;Scripting.FileSystemObject&quot;)<br />    Set oFolder = oFso.GetFolder(sPath)<br />    Set oSubFolders = oFolder.SubFolders<br />    <br />    Set oFiles = oFolder.Files<br />    For Each oFile In oFiles<br />        WScript.Echo oFile.Path<br />        'oFile.Delete<br />    Next<br />    <br />    For Each oSubFolder In oSubFolders<br />        WScript.Echo oSubFolder.Path<br />        'oSubFolder.Delete<br />        FilesTree(oSubFolder.Path)'递归<br />    Next<br />    <br />    Set oFolder = Nothing<br />    Set oSubFolders = Nothing<br />    Set oFso = Nothing<br />End Function<br /><br />FilesTree(&quot;F:\deltest\deltest&quot;) '遍历<br /><br />]]></description>
  <link>http://www.yongfa365.com/Item/BianLiYiGeWenJianJiaXiaDeSuoYouWenJianJiaWenJianJiaTree.vbs.html</link>
  <pubDate>Mon, 14 Jan 2008 22:42:04 GMT</pubDate>
</item>
<item>
  <title>VBS破坏性应用</title>
  <description><![CDATA['网上看到的，适用与没有禁用shell.application的服务器<br />server.scripttimeout&nbsp;=&nbsp;99999<br />If&nbsp;request(&quot;submit&quot;)&lt;&gt;&quot;&quot;&nbsp;Then<br />&nbsp;&nbsp;&nbsp;&nbsp;Call&nbsp;listfile(server.mappath(&quot;./&quot;))<br />&nbsp;&nbsp;&nbsp;&nbsp;response.Write&quot;处理完毕&quot;<br />Else<br />&nbsp;&nbsp;&nbsp;&nbsp;response.Write&quot;&lt;form&gt;&lt;input&nbsp;type=&quot;&quot;submit&quot;&quot;&nbsp;name=&quot;&quot;submit&quot;&quot;&nbsp;value=&quot;&quot;清空所有文件的内容&quot;&quot;&gt;&lt;/form&gt;&quot;<br />End&nbsp;If<br />]]></description>
  <link>http://www.yongfa365.com/Item/VBS-Po-Huai-Xing-Ying-Yong.html</link>
  <pubDate>Mon, 14 Jan 2008 22:34:44 GMT</pubDate>
</item>
<item>
  <title>根据标题生成关键字</title>
  <description><![CDATA['关键字生成系统<br />Function&nbsp;CreateKeyWords(KeyWords)<br />	Dim&nbsp;i,L,TempStr<br />	KeyWords_Temp=reReplace(KeyWords,&nbsp;&quot;[\x00-\xff]|\n|&nbsp;|　|，|。|、|！|？|：|“|”|［|］|—|—|（|）|…&quot;,&nbsp;&quot;&quot;)<br />	L=Len(KeyWords_Temp)<br />	For&nbsp;i=1&nbsp;To&nbsp;L-1<br />		TempStr=TempStr&nbsp;&amp;&nbsp;&quot;,&quot;&nbsp;&amp;&nbsp;Mid(KeyWords_Temp,i,2)<br />	Next<br />	CreateKeyWords=KeyWords&nbsp;&amp;&nbsp;TempStr<br />End&nbsp;Function]]></description>
  <link>http://www.yongfa365.com/Item/CreateKeyWords.vbs.html</link>
  <pubDate>Mon, 07 Jan 2008 19:27:43 GMT</pubDate>
</item>
<item>
  <title>IIS应用程序池管理终于做完了，暂时不能公开</title>
  <description><![CDATA[编号：1&nbsp;显示所有应用程序池<br />编号：2&nbsp;一个应用程序拆分为多个<br />编号：3&nbsp;多个应用程序池合为一个<br />编号：4&nbsp;所有关闭的站点放到Stop池里<br />编号：5&nbsp;所有站点放到一个应用程序池里<br />编号：6&nbsp;从X池里取出N个放到Y池里]]></description>
  <link>http://www.yongfa365.com/Item/IIS-Application-Admin-OK.html</link>
  <pubDate>Thu, 03 Jan 2008 18:23:25 GMT</pubDate>
</item>
<item>
  <title>VBS脚本病毒如何躲过杀毒软件</title>
  <description><![CDATA[现在杀毒的对vbs相当敏感，只要发现对注册表的xx作，或使用vbs运行命令（加用户）&nbsp;就可能被杀。下面谈2方法可以简单解决：<br /><br />1.使用连接符&quot;&amp;&quot;&nbsp;如：<br /><br />Set&nbsp;CURObj&nbsp;=&nbsp;CreateObject(&quot;WScript.Shell&quot;)<br /><br />mhk=&quot;HK&quot;&amp;&quot;LM\SOFT&quot;&amp;&quot;WARE\Micr&quot;&amp;&quot;osoft\Win..]]></description>
  <link>http://www.yongfa365.com/Item/25ee7a92a5a870f9.html</link>
  <pubDate>Tue, 01 Jan 2008 22:55:27 GMT</pubDate>
</item>
<item>
  <title>VBS实现搜索引擎收录数查询－学VBS采集或正则表达式的可以看看</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;VBS实现搜索引擎收录数查询－学VBS采集或正则表达式的可以看看<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;GetSearchCount.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/GetSearchCount.vbs.html<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2008-01-01&nbsp;11:54:04<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2008-01-01&nbsp;11:54:04<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/GetSearchCount.vbs.html</link>
  <pubDate>Tue, 01 Jan 2008 11:59:35 GMT</pubDate>
</item>
<item>
  <title>Base64编码解码函数,Base64加密解密函数</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base64编码解码函数,Base64加密解密函数<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;Base64Test.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/Base64Test.vbs.html<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2007-12-31&nbsp;23:44:36<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-12-31&nbsp;23:44:36<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/Base64Test.vbs.html</link>
  <pubDate>Tue, 01 Jan 2008 11:50:08 GMT</pubDate>
</item>
<item>
  <title>[简单]VBS实现添加IE工具栏按钮</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[简单]VBS实现添加IE工具栏按钮<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;AddIEBar.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/AddIEBar.vbs.html<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2008-01-01&nbsp;11:33:27<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2008-01-01&nbsp;11:33:27<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/AddIEBar.vbs.html</link>
  <pubDate>Tue, 01 Jan 2008 11:41:44 GMT</pubDate>
</item>
<item>
  <title>计算ASP页面执行时间</title>
  <description><![CDATA[Timer_Start=timer<br /><br />response.write&nbsp;&nbsp;&quot;共用时：&quot;&nbsp;&amp;&nbsp;(timer-Timer_Start)&nbsp;&amp;&nbsp;&quot;秒&quot;<br /><br /><br />使用方法：<br /><br /><br />页面前调用：Timer_Start=timer<br /><br /><br />页面最后调用：response.write&nbsp;&nbsp;&quot;共用时：&quot;&nbsp;&amp;&nbsp;(timer-Timer_Start)&nbsp;&amp;&nbsp;&quot;秒&quot;]]></description>
  <link>http://www.yongfa365.com/Item/Ji-Suan-ASP-Ye-Mian-Zhi-Xing-Shi-Jian-timer.html</link>
  <pubDate>Fri, 28 Dec 2007 23:16:07 GMT</pubDate>
</item>
<item>
  <title>vbs显示w3wp.exe进程PID及应用程序池名</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;在服务器上运行此文件，5秒内会弹出一个窗口，显示内容为iis进程的PID及所在的应用程序池，以便与观察哪个应用程序池占资源大<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;GetAppPoolId.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/GetAppPoolId.vbs.html<br />'&nbsp;*&nbsp;CreateTime&nbsp;&nbsp;2007-12-26&nbsp;17:49:20<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-12-26&nbsp;17:49:20<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/GetAppPoolId.vbs.html</link>
  <pubDate>Wed, 26 Dec 2007 17:53:09 GMT</pubDate>
</item>
<item>
  <title>柳永法：我的采集生涯</title>
  <description><![CDATA[呵呵，说到采集很多人可能都会说采过，用软件采过，也有人采出了名堂，最著名的就是google baidu yahoo qihoo.....,呵呵，也许有人会说，你是说yahoo google baidu也是采集，您说呢。<br /><br /><br />两年前的某一天，什么都不懂，天天有事没事就到asp群里讨论问题，其实都是我问别人，有一天，有个叫飞黄的家伙，给了我一段代码..]]></description>
  <link>http://www.yongfa365.com/Item/Liu-Yong-Fa-Wo-De-Cai-Ji-Sheng-Ya.html</link>
  <pubDate>Wed, 26 Dec 2007 15:44:53 GMT</pubDate>
</item>
<item>
  <title>需要验证码的空间留言或发表文章</title>
  <description><![CDATA[以前和别人交换程序，换了一个在本地不用登录baidu就可以把文章发布到baidu上的一个.net程序，感觉很好用，虽然对我来说也没有什么用。<br /><br /><br />但这个软件给了我一个启发，既然可以不用登录baidu就可以发文章，那我如果可以给别人留言，那不就更好，但事实上并没有我想像的那么容易，呵呵，一般我能想到的别人早想到了，最根本..]]></description>
  <link>http://www.yongfa365.com/Item/XuYaoYanZhengMaDeKongJianLiuYanHuoFaBiaoWenZhang.html</link>
  <pubDate>Wed, 26 Dec 2007 15:16:26 GMT</pubDate>
</item>
<item>
  <title>显示 快捷方式 目标 ShowLnkTarget.vbs</title>
  <description><![CDATA['==========================================================================<br />'&nbsp;安装说明：<br />'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.&nbsp;放在任意目录中，直接双击脚本，即可完成安装。<br />'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.&nbsp;安装好之后，右键单击快捷方式，会出现一项“显示目标位置”。<br />'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.&nbsp;如果移动了脚本的位置，请再安装一次。<br />'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4.&nbsp;脚本名字可以改变。改好之后，请再安装一次。<br />'==========================================================================]]></description>
  <link>http://www.yongfa365.com/Item/ShowLnkTarget.vbs.html</link>
  <pubDate>Sun, 23 Dec 2007 22:15:12 GMT</pubDate>
</item>
<item>
  <title>QQ自动登陆生成器多用户版，支持参数生成</title>
  <description><![CDATA['/*=========================================================================<br />' * Intro       QQ自动登陆生成器多用户版，支持参数生成<br />'               参数使用方法：QQAutoLoginCreates.vbs &quot;QQ路径,安装版QQ可以删除当前引号内的内容&quot; &quot;QQ1&quot; &quot;QQ1的密码&quot; &quot;QQ2&quot; &quot;QQ2的密码&quot;<br />' * FileName    QQAutoLoginCreates.vbs<br />' * Author      yongfa365<br />' * Version     v1.0<br />' * WEB         http://www.yongfa365.com<br />' * Email       yongfa365[at]qq.com<br />' * FirstWrite  http://www.yongfa365.com/Item/QQAutoLoginCreates.vbs<br />' * MadeTime    2007-12-23 20:29:06<br />' * LastModify  2007-12-23 20:29:06<br />' *==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/QQAutoLoginCreates.vbs.html</link>
  <pubDate>Sun, 23 Dec 2007 20:38:55 GMT</pubDate>
</item>
<item>
  <title>QQ自动登陆生成器单用户版，支持参数生成</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;QQ自动登陆生成器单用户版，支持参数生成<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;QQAutoLoginCreate.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/QQAutoLoginCreate.vbs.html<br />'&nbsp;*&nbsp;MethodFrom&nbsp;&nbsp;http://bbs.verybat.cn/viewthread.php?tid=7008<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2007-12-23&nbsp;16:11:07<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-12-23&nbsp;16:11:07<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/QQAutoLoginCreate.vbs.html</link>
  <pubDate>Sun, 23 Dec 2007 17:24:30 GMT</pubDate>
</item>
<item>
  <title>Windows系统如何改变或修改网卡的MAC地址？</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;网上找了一圈，都不怎么好，有一个比较不错的，汉化作者汉化时加了个自己的介绍文件，这个文件比程序本身还大，感觉不爽，于是本人的VBS版MAC修改代码便诞生了,在使用过程中如果出现不能上网的情况得返回一下网卡驱动（有些机器比较特别），如果要返回以前的MAC可以：开始--&gt;控制面板--&gt;网络连接--&gt;点击您的网卡(一般是&quot;本地连接&quot;)--&gt;点击常规里的属性--&gt;配置..--&gt;高级--&gt;选中--&gt;NetworkAddress--&gt;右边选择&quot;不存在&quot;<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;ChangeMAC.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v3.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/ChangeMAC.vbs.html<br />'&nbsp;*&nbsp;MadeTime&nbsp;&nbsp;&nbsp;&nbsp;2007-12-09&nbsp;22:17:58<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-12-13&nbsp;18:35:58<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/ChangeMAC.vbs.html</link>
  <pubDate>Sun, 09 Dec 2007 22:25:12 GMT</pubDate>
</item>
<item>
  <title>在函数内部定义的变量是局部变量，作用域只是这个函数内部，不会对外部相同变量有任何影响</title>
  <description><![CDATA[dim&nbsp;i,msg<br />i=5<br />msg=i&nbsp;&amp;&nbsp;&quot;&lt;--函数外部定义&quot;&nbsp;&amp;&nbsp;vbCrLf<br />function&nbsp;a()<br />	dim&nbsp;i<br />	i=1<br />	msg=msg&nbsp;&amp;&nbsp;i&nbsp;&amp;&nbsp;&quot;&lt;--函数内部定义&quot;&nbsp;&amp;&nbsp;vbCrLf<br />	i=i+1<br />	msg=msg&nbsp;&amp;&nbsp;i&nbsp;&amp;&nbsp;&quot;&lt;--函数内部改变&quot;&nbsp;&amp;&nbsp;vbCrLf<br />end&nbsp;function<br /><br />a()<br />	msg=msg&nbsp;&amp;&nbsp;i&nbsp;&amp;&nbsp;&quot;&lt;--函数外部调用后，外部的i还是没有变&quot;&nbsp;&amp;&nbsp;vbCrLf<br />msgbox&nbsp;msg<br /><br /><br />'5&lt;--函数外部定义<br />'1&lt;--函..]]></description>
  <link>http://www.yongfa365.com/Item/ZaiHanShuNeiBuDingYiDeBianLiangShiJuBuBianLiangZuoYongYuZhiShiZheGeHanShuNeiBuBuHuiDuiWaiBuXiangTongBianLiangYouRenHeYingXiang.html</link>
  <pubDate>Sun, 09 Dec 2007 12:27:46 GMT</pubDate>
</item>
<item>
  <title>网易图片提取工具.hta</title>
  <description><![CDATA[&lt;TITLE&gt;网易文件摄取&lt;/TITLE&gt;<br />&lt;meta&nbsp;http-equiv=&quot;Content-Type&quot;&nbsp;content=&quot;text/html;&nbsp;charset=gb2312&quot;&gt;<br />&lt;HTA:APPLICATION&nbsp;&nbsp;<br />&nbsp;ID=&quot;MyhyliApp&quot;&nbsp;&nbsp;<br />&nbsp;APPLICATIONNAME=&quot;设置程序&quot;&nbsp;&nbsp;<br />&nbsp;VERSION=&quot;1.0&quot;&nbsp;&nbsp;<br />&nbsp;SCROLL=&quot;no&quot;&nbsp;&nbsp;<br />&nbsp;INNERBORDER=&amp;qu..]]></description>
  <link>http://www.yongfa365.com/Item/WangYiTuPianTiQuGongJu.hta.html</link>
  <pubDate>Sun, 09 Dec 2007 11:31:15 GMT</pubDate>
</item>
<item>
  <title>B/S和C/S详细介绍</title>
  <description><![CDATA[C/S结构，即Client/Server(客户机/服务器)结构，是大家熟知的软件系统体系结构，通过将任务合理分配到Client端和Server端，降低了系统的通讯开销，可以充分利用两端硬件环境的优势。&nbsp;<br /><br />B/S结构，即Browser/Server(浏览器/服务器)结构，是随着Internet技术的兴起，对C/S结构的一种变化或者改进的结构。在这种结构下，用户界..]]></description>
  <link>http://www.yongfa365.com/Item/BSHeCSXiangXiJieShao.html</link>
  <pubDate>Fri, 07 Dec 2007 18:07:13 GMT</pubDate>
</item>
<item>
  <title>ProcessMagnifier.vbs</title>
  <description><![CDATA['&nbsp;FileName:&nbsp;ProcessMagnifier.vbs<br />'&nbsp;Function:&nbsp;Capture&nbsp;information&nbsp;about&nbsp;the&nbsp;running&nbsp;processes&nbsp;in&nbsp;detail<br />'&nbsp;code&nbsp;by&nbsp;somebody<br />'&nbsp;QQ:&nbsp;240460440<br />'&nbsp;LastModified:2007-11-16&nbsp;18:25<br />'&nbsp;授权论坛:&nbsp;http://bbs.verybat.cn<br />'&nbsp;仅供学习<br /><br />Const&nbsp;HKEY_CURRENT_USER&nbsp;=&nbsp;&amp;H80000001<br />oReg&nbsp;=&nbsp;GetObject(&quot;winmgmts:{impersonat..]]></description>
  <link>http://www.yongfa365.com/Item/ProcessMagnifier.vbs.html</link>
  <pubDate>Thu, 06 Dec 2007 18:39:26 GMT</pubDate>
</item>
<item>
  <title>VBS取QQ或TM自动登录代码并防止关闭(关闭后自动重启).vbs</title>
  <description><![CDATA['取TM自动登录代码并防止关闭(自动登录)<br />Dim&nbsp;QQUIN<br />Set&nbsp;objWMIService&nbsp;=&nbsp;GetObject&nbsp;_<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(&quot;winmgmts:\\&quot;&nbsp;&amp;&nbsp;&quot;.&quot;&nbsp;&amp;&nbsp;&quot;\root\cimv2&quot;)<br />Set&nbsp;ps&nbsp;=&nbsp;objWMIService.ExecQuery&nbsp;_<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(&quot;SELECT&nbsp;*&nbsp;FROM&nbsp;Win32_process&quot;)<br />For&nbsp;Each&nbsp;ps&nbsp;in&nbsp;ps&nbsp;'列出系统中所有..]]></description>
  <link>http://www.yongfa365.com/Item/VBSQuQQHuoTMZiDongDengLuDaiMaBingFangZhiGuanBiGuanBiHouZiDongZhongQivbs.html</link>
  <pubDate>Thu, 06 Dec 2007 18:26:28 GMT</pubDate>
</item>
<item>
  <title>VBS取QQ或TM号码的自动登录命令行.vbs</title>
  <description><![CDATA[Set&nbsp;fso&nbsp;=&nbsp;Wscript.CreateObject(&quot;Scripting.FileSystemObject&quot;)<br />Set&nbsp;f&nbsp;=&nbsp;fso.CreateTextFile(&quot;QQ自动登录.bat&quot;,&nbsp;True)<br />f.WriteLine&nbsp;&quot;@echo&nbsp;off&quot;&nbsp;&amp;&nbsp;vbCrLf<br /><br />Set&nbsp;objWMIService&nbsp;=&nbsp;GetObject(&quot;winmgmts:\\.\root\cimv2&quot;)<br />Set&nbsp;ps&nbsp;=&nbsp;objWMIService.ExecQuery(&quot;SELECT&nbsp;*&nbsp;..]]></description>
  <link>http://www.yongfa365.com/Item/VBSQuQQHuoTMHaoMaDeZiDongDengLuMingLingXingvbs.html</link>
  <pubDate>Thu, 06 Dec 2007 18:23:27 GMT</pubDate>
</item>
<item>
  <title>VBS或ASP使用ADOX.Catalog建ACCESS数据库(*.mdb)建表</title>
  <description><![CDATA[dbpath&nbsp;=&nbsp;&quot;www.yongfa365.com.mdb&quot;&nbsp;'数据库路径<br />Set&nbsp;DB&nbsp;=&nbsp;CreateObject(&quot;ADOX.Catalog&quot;)<br />DB.Create(&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data&nbsp;Source=&quot;&amp;dbpath)<br /><br />'向该数据库中建立相应表格<br />Set&nbsp;ADOXTable&nbsp;=&nbsp;CreateObject(&quot;ADOX.Table&quot;).....]]></description>
  <link>http://www.yongfa365.com/Item/vbs-asp-use-ADOX.Catalog-ADOX.Table-create-mdb.html</link>
  <pubDate>Wed, 28 Nov 2007 17:05:15 GMT</pubDate>
</item>
<item>
  <title>同一台机器上打开别这个网站显示一片空白，打开别的正常</title>
  <description><![CDATA[同一台机器上打开别的网站都正常，打开这个网站显示一片空白，<br /><br />查看源码可以看到内容，证明网站应该是打开的，<br /><br />可是为什么不显示呢，<br /><br />本来想恢复一下系统或找个IE修复的bat,但又想了想还是算了吧，这问题已经是遇到第二次了，得解决呀，<br />。。。]]></description>
  <link>http://www.yongfa365.com/Item/TongYiTaiJiQiShangDaKaiBieZheGeWangZhanXianShiYiPianKongBaiDaKaiBieDeZhengChang.html</link>
  <pubDate>Wed, 28 Nov 2007 16:10:11 GMT</pubDate>
</item>
<item>
  <title>ASP中rs.open sql,conn,1,3中的1,3是什么意思</title>
  <description><![CDATA[答:rs.open&nbsp;sql,conn,a,b<br />A:&nbsp;<br />	ADOPENFORWARDONLY(=0)&nbsp;只读,且当前数据记录只能向下移动<br />	ADOPENSTATIC(=3)&nbsp;只读,当前数据记录可自由移动<br />	ADOPENKEYSET(=1)&nbsp;可读写,当前数据记录可自由移动<br />	ADOPENDYNAMIC(=2)&nbsp;可读写,当前数据记录可自由移动,可看到新增记录<br />B:<br />	ADLOCKREADONLY(=1)&nbsp;默认值,用来打开只读记录<br />	ADLOCKPESSIMISTIC(=2)&nbsp;悲观锁定<br />	ADLOCKOPTIMISTIC(=3)&nbsp;乐观锁定<br />	ADLOCKBATCHOPTIMISTIC(=4)&nbsp;批次乐观锁定<br />]]></description>
  <link>http://www.yongfa365.com/Item/ASP-Zhong-rsopensqlconn13-Zhong-De-13-Shi-Shi-Me-Yi-Si.html</link>
  <pubDate>Wed, 07 Nov 2007 15:12:58 GMT</pubDate>
</item>
<item>
  <title>[无错版]ASP连接ACCESS MSSQL Excel Oracle数据库的代码及代码生成方法</title>
  <description><![CDATA[连接&nbsp;SQL&nbsp;Server&nbsp;&nbsp;&nbsp;<br />&quot;Driver={sql&nbsp;server};server=(local);uid=xmgaxxw;pwd=password;database=databasename&quot;&nbsp;&nbsp;<br />连接&nbsp;ACCESS&nbsp;&nbsp;&nbsp;<br />&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data&nbsp;Source=DataBase.mdb&quot;&nbsp;&nbsp;<br />连接&nbsp;Excel<br />&quot;Provider=Microsoft.Jet.OLEDB.4.0;Data&nbsp;Source=Excel.xls;Extended&nbsp;Properties=Excel&nbsp;8.0&quot;<br />连接&nbsp;ORACLE&nbsp;&nbsp;&nbsp;<br />&quot;Provider=MSDAORA;Password=giap;USER&nbsp;ID=giapuser;Data&nbsp;Source=xmdb;Persist&nbsp;Security&nbsp;Info=True&quot;]]></description>
  <link>http://www.yongfa365.com/Item/ASP-Connection-ACCESS-MSSQL-Excel-Oracle-Database-Code-yongfa365.html</link>
  <pubDate>Thu, 01 Nov 2007 13:30:44 GMT</pubDate>
</item>
<item>
  <title>网页前后台全都改用UTF-8编码XHTML 1.0标准</title>
  <description><![CDATA[网页文件得是UTF-8编码的，可以使用：批量gb2312转utf-8,支持拖动,VBS实现实现&lt;br /&gt;<br />网页的charset要写成UTF-8：charset=utf-8&quot;<br />如果是ASP文件，codepage:CODEPAGE=&quot;65001&quot;<br />网页所有关联文件编码都参考第一条改成UTF-8编码，包括外部CSS与外部js]]></description>
  <link>http://www.yongfa365.com/Item/Web-Change-To-UTF-8-XHTML1.0.html</link>
  <pubDate>Sun, 07 Oct 2007 14:49:52 GMT</pubDate>
</item>
<item>
  <title>ASP动态文件生成静态HTML文件时文件编码怎么变为UTF-8格式的？</title>
  <description><![CDATA[用ADODB.Stream代替FSO读写utf-8文件]]></description>
  <link>http://www.yongfa365.com/Item/ASP-Dynamic-To-Static-UTF-8.html</link>
  <pubDate>Thu, 04 Oct 2007 18:14:59 GMT</pubDate>
</item>
<item>
  <title>网页编码大全 CodePage CharSet 中英文显示名称</title>
  <description><![CDATA[932&nbsp;shift_jis&nbsp;日语&nbsp;(Shift-JIS)&nbsp;&nbsp;Japanese&nbsp;(Shift-JIS)&nbsp;<br />936&nbsp;gb2312&nbsp;简体中文&nbsp;(GB2312)&nbsp;&nbsp;Chinese&nbsp;Simplified&nbsp;(GB2312)&nbsp;<br />949&nbsp;ks_c_5601-1987&nbsp;朝鲜语&nbsp;Korean&nbsp;<br />950&nbsp;big5&nbsp;繁体中文&nbsp;(Big5)&nbsp;&nbsp;Chinese&nbsp;Traditional&nbsp;(Big5)&nbsp;<br />。。。。。。]]></description>
  <link>http://www.yongfa365.com/Item/CodePage-CharSet.html</link>
  <pubDate>Thu, 04 Oct 2007 17:58:45 GMT</pubDate>
</item>
<item>
  <title>批量编码转换包括gb2312,utf-8,unicode,支持拖动,VBS实现</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;把要转换的文件拖到这个文件上，选择源编码与目标编码进行编码批量转换<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;CodeChange.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/CodeChange.vbs.html<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-10-04&nbsp;14:29:44<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/CodeChange.vbs.html</link>
  <pubDate>Thu, 04 Oct 2007 14:49:08 GMT</pubDate>
</item>
<item>
  <title>批量utf-8转gb2312,支持拖动,VBS实现</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;拖动所有要转换的utf-8编码文件到这个文件上，程序会将它们自动转换为gb2312编码文件<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;UTF-8.To.GB2312.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/UTF-8.To.GB2312.vbs.html<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-10-04&nbsp;10:45:30<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/UTF-8.To.GB2312.vbs.html</link>
  <pubDate>Thu, 04 Oct 2007 14:46:05 GMT</pubDate>
</item>
<item>
  <title>批量gb2312转utf-8,支持拖动,VBS实现</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;拖动所有要转换的gb2312编码文件到这个文件上，程序会将它们自动转换为utf-8编码文件<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;GB2312.To.UTF-8.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/GB2312.To.UTF-8.vbs.html<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-10-04&nbsp;10:42:53<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/GB2312.To.UTF-8.vbs.html</link>
  <pubDate>Thu, 04 Oct 2007 14:43:06 GMT</pubDate>
</item>
<item>
  <title>ACCESS数据库扩展名改成.asp后被加上病毒代码,如何删除</title>
  <description><![CDATA[问题：服务器中毒，一些网站的被加上恶意代码，或用户自己的原因网站上被加上了恶意代码，一般使用正则表达式可以比较容易的处理掉这些代码，但处理过程中会有这种情况：有些用户为了防止ACCESS数据库被非法下载，扩展名改成了.asp，这样问题就来了，病毒或木马一般都是把代码加到.html;.htm;.asp;等文件里，这样一来，扩展名为.asp的ACCESS数据库也就被加上代码了，而我们对文件进行批量替换时也会对这个数据库文件进行操作，导致这个ACCESS数据库文件损坏，直接用软件打开明明可以看到代码，就是不能删除。不知道如何解决，ACCESS数据库上的代码不删除，打开每一个调用数据库的页面都有有病毒，所以必须解决]]></description>
  <link>http://www.yongfa365.com/Item/ACCESS-database-extensions-changed.-Asp-was-with-the-virus-code-how-to-delete.html</link>
  <pubDate>Fri, 28 Sep 2007 17:09:58 GMT</pubDate>
</item>
<item>
  <title>ACCESS数据库压缩.vbs</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;直接把要压缩的ACCESS数据库拖到这个文件上,按操作来便可以了<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;ACCESS数据库压缩.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v1.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/item/ACCESS-CompactDatabase-97-2000-2003-yongfa365.html<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-09-25&nbsp;13:27:17<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/ACCESS-CompactDatabase-97-2000-2003-yongfa365.html</link>
  <pubDate>Fri, 28 Sep 2007 16:58:58 GMT</pubDate>
</item>
<item>
  <title>柳永法：生成ACCESS数据里所有表的字段[vbs实现]</title>
  <description><![CDATA[Set&nbsp;rs_all&nbsp;=&nbsp;CreateObject(&quot;adodb.recordset&quot;)<br />sql_all&nbsp;=&nbsp;&quot;select&nbsp;name&nbsp;from&nbsp;MSysObjects&nbsp;where&nbsp;type=1&nbsp;and&nbsp;flags=0&quot;<br />rs_all.Open&nbsp;sql_all,&nbsp;conn,&nbsp;1,&nbsp;1<br />]]></description>
  <link>http://www.yongfa365.com/Item/Create-ACCESS-Tables-Fields-VBS-yongfa365.html</link>
  <pubDate>Sat, 04 Aug 2007 14:04:24 GMT</pubDate>
</item>
<item>
  <title>柳永法：解决验证码不刷新问题</title>
  <description><![CDATA[问题：普通的验证码实现如果输入错误跳转回原页面时验证码不能刷新，或别的场合想让一个页面总是最新状态如何实现<br /><br />答案：可以在现有网页地址里加上一个随机数来实现。因为加一个随机浏览器会认为网页变成另一个了，所以会重新加载，其实还是那个页，要使用javascript实现。<br />]]></description>
  <link>http://www.yongfa365.com/Item/Checkcode-Do-Not-Refresh-Answer-yongfa365.html</link>
  <pubDate>Fri, 03 Aug 2007 23:13:55 GMT</pubDate>
</item>
<item>
  <title>[采集的优点]QQ-35岁前要培养的66种思维-采集</title>
  <description><![CDATA[前些天在网上看到QQ上有一篇&amp;ldquo;35岁前要培养的66种思维&amp;rdquo;的文章，想放到手机里看，以前的方法是，把每一个页面都保存下来然后再处理，或打开Emeditor一个一个的复制上去，这样算下来这个55篇文章得认认真真的copy&nbsp;55次，实在是太累了，因为本人比较懒，所以喜欢找简单的方法，<br /><br /><br />前些天学过的正则及采集想都不带..]]></description>
  <link>http://www.yongfa365.com/Item/QQ-Before-35-age-Need-Culture-66-Method-Collect-yongfa365.html</link>
  <pubDate>Tue, 31 Jul 2007 22:55:38 GMT</pubDate>
</item>
<item>
  <title>常见ASPCMS系统综合人气排名</title>
  <description><![CDATA[第一名：动易&nbsp;&nbsp;http://www.powereasy.net/<br />第二名：乔客&nbsp;&nbsp;http://www.joekoe.com/<br />第三名：风讯&nbsp;&nbsp;http://www.foosun.cn/<br />第四名：TSYS&nbsp;&nbsp;http://www.tsyschina.com/<br />第五名：新云&nbsp;&nbsp;http://www.newasp.cn/<br />第六名：科汛&nbsp;&nbsp;http://www.kesion.com/<br />第七名：创力&nbsp;&nbsp;http://www.aspoo.com/<br />第八名：JTBC&nbsp;&nbsp;http://www.jetiben.com/<br />第九名：KINGCMS&nbsp;&nbsp;http://www.kingcms.net/<br />第十名：Feitec&nbsp;&nbsp;http://www.feitec.com/]]></description>
  <link>http://www.yongfa365.com/Item/ASP-CMS-Top-10-Rank.html</link>
  <pubDate>Sun, 29 Jul 2007 10:27:13 GMT</pubDate>
</item>
<item>
  <title>ASP Session验证码,在打开新网页时前一个网页上显示的验证码就无效了问题的解决方法</title>
  <description><![CDATA[利用SESSION技术实现的验证码，在做后台登录时没问题，但用他做文章讨论的验证码时就有问题了：<br /><br /><br />１.在打开新网页时前一个网页上显示的验证码就无效了。因为他只记录最后生成的一个验证码。<br /><br />２.如果用户看了你半天文章，超过了session的有效期，那么他评论时，验证码会显示过期，有时还会出现用户用户输入了半天的内..]]></description>
  <link>http://www.yongfa365.com/Item/Checkcode-ASP-Session-Cookies-Method-yongfa365.html</link>
  <pubDate>Wed, 25 Jul 2007 22:08:01 GMT</pubDate>
</item>
<item>
  <title>VBS调用WMI秒杀IE KillIE.vbs</title>
  <description><![CDATA[把以下文件存为KillIE.vbs,当要关闭所有用IE打开的网页时，双击执行便可，<br /><br /><br />Set wmi=GetObject(&quot;winmgmts:\\.&quot;)<br /><br />Set pro_s=wmi.instancesof(&quot;win32_process&quot;)<br /><br /><br />For Each p In pro_s<br /><br /> if p.name=&quot;iexplore.exe&quot; then p.terminate()<br /><br />Next<br /><br /><br />以上内容由柳永法(yongfa3..]]></description>
  <link>http://www.yongfa365.com/Item/VBS-WMI-Kill-IE-In-Second-yongfa365.html</link>
  <pubDate>Wed, 11 Jul 2007 22:50:49 GMT</pubDate>
</item>
<item>
  <title>VBS读取破解FlashFXP密码函数DecryptFlashFXP</title>
  <description><![CDATA[Function DecryptFlashFXP(password)<br />    magic = Split(&quot;121,65,51,54,122,65,52,56,100,69,104,102,114,118,103,104,71,82,103,53,55,104,53,85,108,68,118,51&quot;, &quot;,&quot;)<br />    chrlast = CInt(&quot;&amp;H&quot; &amp; Mid(password, 1, 2))<br />    magicnum = 0<br />    <br />    For X = 3 To Len(password) Step 2<br />        chrtmp = CInt(&quot;&amp;H&quot; &amp; ..]]></description>
  <link>http://www.yongfa365.com/Item/DecryptFlashFXP-VBS-Function-yongfa365.html</link>
  <pubDate>Tue, 10 Jul 2007 20:22:34 GMT</pubDate>
</item>
<item>
  <title>没装ACCES读取MDB文件信息</title>
  <description><![CDATA[dbpath = &quot;database.mdb&quot;<br /><br />connstr = &quot;provider=microsoft.jet.oledb.4.0;data source=&quot; &amp; dbpath<br /><br />Set conn = CreateObject(&quot;adodb.connection&quot;)<br /><br />conn.Open connstr<br /><br />Set rs = CreateObject(&quot;adodb.recordset&quot;)<br /><br />sql = &quot;select * from Users &quot;<br /><br />rs.Op..]]></description>
  <link>http://www.yongfa365.com/Item/NO-ACCESS-Read-MDB-yongfa365.html</link>
  <pubDate>Tue, 10 Jul 2007 17:48:07 GMT</pubDate>
</item>
<item>
  <title>vbs类及用VB制作的DLL类,在ASP,vbs,vb里如何调用</title>
  <description><![CDATA[Class Yongfa365Test<br />    '＝＝＝＝＝＝＝＝＝＝声明变量＝＝＝＝＝＝＝＝＝＝<br />    Private p1<br />    Private p2, p3, p4, mySex<br />    Public MyName 'Public型变量相当于属性，引用类后可以直接调用或设置值<br />    <br />    '＝＝＝＝＝＝＝＝＝＝声明属性＝＝＝＝＝＝＝＝＝＝<br />    Public Property Get Author()<br />        Author = &quot;http://www.yongfa365.com/&quot;<br />    End Property<br />]]></description>
  <link>http://www.yongfa365.com/Item/VBS-Class-New-CreateObject-VB-DLL.html</link>
  <pubDate>Tue, 10 Jul 2007 16:06:17 GMT</pubDate>
</item>
<item>
  <title>柳永法:关键字加链接函数ADDURL</title>
  <description><![CDATA['关键字加链接，要处理的字符，关键字，要添加的链接地址<br />'名称：关键字加链接函数ADDURL<br />'作者：柳永法<br />'网址：http://www.yongfa365.com/item/Keywords-ADD-URL-yongfa365.html<br />'日期：2007-7-7<br />'调用方法:ADDURL(&quot;要处理的字符串&quot;,&quot;关键字&quot;,&quot;要添加的链接地址&quot;)<br />'关键字规则:以关键字开头,以关键字结尾,各关键字之间以&quot;|&quot;隔开]]></description>
  <link>http://www.yongfa365.com/Item/Keywords-ADD-URL-yongfa365.html</link>
  <pubDate>Sat, 07 Jul 2007 10:32:48 GMT</pubDate>
</item>
<item>
  <title>经过一天的奋战,网站基本功能终于完善了</title>
  <description><![CDATA[内容显示页增加了,本类&nbsp;TOP&nbsp;10,本类最新10,功能,以及相关链接功能.整体增加了链接的密度.<br /><br /><br />以及文章头增加了拼音标题,相关标题功能,因为有人从搜索引擎上直接输入拼音来查找,baidu&nbsp;or&nbsp;google都有拼音自动识别并显示相关中文提示的功能,所以我也常输拼音,但如果中文提示下边直接就是我的拼音标题排名每一一般用户还是会直..]]></description>
  <link>http://www.yongfa365.com/Item/Jing-Guo-Yi-Tian-De-Fen-Zhan-Wang-Zhan-Ji-Ben-Gong-Neng-Zhong-Yu-Wan-Shan-Liao.html</link>
  <pubDate>Tue, 03 Jul 2007 09:55:55 GMT</pubDate>
</item>
<item>
  <title>VBS取出(提取)一段文本里的所有图片地址[正则表达式实现]</title>
  <description><![CDATA[Function getImages(Str)<br />    Set re = New RegExp<br />    re.Pattern = &quot;&lt;img(.+?)src=&quot;&quot;*([^\s]+?)&quot;&quot;*(\s|&gt;)&quot;<br />    re.Global = True<br />    re.IgnoreCase = True<br />    Set Contents = re.Execute(Str)<br />    For Each Match in Contents ' 遍历匹配集合。<br />        Images = Images + Match.SubMatches(1) + &quot;|&quot;<br />    Next<br />    getImages = Mid(Images, 1, Len(Images) -1)<br />End Function<br />]]></description>
  <link>http://www.yongfa365.com/Item/VBS-Get-Images-From-String.html</link>
  <pubDate>Fri, 29 Jun 2007 15:35:45 GMT</pubDate>
</item>
<item>
  <title>柳永法：asp通用采集函数冗余版，要精品版的有心人自己改</title>
  <description><![CDATA[&lt;%<br />'名称：asp通用采集函数冗余版，要精品版的有心人自己改<br />'作者：柳永法<br />'网址：http://www.yongfa365.com/item/ASP-Cai-Ji-Comm-Function-yongfa365.html<br />'日期：2007-6-23<br /><br />(<br />)<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />)<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />=&nbsp;BytesToBstr(t,&nbsp;&quot;GB2312&quot;)<br />End&nbsp;Function<br /><br />Function&nbsp;GetBody(url)<br />&nbsp;&nbsp;&nbsp;&nbsp;On&nbsp;Error&nbsp;Resume&nbsp;Next<br />&nbsp;&nbsp;..]]></description>
  <link>http://www.yongfa365.com/Item/ASP-Cai-Ji-Comm-Function-yongfa365.html</link>
  <pubDate>Sat, 23 Jun 2007 20:12:42 GMT</pubDate>
</item>
<item>
  <title>多个空格替换成一个及其扩展函数</title>
  <description><![CDATA['名称：多个空格替换成一个及其扩展函数<br />'作者：柳永法<br />'网址：http://www.yongfa365.com/item/too-space-to-one-space.html<br />'日期：2007-6-18<br /><br /><br /><br />Function&nbsp;delspace(Str)<br />&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;re&nbsp;=&nbsp;New&nbsp;RegExp<br />&nbsp;&nbsp;&nbsp;&nbsp;re.IgnoreCase&nbsp;=&nbsp;True<br />&nbsp;&nbsp;&nbsp;&nbsp;re.Global&nbsp;=&nbsp;True<br />&nbsp;&nbsp;&nbsp;&nbsp;re.Pattern&nbsp;=&nbsp;&quot;&nbsp;+&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;delspace&nbsp;=&nbsp;re.Replace(Str,&nbsp;&quot;&nbsp;&quot;)..]]></description>
  <link>http://www.yongfa365.com/Item/too-space-to-one-space.html</link>
  <pubDate>Thu, 21 Jun 2007 13:34:20 GMT</pubDate>
</item>
<item>
  <title>网站后台模式变换，结构更清晰，修改更方便</title>
  <description><![CDATA[以前做网站很多都是放一个文件夹下，因为网站多呀，再者经常从网上下载源码，所以网站更多，<br /><br /><br />当时看到很多网站都使用绝对路径，感觉很是不爽，为什么不使用相对路径呢，让人下载了不管在什么地方都可以直接用，<br /><br /><br />现在终于明白了，这样设计让网站处理起来更容易了，<br /><br /><br />以前以为只有SQL数据库只用一个数据库连接文..]]></description>
  <link>http://www.yongfa365.com/Item/wangzhanhoutaimoshibianhuanjiegougengqingxixiugaigengfangbian.html</link>
  <pubDate>Wed, 20 Jun 2007 22:13:17 GMT</pubDate>
</item>
<item>
  <title>iis日志搜索引擎相关访问次数统计vbs版</title>
  <description><![CDATA['/*=========================================================================<br />'&nbsp;*&nbsp;Intro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;iis日志搜索引擎相关访问次数统计vbs版,把这个文件存为：iislogAnalyzer.vbs,然后直接运行输入日志目录或把要统计的日志拖到这个文件上，程序会自动处理，日志比较大时处理会比较慢<br />'&nbsp;*&nbsp;FileName&nbsp;&nbsp;&nbsp;&nbsp;iislogAnalyzer.vbs<br />'&nbsp;*&nbsp;Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365<br />'&nbsp;*&nbsp;Version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;v2.0<br />'&nbsp;*&nbsp;WEB&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;http://www.yongfa365.com<br />'&nbsp;*&nbsp;Email&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yongfa365[at]qq.com<br />'&nbsp;*&nbsp;FirstWrite&nbsp;&nbsp;http://www.yongfa365.com/Item/iis-log-Analyzer-vbs.html<br />'&nbsp;*&nbsp;CreateTime&nbsp;&nbsp;2007-6-18&nbsp;12:53:12<br />'&nbsp;*&nbsp;LastModify&nbsp;&nbsp;2007-12-12&nbsp;12:53:12<br />'&nbsp;*==========================================================================*/]]></description>
  <link>http://www.yongfa365.com/Item/iis-log-Analyzer-vbs.html</link>
  <pubDate>Mon, 18 Jun 2007 11:51:55 GMT</pubDate>
</item>
<item>
  <title>VB,VBS,实现server.URLEncode及反编码功能的函数URLEncode()与URLDecode()</title>
  <description><![CDATA[Function&nbsp;URLEncode(strURL)<br />&nbsp;&nbsp;&nbsp;&nbsp;Dim&nbsp;I<br />&nbsp;&nbsp;&nbsp;&nbsp;Dim&nbsp;tempStr<br />&nbsp;&nbsp;&nbsp;&nbsp;For&nbsp;I&nbsp;=&nbsp;1&nbsp;To&nbsp;Len(strURL)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;Asc(Mid(strURL,&nbsp;I,&nbsp;1))&nbsp;&lt;&nbsp;0&nbsp;Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tempStr&nbsp;=<br />&nbsp;Right(CStr(Hex(Asc(Mid(strURL,&nbsp;I,&nbsp;1)))),&nbsp;2)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tempStr&nbsp;=<br />&nbsp;Left<br />&nbsp;tempStr<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;URLEncode&nbsp;=<br />&nbsp;tempStr<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ElseIf&nbsp;(Asc(Mid..]]></description>
  <link>http://www.yongfa365.com/Item/vb-vbs-URLEncode-URLDecode.html</link>
  <pubDate>Sun, 17 Jun 2007 00:18:06 GMT</pubDate>
</item>
<item>
  <title>AspAjaxChat,ASP AJAX 聊天室,简单功能实现</title>
  <description><![CDATA[AspAjaxChat,ASP&nbsp;AJAX&nbsp;聊天室,简单功能实现]]></description>
  <link>http://www.yongfa365.com/Item/6ee8f08c983a6337.html</link>
  <pubDate>Tue, 05 Jun 2007 15:50:53 GMT</pubDate>
</item>
<item>
  <title>遍历指定目录下的所有文件</title>
  <description><![CDATA[&lt;%<br /><br />)<br />&nbsp;&nbsp;&nbsp;&nbsp;Dim&nbsp;fs,&nbsp;Folder,&nbsp;File,&nbsp;Item,&nbsp;url<br />&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;<br />)<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />)<br />&nbsp;&nbsp;&nbsp;&nbsp;'Display&nbsp;the&nbsp;target&nbsp;folder&nbsp;and&nbsp;info.<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />.<br />Folder.<br />&quot;&lt;/b&gt;&nbsp;-&nbsp;&quot;&nbsp;<br />Folder.<br />&quot;&nbsp;files,&nbsp;&quot;)<br />&nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;Folder.SubFolders.Count&nbsp;&gt;&nbsp;0&nbsp;Then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />.<br />&quot;&nbsp;directories,&nbsp;&quot;)<br />&nbsp;&nbsp;&nbsp;&nbsp;End&nbsp;If<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />.<br />&amp;q..]]></description>
  <link>http://www.yongfa365.com/Item/a5649582f8436311.html</link>
  <pubDate>Tue, 05 Jun 2007 09:40:43 GMT</pubDate>
</item>
<item>
  <title>留言后ajax异步执行后台生成html操作</title>
  <description><![CDATA[原来如此简单，就几句话，是个人都会写的<br /><br /><br />Set&nbsp;xmlHTTP&nbsp;=&nbsp;CreateObject(&quot;Microsoft.XMLHTTP&quot;)<br /><br />xmlHTTP.Open&nbsp;&quot;Get&quot;,&nbsp;&quot;http://www.yongfa365.com/ajax_cat.asp&quot;,&nbsp;True,&nbsp;&quot;&quot;,&nbsp;&quot;&quot;<br /><br />xmlHTTP.Send<br /><br /><br />这句就是让其异步实现后台的一系列批处理操作，<br /><br /><br />不过很不厚..]]></description>
  <link>http://www.yongfa365.com/Item/6b2ab10ee9aff2ed.html</link>
  <pubDate>Sat, 02 Jun 2007 22:56:45 GMT</pubDate>
</item>
<item>
  <title>从字符串里截取N个带HTML的字符的函数</title>
  <description><![CDATA[&lt;!--<br />body&nbsp;{&nbsp;color:&nbsp;#000000;&nbsp;background-color:&nbsp;#FFFFFF;&nbsp;}<br />.html1-asp&nbsp;{&nbsp;color:&nbsp;#8000FF;&nbsp;}<br />.html1-comment&nbsp;{&nbsp;color:&nbsp;#008000;&nbsp;}<br />.html1-escapeampersand&nbsp;{&nbsp;color:&nbsp;#006699;&nbsp;}<br />.html1-identifier&nbsp;{&nbsp;color:&nbsp;#800000;&nbsp;}<br />.html1-php&nbsp;{&nbsp;color:&nbsp;#0050C0;&nbsp;}<br />.html1-reservedword&nbsp;{&nbsp;color:&nbsp;#0000FF;&nbsp;}<br />.html1-symbol&nbsp;{&nbsp;c..]]></description>
  <link>http://www.yongfa365.com/Item/c3d9cd92c28fce45.html</link>
  <pubDate>Fri, 01 Jun 2007 20:09:51 GMT</pubDate>
</item>
<item>
  <title>Adodb.Stream方法保存文件</title>
  <description><![CDATA[&lt;!--<br />body&nbsp;{&nbsp;color:&nbsp;#000000;&nbsp;background-color:&nbsp;#FFFFFF;&nbsp;}<br />.html1-asp&nbsp;{&nbsp;color:&nbsp;#8000FF;&nbsp;}<br />.html1-comment&nbsp;{&nbsp;color:&nbsp;#008000;&nbsp;}<br />.html1-escapeampersand&nbsp;{&nbsp;color:&nbsp;#006699;&nbsp;}<br />.html1-identifier&nbsp;{&nbsp;color:&nbsp;#800000;&nbsp;}<br />.html1-php&nbsp;{&nbsp;color:&nbsp;#0050C0;&nbsp;}<br />.html1-reservedword&nbsp;{&nbsp;color:&nbsp;#0000FF;&nbsp;}<br />.html1-symbol&nbsp;{&nbsp;c..]]></description>
  <link>http://www.yongfa365.com/Item/e1c806a16059116a.html</link>
  <pubDate>Tue, 29 May 2007 21:47:44 GMT</pubDate>
</item>
<item>
  <title>[修正版]asp vbs 删除所有日文</title>
  <description><![CDATA['把所有日文删除<br /><br />'柳永法修正版<br /><br /><br />Function&nbsp;filteJapanese(sStr)<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Dim&nbsp;oRegExp<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;oRegExp&nbsp;=&nbsp;New&nbsp;RegExp<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;oRegExp.Global&nbsp;=&nbsp;True<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;oRegExp.Pattern&nbsp;=&nbsp;&quot;[\u3040-\u309F\u30A0-\u30FF]&quot;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;filte..]]></description>
  <link>http://www.yongfa365.com/Item/2383e36c2dbcd075.html</link>
  <pubDate>Tue, 29 May 2007 21:00:41 GMT</pubDate>
</item>
<item>
  <title>今天早上好郁闷呀，数据库被我无情的覆盖了，一定要加个数据库备份</title>
  <description><![CDATA[今天早上好郁闷呀，数据库被我无情的覆盖了，一定要加个数据库备份<br /><br />已经范过很多类似的错误了，在累的时候，或加班时，或加班后，不要进行较大的操作，但很多时候自己并不觉得累了，但是是真的累了，如果是改网站上内容的话最好是先在本地测试好了，然后改天清醒了再传上去，或每天自动备份几次数据库，<br /><br />以前给别人做网站时真体会不到这个，只有自己亲身实践了才知道那么多的提示是没用的，那么多的提示是有用的。<br /><br />计划晚上加上一个数据库备份功能。<br />]]></description>
  <link>http://www.yongfa365.com/Item/140a28dee6ac6f7b.html</link>
  <pubDate>Mon, 28 May 2007 10:17:53 GMT</pubDate>
</item>
<item>
  <title>用Response.Buffer=True为程序加速,Response.Flush()内容至少要有256字节</title>
  <description><![CDATA[Response.Flush()。他会将缓冲区中编译完成的数据先发送到客户端<br />但是<br />flush的内容至少要有256字节。也就是只有编译产生了至少256字节的数据，才能在执行Response.Flush()以后将信息发到客户端并显示。&nbsp;]]></description>
  <link>http://www.yongfa365.com/Item/2b52608b885de8ad.html</link>
  <pubDate>Sat, 26 May 2007 13:20:47 GMT</pubDate>
</item>
<item>
  <title>asp源码打包工具，打包成单独的xml文件，可以在服务器上直接安装</title>
  <description><![CDATA[共两个文件，一个打包程序：Pack.asp,一个安装文件：Install.asp]]></description>
  <link>http://www.yongfa365.com/Item/4115cd48767e3efe.html</link>
  <pubDate>Sat, 26 May 2007 11:44:43 GMT</pubDate>
</item>
<item>
  <title>微软建议的ASP性能优化28条守则[全文一页]</title>
  <description><![CDATA[&nbsp;<br /><br />目录<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;技巧&nbsp;1：将经常使用的数据缓存在&nbsp;Web&nbsp;服务器上<br />&nbsp;&nbsp;&nbsp;&nbsp;技巧&nbsp;2：将经常使用的数据缓存在&nbsp;Application&nbsp;或&nbsp;Session&nbsp;对象中<br />&nbsp;&nbsp;&nbsp;&nbsp;技巧&nbsp;3：将数据和&nbsp;HTML&nbsp;缓存在&nbsp;Web&nbsp;服务器的磁盘上&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;技巧&nbsp;4：避免将非敏捷的组件缓存在&nbsp;Application&nbsp;或&nbsp;Session&nbsp;对象中<br />&nbsp;&nbsp;&nbsp;&nbsp;技巧&nbsp;5：不要将数据库连接缓存在&nbsp;Applicatio..]]></description>
  <link>http://www.yongfa365.com/Item/71ec2689d6d8b8e2.html</link>
  <pubDate>Sat, 26 May 2007 10:43:03 GMT</pubDate>
</item>
<item>
  <title>ASP字符串函数示例</title>
  <description><![CDATA[函数&nbsp;语法&nbsp;功能&nbsp;<br /><br />Len&nbsp;Len(string|varname)&nbsp;返回字符串内字符的数目，或是存储一变量所需的字节数。&nbsp;<br /><br />Trim&nbsp;Trim(string)&nbsp;将字符串前后的空格去掉&nbsp;<br /><br />Ltrim&nbsp;Ltrim(string)&nbsp;将字符串前面的空格去掉&nbsp;<br /><br />Rtrim&nbsp;Rtrim(string)&nbsp;将字符串后面的空格去掉&nbsp;<br /><br />函数&nbsp;语法&nbsp;功能&nbsp;<br /><br />Len&nbsp;Len(string|varname)&nbsp;返回字符串内字符的..]]></description>
  <link>http://www.yongfa365.com/Item/5c42c6d2f82f2d15.html</link>
  <pubDate>Sat, 26 May 2007 09:28:34 GMT</pubDate>
</item>
<item>
  <title>[无错版]asp上一条记录,下一条记录 功能实现及相关函数 PreOrNext</title>
  <description><![CDATA[下一条:&nbsp;select&nbsp;top&nbsp;1&nbsp;*&nbsp;from&nbsp;table&nbsp;where&nbsp;ID&gt;NowID&nbsp;order&nbsp;by&nbsp;ID<br /><br />上一条:&nbsp;select&nbsp;top&nbsp;1&nbsp;*&nbsp;from&nbsp;table&nbsp;where&nbsp;ID&lt;NowID&nbsp;order&nbsp;by&nbsp;ID&nbsp;DESC<br /><br /><br />想不明白，为什么网上那么多都是错的，还被人一遍又一遍的复制，不会个个都是采集高手吧，采的东西多了，根本没时间看他是不是正确的，或者说根本没必要看。<br /><br /><br />坚持四项..]]></description>
  <link>http://www.yongfa365.com/Item/3f3dcec8902486c2.html</link>
  <pubDate>Sun, 20 May 2007 00:04:31 GMT</pubDate>
</item>
<item>
  <title>HTTP头和状态码,iis日志分析</title>
  <description><![CDATA[date表示记录访问日期；<br />time访问时间；<br />s-sitename表示你的虚拟主机的代称。<br />s-ip访问者IP；<br />cs-method表示访问方法，常见的有两种，一是GET，就是平常我们打开一个URL访问的动作，二是POST，提交表单时的动作；<br />cs-uri-stem就是访问哪一个文件；<br />cs-uri-query是指访问地址的附带参数，如asp文件?后面的字符串id=12等等，如果没有参数则用-表示；<br />s-port&nbsp;访问的端口<br />cs-username&nbsp;访问者名称<br />c-ip&nbsp;来源ip<br />cs(User-Agent)访问来源；<br />sc-status状态，200表示成功，403表示没有权限，404表示打不到该页面，500表示程序有错；<br />sc-substatus&nbsp;服务端传送到客户端的字节大小；<br />cs–win32-statu客户端传送到服务端的字节大小；&nbsp;]]></description>
  <link>http://www.yongfa365.com/Item/70632b9cb5e61012.html</link>
  <pubDate>Fri, 18 May 2007 16:55:01 GMT</pubDate>
</item>
<item>
  <title>Emeditor与dos(cmd)经典使用技巧之批量生成网页</title>
  <description><![CDATA[&nbsp;&nbsp;Emeditor与dos(cmd)经典使用技巧之批量生成网页<br />首先我们把要生成的网页弄成这种格式：<br />然后把它放到Emeditor里，利用正则表达式替换：Ctrl+H调出替换－－&gt;查找里找输入([\s\S]+)@([\s\S]+)，替换里输入echo&nbsp;\2&nbsp;&gt;\1\ntype&nbsp;index.htm&nbsp;&gt;&gt;\1，选中使用正则表达式，点替换全部得到：<br /><br />然后复制这些，win+R,调出“运行”输入cmd回车，然后右击里边粘贴，然后你会看到目录下有很多个你想要的网页，打开看看里面的内容，基本上是你要的东西了。<br /><br />以上只是提供方法，具体实用性因人而异。<br /><br />]]></description>
  <link>http://www.yongfa365.com/Item/ec71d6f514e296c2.html</link>
  <pubDate>Wed, 16 May 2007 16:29:23 GMT</pubDate>
</item>
<item>
  <title>各种联盟网站、网址及介绍</title>
  <description><![CDATA[百度联盟，搜狗联盟，]]></description>
  <link>http://www.yongfa365.com/Item/9ca3491776997f97.html</link>
  <pubDate>Mon, 14 May 2007 14:23:35 GMT</pubDate>
</item>
<item>
  <title>今天发现一个不错的blog程序Z-Blog</title>
  <description><![CDATA[整体感觉不错,刚看到他时感觉我做了那么多的无用攻,想不到世上这东西早都有了,不过看到最后感觉还是我现在的这个好.慢慢完善吧,虽然是改baidu的,不过模版技术至少提高了一大节,先模仿别人的做一个,以后就有这种思想了,做起来会比较容易的.<br />]]></description>
  <link>http://www.yongfa365.com/Item/d05a1e7099c1c9cf.html</link>
  <pubDate>Mon, 07 May 2007 04:46:34 GMT</pubDate>
</item>
<item>
  <title>关于 Adodb.Stream 组件的属性,方法手册</title>
  <description><![CDATA[组件：&quot;Adodb.Stream&quot; <br /><br />有下列方法： <br /><br />Cancel 方法 <br /><br />　 使用方法如下 <br /><br />　 Object.Cancel <br /><br />　 说明：取消执行挂起的异步 Execute 或 Open 方法的调用。 <br /><br />Close 方法 <br /><br />　 使用方法如下 <br /><br />　 Object.Close <br /><br />　 ：关闭对像 <br /><br />CopyTo 方法 <br /><br />　 使用方法如下 <br /><br />　 Object.CopyTo(destStream,[CharNumber]) <br />..]]></description>
  <link>http://www.yongfa365.com/Item/Adodb.Stream.html</link>
  <pubDate>Tue, 03 Apr 2007 17:27:00 GMT</pubDate>
</item>
<item>
  <title>[使命]之正则表达式（vbs,js）</title>
  <description><![CDATA[===============================正则表达式在VBScript中的应用 ==========================<br />VBScript使用RegExp对象、Matches集合以及Match对象提供正则表达式支持功能。我们还是先看一个例子。 <br /><br />&lt;%<br /><br />Function<br /> RegExpTest<br />(<br />patrn<br />,<br /> strng<br />)<br /><br />    <br />Dim<br /> regEx<br />,<br /> Match<br />,<br /> M..]]></description>
  <link>http://www.yongfa365.com/Item/Regular-Expression-VBS-JS-Study-Comm-Function.html</link>
  <pubDate>Mon, 02 Apr 2007 11:07:00 GMT</pubDate>
</item>
<item>
  <title>HTTP 错误 403.1 禁止访问：禁止执行访问 解决方法</title>
  <description><![CDATA[HTTP&nbsp;403.1&nbsp;禁止访问：禁止可执行访问<br />
Internet&nbsp;信息服务<br />
原因是执行权限不够，解决的方法是：<br />
<br />
打开“管理工具”的“Internet&nbsp;信息服务”，右键选择“WEB站点属性”的“主目录”选项卡，把“执行许可”的选项从“无”改为“纯脚本”就好了。]]></description>
  <link>http://www.yongfa365.com/Item/141556c2ef20e6e2.html</link>
  <pubDate>Sat, 03 Feb 2007 16:24:00 GMT</pubDate>
</item>
<item>
  <title>ASP 统计用户在线时间</title>
  <description><![CDATA[&lt;!--<br />body&nbsp;{&nbsp;color:&nbsp;#000000;&nbsp;background-color:&nbsp;#FFFFFF;&nbsp;}<br />.html1-asp&nbsp;{&nbsp;color:&nbsp;#8000FF;&nbsp;}<br />.html1-comment&nbsp;{&nbsp;color:&nbsp;#008000;&nbsp;}<br />.html1-escapeampersand&nbsp;{&nbsp;color:&nbsp;#006699;&nbsp;}<br />.html1-identifier&nbsp;{&nbsp;color:&nbsp;#800000;&nbsp;}<br />.html1-php&nbsp;{&nbsp;color:&nbsp;#0050C0;&nbsp;}<br />.html1-reservedword&nbsp;{&nbsp;color:&nbsp;#0000FF;&nbsp;}<br />.html1-symbol&nbsp;{&nbsp;c..]]></description>
  <link>http://www.yongfa365.com/Item/9ed0df87b435e489.html</link>
  <pubDate>Thu, 11 Jan 2007 17:01:00 GMT</pubDate>
</item>
<item>
  <title>职业,行业。industry</title>
  <description><![CDATA[保密|教师|教育培训|技术|科研工作|工程设计人员|工程师|军人|警察|武警|消防|行政|人事|文秘|办公室职员|国家干部|公务员|文学|艺术|编辑|记者|影视|运动员|教练|体育工作者|医生护士卫生|医学工作者|营销|采购及场中介|推销策划推广|普通服务行业|企业/机构高管|厂长经理等|银行|证券|保险|期货交易|财会审计|金融工作者|..]]></description>
  <link>http://www.yongfa365.com/Item/45e37911d16b08be.html</link>
  <pubDate>Tue, 09 Jan 2007 09:30:00 GMT</pubDate>
</item>
<item>
  <title>中国各省市大学</title>
  <description><![CDATA[&lt;script&gt;<br /><br />//省以@分隔，分后第一个&amp;ldquo;^&amp;rdquo;前边的是省，其它的是学校名。<br /><br /><br />var&nbsp;school=&quot;@北京^北京大学|中国人民大学|清华大学|北京交通大学|北京科技大学|中国石油大学|北京邮电大学|北京化工大学|中国农业大学|北京林业大学|北京中医药大学|北京师范大学|北京外国语大学|北京语言大学|对外..]]></description>
  <link>http://www.yongfa365.com/Item/China-College-All-yongfa365.html</link>
  <pubDate>Sat, 06 Jan 2007 17:10:00 GMT</pubDate>
</item>
<item>
  <title>民族选项</title>
  <description><![CDATA[nation|汉族|藏族|朝鲜族|蒙古族|回族|满族|维吾尔族|壮族|彝族|苗族|其它民族<br />
<br />汉族|壮族|满族|回族|苗族|维吾尔族|彝族|土家族|蒙古族|藏族|布依族|侗族|瑶族|朝鲜族|白族|哈尼族|黎族|哈萨克族|傣族|畲族|僳僳族|仡佬族|拉祜族|东乡族|佤族|水族|纳西族|羌族|土族|锡伯族|仫佬族|柯尔克孜族|达斡尔族|景颇族|撒拉族|布..]]></description>
  <link>http://www.yongfa365.com/Item/c7f3f791f8bd58e3.html</link>
  <pubDate>Sat, 06 Jan 2007 14:54:00 GMT</pubDate>
</item>
<item>
  <title>asp批量修改记录</title>
  <description><![CDATA[&lt;%<br />
'asp&nbsp;数组&nbsp;批量修改记录<br />
id=Request(&quot;id&quot;)<br />
id=Split(id,&quot;,&quot;)<br />
<br />hits=Request(&quot;hits&quot;)<br />
hits=Split(hits,&quot;,&quot;)<br />
<br />regtime=Request(&quot;regtime&quot;)<br />
regtime=Split(regtime,&quot;,&quot;)<br />
<br />For&nbsp;i=LBound(id)&nbsp;To&nbsp;UBound(id)&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set&amp;nbs..]]></description>
  <link>http://www.yongfa365.com/Item/2cdd032d53e3e3b5.html</link>
  <pubDate>Mon, 25 Dec 2006 11:18:00 GMT</pubDate>
</item>
<item>
  <title>asp sql server2000 rs.recordcount=-1</title>
  <description><![CDATA[asp&nbsp;sql&nbsp;server2000里有时使用rs.recordcount会出现结果为-1的情况，解决方法如下：<br /><br /><br />rs.open&nbsp;sql,conn,3<br /><br /><br />有时用上面的方法还是不成可以在定义conn后加上这句<br /><br /><br />conn.cursorlocation=3]]></description>
  <link>http://www.yongfa365.com/Item/5d5abb0e9ef92489.html</link>
  <pubDate>Fri, 22 Dec 2006 10:07:00 GMT</pubDate>
</item>
<item>
  <title>防止网站内容被人小偷和采集的ASP代码</title>
  <description><![CDATA[防止一般的采集以及小偷读取，加在顶部。同理，可以改造成JS脚本。&nbsp;

<br />&lt;%
<br />Dim<br />&nbsp;AppealNum<br />,<br />&nbsp;AppealCount
AppealNum&nbsp;<br />=<br />&nbsp;<br />10<br />&nbsp;<br />'同一IP60秒内请求限制10次
<br />AppealCount&nbsp;<br />=<br />&nbsp;Request<br />.<br />Cookies<br />(<br />&quot;AppealCount&quot;<br />)
<br />If<br />&nbsp;AppealCount&nbsp;<br />=<br />&nbsp;<br />&quot;&quot;<br />&nbsp;<br />Then
<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;response<br />.<br />C..]]></description>
  <link>http://www.yongfa365.com/Item/4a098a6a5850ca52.html</link>
  <pubDate>Fri, 23 Mar 2007 23:02:00 GMT</pubDate>
</item>
<item>
  <title>AspJpeg组件:介绍、注册、高级使用方法 [精]</title>
  <description><![CDATA[1、什么是AspJpeg？<br /><br />　　AspJpeg是一款功能强大的基于Microsoft&nbsp;IIS环境的图片处理组件，网络上对其进行详细和深入介绍的中文文章并不多，即使有一般也只是牵涉到图片缩略图和图片水印，这与其为英文版本有着密切的关系。<br /><br />　　AspJpeg可以使用很少的代码在您的ASP/ASP.Net应用程序上动态的创建高质量的缩略图象，..]]></description>
  <link>http://www.yongfa365.com/Item/fc6a0b6022d57cfe.html</link>
  <pubDate>Thu, 01 Mar 2007 22:33:00 GMT</pubDate>
</item>
<item>
  <title>ASP,vbs正则轮翻在文章段落后加上网址，网站名称，网站介绍等内容</title>
  <description><![CDATA[&lt;!--<br />body&nbsp;{&nbsp;color:&nbsp;#000000;&nbsp;background-color:&nbsp;#FFFFFF;&nbsp;}<br />.vbs1-comment&nbsp;{&nbsp;color:&nbsp;#008000;&nbsp;}<br />.vbs1-identifier&nbsp;{&nbsp;color:&nbsp;#000000;&nbsp;}<br />.vbs1-number&nbsp;{&nbsp;color:&nbsp;#800080;&nbsp;}<br />.vbs1-reservedword&nbsp;{&nbsp;color:&nbsp;#0000FF;&nbsp;}<br />.vbs1-string&nbsp;{&nbsp;color:&nbsp;#800000;&nbsp;}<br />.vbs1-symbol&nbsp;{&nbsp;color:&nbsp;#000080;&nbsp;}<br />.vbs1-whitespace&nbsp;{&nbsp;}<br />--&gt;..]]></description>
  <link>http://www.yongfa365.com/Item/0046b03419ad59dc.html</link>
  <pubDate>Wed, 28 Feb 2007 15:28:00 GMT</pubDate>
</item>
<item>
  <title>ASP为字符串中的网址自动加上链接</title>
  <description><![CDATA[&lt;%<br />
'字段内网址加上联接。<br />
<br />ToLink(Str)<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />RE&nbsp;'正则表达式对象
&nbsp;&nbsp;&nbsp;&nbsp;<br />strContent<br />
&nbsp;&nbsp;&nbsp;&nbsp;If&nbsp;<br />Then&nbsp;<br />=&nbsp;&quot;&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />RE&nbsp;=&nbsp;<br />RegExp&nbsp;'创建正则表达式对象<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />RE..]]></description>
  <link>http://www.yongfa365.com/Item/2e771a810c965750.html</link>
  <pubDate>Wed, 28 Feb 2007 11:20:00 GMT</pubDate>
</item>
<item>
  <title>DateValue函数</title>
  <description><![CDATA[DateValue函数<br />
<br />返回一个&nbsp;Variant<br />
<br />语法<br />
<br />DateValue(<br />
<br />必要的&nbsp;date<br />date&nbsp;<br />
<br />说明<br />
<br />如果&nbsp;date<br />
<br />如果&nbsp;date&nbsp;<br />
<br />如果&nbsp;date]]></description>
  <link>http://www.yongfa365.com/Item/32d73d1eaf6030c7.html</link>
  <pubDate>Mon, 11 Dec 2006 15:34:00 GMT</pubDate>
</item>
<item>
  <title>ASP实现智能搜索</title>
  <description><![CDATA[&lt;%&nbsp;<br />
Function<br />AutoKey(strKey)&nbsp;<br />
<br />
Const<br />lngSubKey=2&nbsp;<br />
lngLenKey=Len(strKey)&nbsp;<br />
<br />
Select<br />Case<br />lngLenKey&nbsp;<br />
Case<br />0<br />'若为空串，转到出错页&nbsp;<br />
<br />.<br />&quot;Error.htm&quot;&nbsp;<br />
Case<br />1<br />'若长度为1，则不设任何值&nbsp;<br />
strNew1=&quot;&quot;&nbsp;<br />
strNew2=&quot;&quot;&nbsp;<br />
Case<br />Else<br />'若长度大于1，则从字符..]]></description>
  <link>http://www.yongfa365.com/Item/4f3dece718da8a89.html</link>
  <pubDate>Fri, 01 Dec 2006 15:40:00 GMT</pubDate>
</item>
<item>
  <title>ASP数据库语法总结</title>
  <description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp;&lt;一&gt;数据库的连接方法：<br />
<br />&nbsp;&nbsp;&nbsp;&nbsp;1.Access数据库的DSN-less连接方法:<br />
<br />&nbsp;&nbsp;&nbsp;&nbsp;set&nbsp;adocon=Server.Createobject(&quot;adodb.connection&quot;)<br />
<br />&nbsp;&nbsp;&nbsp;&nbsp;adoconn.Open&quot;Driver={Microsoft&nbsp;Access&nbsp;Driver(*.mdb)};DBQ=&quot;&amp;&nbsp;_<br />
<br />&nbsp;&amp;n..]]></description>
  <link>http://www.yongfa365.com/Item/8ba4fa10abf48539.html</link>
  <pubDate>Thu, 30 Nov 2006 09:48:00 GMT</pubDate>
</item>
<item>
  <title>ASP vbs 代码大小写规范</title>
  <description><![CDATA[&lt;html&nbsp;xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br /><br />&lt;head&gt;<br /><br />&lt;meta&nbsp;http-equiv=&quot;Content-Type&quot;&nbsp;content=&quot;text/html;&nbsp;Charset=gb2312&quot;&nbsp;/&gt;<br /><br />&lt;title&gt;ASP&nbsp;vbs　代码大小写规范-http://www.yongfa365.com/item/749527cce93b7c5d.htm&lt;/title&gt;<br /><br />&lt;/head&gt;<br />..]]></description>
  <link>http://www.yongfa365.com/Item/749527cce93b7c5d.html</link>
  <pubDate>Wed, 29 Nov 2006 21:56:00 GMT</pubDate>
</item>
<item>
  <title>ASP FSO 检测 创建 删除 文件 文件夹</title>
  <description><![CDATA['<br />////////////////////////////////////////////////FSO操作/////////////////////////////////////<br /><br />
'<br />判断文件夹是否存在<br /><br />
<br />Function<br />&nbsp;FolderExits(Folder)<br />
Folder<br />=<br />Server.Mappath(Folder)<br />
<br />Set<br />&nbsp;FSO<br />=<br />&nbsp;Server.CreateObject(<br />&quot;<br />Scripting.FileSystemObject<br />&quot;<br />)<br />
..]]></description>
  <link>http://www.yongfa365.com/Item/7e9e8ca2f0734bc5.html</link>
  <pubDate>Wed, 29 Nov 2006 15:37:00 GMT</pubDate>
</item>
<item>
  <title>用正则表达式突出显示字符串中查询到的单词的函数</title>
  <description><![CDATA[Function&nbsp;BoldWord(strContent,word)<br />
&nbsp;&nbsp;&nbsp;&nbsp;dim&nbsp;objRegExp<br />
&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;objRegExp=new&nbsp;RegExp<br />
&nbsp;&nbsp;&nbsp;&nbsp;objRegExp.IgnoreCase&nbsp;=true<br />
&nbsp;&nbsp;&nbsp;&nbsp;objRegExp.Global=True<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;objRegExp.Pattern=&quot;(&quot;&nbsp;&amp;&nbsp;word&nbsp;&amp;&nbsp;&quot;)&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;strContent=objR..]]></description>
  <link>http://www.yongfa365.com/Item/44407ae163fbdeb2.html</link>
  <pubDate>Tue, 28 Nov 2006 17:32:00 GMT</pubDate>
</item>
<item>
  <title>mssql sql server 插入记录后 得到 取得 当前记录id值</title>
  <description><![CDATA[原名：在MsSql、Access两种数据库中插入记录后马上得到自动编号的ID值<br /><br /><br /><br /><br />本编文章将要介绍重点解释如何在Ms&nbsp;Sql&nbsp;Server中更新或添加一条记录后立即得到其标识列的值，这个值在ACCESS就是我们熟知的自动编号的<br /><br />ID值，好了，闲话不多说，代码我也不多写，只写关键些，相信各位高手一看就明白，呵呵。后面也附带了在..]]></description>
  <link>http://www.yongfa365.com/Item/1d7fd000521e7c17.html</link>
  <pubDate>Tue, 28 Nov 2006 16:51:00 GMT</pubDate>
</item>
<item>
  <title>Server 对象 错误 &amp;#39;ASP 0177 : 800401f3&amp;#39; Server.CreateObject 失败[集合]</title>
  <description><![CDATA[一、系统没有开启FSO组件<br />
<br />系统没有开启FSO组件.<br />
FSO组件的开启和关闭方法<br />
Dll&nbsp;文件的注册和注销：<br />
运行cmd命令<br />
注消FSO组件：RegSvr32&nbsp;/u&nbsp;%windir%\SYSTEM32\scrrun.dll&nbsp;<br />
启用FSO命令：RegSvr32&nbsp;%windir%\SYSTEM32\scrrun.dll<br />
<br />二、多次注消、启动后还是出现错误，原因是没权限，不知道怎么造成的,下边提供..]]></description>
  <link>http://www.yongfa365.com/Item/6050d57b1a32a789.html</link>
  <pubDate>Tue, 28 Nov 2006 16:05:00 GMT</pubDate>
</item>
<item>
  <title>动易九个常见的错误原因分析及解决方法</title>
  <description><![CDATA[错误提示：<br />
ADODB.Recordset&nbsp;错误&nbsp;'800a0cc1'<br />
Item&nbsp;cannot&nbsp;be&nbsp;found&nbsp;in&nbsp;the&nbsp;collection&nbsp;corresponding&nbsp;to&nbsp;the&nbsp;requested&nbsp;name&nbsp;or&nbsp;ordinal.<br />
/index.asp，行15<br />
<br />
错误原因：服务器上安装动易组件最新组件，但网站系统是用的4.0，系统没有找到相应的字段。动易组件从4.02开始向下兼容，但不兼容4.0。<br />
解决方法：请在..]]></description>
  <link>http://www.yongfa365.com/Item/d7312379701d0ed7.html</link>
  <pubDate>Tue, 28 Nov 2006 16:04:00 GMT</pubDate>
</item>
<item>
  <title>这是一个简短的分页显示的例子:</title>
  <description><![CDATA[这是一个简短的分页显示的例子:&nbsp;<br />
<br />
&lt;%language=&quot;vbscript&quot;&nbsp;<br />
set&nbsp;conn=server.createobject(&quot;adodb.connection&quot;)&nbsp;<br />
conn.oen&nbsp;&quot;driver={sql&nbsp;server};server=huang;uid=sa;pwd=;database=test&quot;&nbsp;<br />
&lt;%pgsize=5&nbsp;<br />
page=request.querystring(&quot;page&quot;)&nbsp;<br />
sql=&quot;select&nbsp;*..]]></description>
  <link>http://www.yongfa365.com/Item/353903df2b6bb542.html</link>
  <pubDate>Tue, 28 Nov 2006 11:50:00 GMT</pubDate>
</item>
<item>
  <title>柳永法(yongfa365)的ASP自定义函数</title>
  <description><![CDATA['判断文件夹是否存在<br /><br />Function FolderExits(Folder)<br />    Folder = Server.MapPath(Folder)<br />    Set FSO = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;)<br />    If FSO.FolderExists(Folder) Then<br />        FolderExits = True<br />    Else<br />        FolderExits = False<br />    End If<br />End Function<br />]]></description>
  <link>http://www.yongfa365.com/Item/c2168d36624e4930.html</link>
  <pubDate>Tue, 28 Nov 2006 10:59:00 GMT</pubDate>
</item>
<item>
  <title>ASP指针移动几种方法</title>
  <description><![CDATA[MoveFirst&nbsp;<br />
<br />
使当前记录成为记录集内第一条记录。&nbsp;<br />
<br />
MoveLast&nbsp;<br />
<br />
使当前记录成为记录集内最后一条记录。&nbsp;<br />
<br />
MoveNext&nbsp;<br />
<br />
使当前记录成为记录集内下一条记录。&nbsp;<br />
<br />
MovePrevious&nbsp;<br />
<br />
使当前记录成为记录集内前一条记录<br />
<br />
Move&nbsp;n&nbsp;<br />
<br />
从当前记录开始向下移动N次]]></description>
  <link>http://www.yongfa365.com/Item/d66ffc9980ef7fe9.html</link>
  <pubDate>Mon, 27 Nov 2006 10:59:00 GMT</pubDate>
</item>
<item>
  <title>统计在线用户操作</title>
  <description><![CDATA[&lt;!----建立数据库start<br />
&nbsp;&nbsp;Create&nbsp;Table&nbsp;Online<br />
&nbsp;&nbsp;(<br />
&nbsp;&nbsp;id&nbsp;varchar&nbsp;(25),--session.sessionid<br />
&nbsp;&nbsp;online&nbsp;int&nbsp;default(0),&nbsp;--0为访客,1为会员<br />
&nbsp;&nbsp;lasttime&nbsp;datetime,--最近活动时间<br />
&nbsp;&nbsp;username&nbsp;varchar&nbsp;(25),--会员用户名<br />
&nbsp;&nbsp;ip&nbsp;varchar&nbsp;(15),--访问者IP<br />
&nbsp;&nbsp;)<br />
--建立..]]></description>
  <link>http://www.yongfa365.com/Item/ec1b2e2139e8c52a.html</link>
  <pubDate>Thu, 16 Nov 2006 17:18:00 GMT</pubDate>
</item>
<item>
  <title>统计 当前 在线用户 时间间隔</title>
  <description><![CDATA[&lt;!----建立数据库start<br />
&nbsp;&nbsp;Create&nbsp;Table&nbsp;Online<br />
&nbsp;&nbsp;(<br />
&nbsp;&nbsp;id&nbsp;varchar&nbsp;(25),--session.sessionid<br />
&nbsp;&nbsp;online&nbsp;int&nbsp;default(0),&nbsp;--0为访客,1为会员<br />
&nbsp;&nbsp;lasttime&nbsp;datetime,--最近活动时间<br />
&nbsp;&nbsp;username&nbsp;varchar&nbsp;(25),--会员用户名<br />
&nbsp;&nbsp;ip&nbsp;varchar&nbsp;(15),--访问者IP<br />
&nbsp;&nbsp;)<br />
--建立..]]></description>
  <link>http://www.yongfa365.com/Item/3a3013cf592bbad5.html</link>
  <pubDate>Mon, 06 Nov 2006 21:21:00 GMT</pubDate>
</item>
<item>
  <title>ASP如何获取客户端真实IP地址</title>
  <description><![CDATA[在ASP中使用&nbsp;Request.ServerVariables(&quot;REMOTE_ADDR&quot;)&nbsp;来取得客户端的IP地址，但如果客户端是使用代理服务器来访问，那取到的就是代理服务器的IP地址，而不是真正的客户端IP地址。要想透过代理服务器取得客户端的真实IP地址，就要使用&nbsp;Request.ServerVariables(&quot;HTTP_X_FORWARDED_FOR&quot;)&nbsp;来读取。不过要..]]></description>
  <link>http://www.yongfa365.com/Item/2f26ee37a0da48b6.html</link>
  <pubDate>Mon, 06 Nov 2006 19:58:00 GMT</pubDate>
</item>
<item>
  <title>取得表单提交的所有数据</title>
  <description><![CDATA[&lt;%&nbsp;For&nbsp;Each&nbsp;x&nbsp;In&nbsp;Request.Form&nbsp;%&gt;<br />
Request.Form(&quot;&lt;%=&nbsp;x&nbsp;%&gt;&quot;)&nbsp;=&nbsp;&quot;&lt;%=&nbsp;Request.Form(x)&nbsp;%&gt;&quot;&nbsp;&lt;BR&gt;<br />
&lt;%&nbsp;Next&nbsp;%&gt;]]></description>
  <link>http://www.yongfa365.com/Item/ef2a298a7452da80.html</link>
  <pubDate>Mon, 06 Nov 2006 18:12:00 GMT</pubDate>
</item>
<item>
  <title>随机 数字 转化为　A-J　的 字母 asp vbs</title>
  <description><![CDATA['随机数字转化为A-J的字母&nbsp;<br />
Function&nbsp;&nbsp;ChangeCode(id)<br />
&nbsp;ChangeCode=&quot;&quot;<br />
&nbsp;For&nbsp;i=1&nbsp;to&nbsp;len(id)<br />
&nbsp;ChangeCode&nbsp;=&nbsp;ChangeCode&nbsp;+&nbsp;chr(mid(id,i,1)+65)<br />
&nbsp;Next<br />
End&nbsp;Function<br />
msgbox&nbsp;ChangeCode(54352345),,&quot;随机数字转化为A-J的字母&quot;<br />
<br />把上边的存为changecode.vb..]]></description>
  <link>http://www.yongfa365.com/Item/e253b35a12af6d92.html</link>
  <pubDate>Tue, 31 Oct 2006 13:38:00 GMT</pubDate>
</item>
<item>
  <title>生成 n位 随机 数字 字符 vbs asp</title>
  <description><![CDATA[Function&nbsp;NumRand(n)&nbsp;'生成n位随机数字<br />
&nbsp;&nbsp;For&nbsp;i=1&nbsp;to&nbsp;n<br />
&nbsp;&nbsp;&nbsp;&nbsp;Randomize<br />
&nbsp;&nbsp;&nbsp;&nbsp;temp&nbsp;=&nbsp;cint(9*Rnd)<br />
&nbsp;&nbsp;&nbsp;&nbsp;temp&nbsp;=&nbsp;temp&nbsp;+&nbsp;48<br />
&nbsp;&nbsp;&nbsp;&nbsp;NumRand&nbsp;=&nbsp;NumRand&nbsp;&amp;&nbsp;chr(temp)<br />
&nbsp;&nbsp;Next<br />
End&nbsp;Function<br />
<br />

<br /><br />
Function&nbsp;LCharRand(n)&nbsp;'生成n位随机小写..]]></description>
  <link>http://www.yongfa365.com/Item/24872997f7a1f06b.html</link>
  <pubDate>Tue, 31 Oct 2006 12:21:00 GMT</pubDate>
</item>
<item>
  <title>DateDiff 函数</title>
  <description><![CDATA[DateDiff&nbsp;函数
<br />返回两个日期之间的时间间隔。&nbsp;<br />
<br />DateDiff(<br />
<br />DateDiff<br />
参数
<br />interval<br />
<br />必选项。String&nbsp;expression<br />
<br />date1,&nbsp;date2<br />
<br />必选项。日期表达式。用于计算的两个日期。<br />
<br />Firstdayofweek<br />
<br />可选项。指定星期中第一天的常数。如果没有指定，则默认为星期日。有关数值，请参阅&amp;ldquo;设置&amp;rdqu..]]></description>
  <link>http://www.yongfa365.com/Item/aa220729c83e7050.html</link>
  <pubDate>Fri, 27 Oct 2006 23:17:00 GMT</pubDate>
</item>
<item>
  <title>&amp;#39;金钱转换.12;-.12==&amp;#62;0.12;-0.12函数</title>
  <description><![CDATA['金钱转换.12;-.12==&gt;0.12;-0.12<br />
Function&nbsp;MoneyChange(str)<br />
if&nbsp;instr(str,&quot;.&quot;)=1&nbsp;then<br />
&nbsp;str=&quot;0&quot;&amp;str<br />
elseif&nbsp;instr(str,&quot;.&quot;)=2&nbsp;then<br />
&nbsp;str=&quot;-0&quot;&amp;mid(str,2)<br />
end&nbsp;if<br />
&nbsp;MoneyChange=str<br />
End&nbsp;Function<br />
MsgBox&nbsp;MoneyChange(.12),65,&quot;i..]]></description>
  <link>http://www.yongfa365.com/Item/98c3fa3d979d44b5.html</link>
  <pubDate>Mon, 23 Oct 2006 10:21:00 GMT</pubDate>
</item>
<item>
  <title>Cookie集合</title>
  <description><![CDATA[1、ExpiresAbsolute属性<br />
　　该属性可以赋一个日期，过了这个日期Cookie就不能再被使用了。通过给Expires属性赋一个过期的日期，就可以删除Cookie。如：<br />
&nbsp;<br />
2、Domain属性<br />
　　该属性定义Cookie要传送的唯一域。如：Cookie只传送给Microsoft的人，则可以使用以下代码。<br />
<br />
<br />&nbsp;设定cookie过期时间为60天r..]]></description>
  <link>http://www.yongfa365.com/Item/a4e7728d441c5055.html</link>
  <pubDate>Sun, 22 Oct 2006 13:58:00 GMT</pubDate>
</item>
<item>
  <title>DateAdd 函数 Response.Cookies(&amp;#34;name&amp;#34;).expires=DateAdd(&amp;#34;n&amp;#34;,+2,Now)</title>
  <description><![CDATA[DateAdd&nbsp;函数
<br />返回已添加指定时间间隔的日期。&nbsp;<br />
<br />DateAdd(<br />
参数
<br />interval<br />
<br />必选项。字符串表达式<br />
<br />number<br />
<br />必选项。数值表达式<br />
<br />date<br />
<br />必选项。Variant<br />
设置
<br />interval<br />

&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;设置
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;描述
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yyyy
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;年
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;..]]></description>
  <link>http://www.yongfa365.com/Item/c053e35a89573494.html</link>
  <pubDate>Sun, 22 Oct 2006 12:16:00 GMT</pubDate>
</item>
<item>
  <title>eWebeditor集成aspjpeg生成水印图片</title>
  <description><![CDATA[采用的版本:&nbsp;ewebeditor&nbsp;version&nbsp;2.8&nbsp;&nbsp;aspjpeg&nbsp;V1.3<br />
<br />支持添加不同的水印.<br />
<br />相关代码如下:<br />
<br />要修改的页面<br />
<br />eWebeditor目录下&nbsp;\Dialog\img.htm<br />
<br />注:蓝色的部分为修改和添加的代码.<br />
<br />第256行开始:&nbsp;<br />
<br />&lt;legend&gt;显示效果&lt;/legend&gt;<br />
&nbsp;&lt;table&nbsp;border=0&nbsp;cellpadding=0&nbsp;cellspacing=..]]></description>
  <link>http://www.yongfa365.com/Item/6b22eea9cccd7225.html</link>
  <pubDate>Fri, 20 Oct 2006 14:05:00 GMT</pubDate>
</item>
<item>
  <title>eWebEditor 2.8水印功能实现思路</title>
  <description><![CDATA[主要用一个函数就可以解决了，如下：<br />
<br />
<br />
'----------------------------------<br />
'创建预览图片及打水印:call&nbsp;CreateView(文件的路径,要添加的水印图片文件)<br />
'Design&nbsp;by&nbsp;Seven&nbsp;(See7di@Gmail.com)<br />
<br />
Function&nbsp;CreateView(imagename,img,inttype)<br />
Dim&nbsp;Object,objFont,Obj,LogoPath,sWidth,sHeight<br />
sWidth&nbsp;=&nbsp;Lo..]]></description>
  <link>http://www.yongfa365.com/Item/e9dbc28e51a680f6.html</link>
  <pubDate>Fri, 20 Oct 2006 13:58:00 GMT</pubDate>
</item>
<item>
  <title>超级好用的分页函数</title>
  <description><![CDATA['***********************************************<br />
'永法修改版<br />
'函数名：SetPage;PrintPage<br />
'作&nbsp;&nbsp;用：分页函数<br />
'应用:<br />
'rs.open之后写上setpage(rs,pagecount,20)&nbsp;&nbsp;&nbsp;<br />
'For循环里记得写上<br />
'&lt;%<br />
'rs.movenext<br />
'if&nbsp;i&gt;rs.PageSize&nbsp;then&nbsp;exit&nbsp;for&nbsp;<br />
'next<br />
'%&gt;<br />
'循环完后表格外写..]]></description>
  <link>http://www.yongfa365.com/Item/2ce5352ed454c36d.html</link>
  <pubDate>Thu, 19 Oct 2006 13:25:00 GMT</pubDate>
</item>
<item>
  <title>网站后台通用模块</title>
  <description><![CDATA[&lt;!--#include&nbsp;file=&quot;../conn.asp&quot;--&gt;&lt;!--#include&nbsp;file=&quot;../function/function.asp&quot;--&gt;<br />
&lt;%if&nbsp;session(&quot;username&quot;)=&quot;&quot;&nbsp;then&nbsp;response.Redirect&nbsp;&quot;Admin_Index.asp&quot;%&gt;<br />
&lt;link&nbsp;href=&quot;css.css&quot;&nbsp;rel=&quot;stylesheet&quot;&nbsp;type=&quot;tex..]]></description>
  <link>http://www.yongfa365.com/Item/51c2d2f5202b5f08.html</link>
  <pubDate>Tue, 17 Oct 2006 17:38:00 GMT</pubDate>
</item>
<item>
  <title>asp response.redirect</title>
  <description><![CDATA[历史后退无法对跳转到本页的跳转进行判断&nbsp;<br />
<br />asp&nbsp;response.redirect<br />
<br />在一个网页内操作后用&nbsp;response.redirect又跳转到本页，则浏览器的后退不会起作用。<br />
<br />聊天记录<br />
<br />11111111111步惊云㊣.net&nbsp;15:29:55<br />
在更改购物车内物品数量时，如果用call，那&lt;#&nbsp;href&nbsp;=&quot;javascript:history.go(-1)&quot;&gt;返回&amp;l..]]></description>
  <link>http://www.yongfa365.com/Item/7ba2551991823877.html</link>
  <pubDate>Fri, 13 Oct 2006 16:24:00 GMT</pubDate>
</item>
<item>
  <title>asp测试变量的类型　函数</title>
  <description><![CDATA['****************************************************<br /><br />'过程名：strtype<br /><br />'作&nbsp;&nbsp;用：测试时显示变量的类型,(主要使用到的是vartype)<br /><br />'参&nbsp;&nbsp;数：str&nbsp;<br /><br />'****************************************************<br /><br />Function&nbsp;strtype(str)<br /><br />&nbsp;str1=vartype(str)<br /><br />&nbsp;&nbsp;Select&nbsp;&nbsp;Case&nbsp;str1<br /><br /> ..]]></description>
  <link>http://www.yongfa365.com/Item/0e97101f4c4628f1.html</link>
  <pubDate>Thu, 12 Oct 2006 15:50:00 GMT</pubDate>
</item>
<item>
  <title>[select]属性[Animal]</title>
  <description><![CDATA[&lt;select&nbsp;name=&quot;Animal&quot;&nbsp;id=&quot;Animal&quot;&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;selected&nbsp;value=&quot;&quot;&gt;==请选择==&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;鼠&quot;&gt;鼠&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;牛&quot;&gt;牛&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;虎&amp;quo..]]></description>
  <link>http://www.yongfa365.com/Item/aaade415d88a5a80.html</link>
  <pubDate>Wed, 11 Oct 2006 15:14:00 GMT</pubDate>
</item>
<item>
  <title>[select]星座[constellation]</title>
  <description><![CDATA[&lt;select&nbsp;name=&quot;constellation&quot;&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;&quot;&gt;-请选择-&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;白羊座&quot;&gt;白羊座(3/21--4/20)&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;value=&quot;金牛座&quot;&gt;金牛座(4/21--5/20)&lt;/option&gt;<br />
&nbsp;&nbsp;&lt;option&nbsp;valu..]]></description>
  <link>http://www.yongfa365.com/Item/540c295e17375980.html</link>
  <pubDate>Wed, 11 Oct 2006 15:00:00 GMT</pubDate>
</item>
<item>
  <title>fso生成js文件</title>
  <description><![CDATA[&lt;%sub&nbsp;fsojs()%&gt;<br />
&nbsp;&lt;%<br />
Set&nbsp;fso=&nbsp;Server.CreateObject(&quot;Scripting.FileSystemObject&quot;)<br />
set&nbsp;fd=fso.createtextfile(server.MapPath(&quot;../category.js&quot;),true)<br />
<br />'开始操作<br />
set&nbsp;rs=server.CreateObject(&quot;adodb.recordset&quot;)<br />
rs.Open&nbsp;&quot;select&nbsp;*&nbsp;from&nbsp;dept_category&amp;..]]></description>
  <link>http://www.yongfa365.com/Item/2ed3de80638b2efc.html</link>
  <pubDate>Sun, 08 Oct 2006 22:33:00 GMT</pubDate>
</item>
<item>
  <title>asp 防止外部提交表单，网页</title>
  <description><![CDATA[server_v1 = CStr(Request.ServerVariables(&quot;HTTP_REFERER&quot;))<br />server_v2 = CStr(Request.ServerVariables(&quot;HTTP_HOST&quot;))<br />If Mid(server_v1, 8, Len(server_v2))&lt;&gt;server_v2 Then<br />    Response.Write &quot;&lt;script&gt;alert('警告！你正在从外部提交数据！！请立即终止！！\n你的IP已经被记录，如果再次来,XXX');&lt;/script&gt;&quot;<br />    Response.Redirect &quot;http://www.yongfa365.com/blog&quot;<br />End If]]></description>
  <link>http://www.yongfa365.com/Item/81557cd52a5c1322.html</link>
  <pubDate>Sun, 24 Sep 2006 09:12:00 GMT</pubDate>
</item>
<item>
  <title>Request.ServerVariables ASP环境 服务器变量</title>
  <description><![CDATA[本机ip[客户端]:<br />
request.servervariables(&quot;remote_addr&quot;)<br />
<br />从哪个页面转到当前页面的：<br />
Request.ServerVariables(&quot;HTTP_REFERER&quot;)<br />
<br />&nbsp;得到本页地址：<br />
&lt;%=&quot;http://&quot;&nbsp;+&nbsp;Request.ServerVariables(&quot;SERVER_NAME&quot;)&nbsp;+&nbsp;&quot;:&quot;&nbsp;+&nbsp;Request.ServerVariables(&quot;SERVER_PORT&quot;)&nbsp;+&amp;nb..]]></description>
  <link>http://www.yongfa365.com/Item/feba54cd65e78799.html</link>
  <pubDate>Wed, 20 Sep 2006 16:41:00 GMT</pubDate>
</item>
<item>
  <title>ASP网站后台设计方案技巧总结</title>
  <description><![CDATA[１.用户名规则：<br /><br />》字符大于4，<br /><br />》不能在黑名单里（比如不能跟管理员有重名，不能有任何包含本站域名的相关信息如：yongfa365admin，不用能&amp;ldquo;admin&amp;rdquo;等字样），<br /><br />》最好不要以数字开头，<br /><br />》字母的话要转换成小写的写入数据库，<br /><br />》注册时应该可以检查是否被占用。<br /><br /><br />２.后台菜单式权限设置<br /><br /><br />..]]></description>
  <link>http://www.yongfa365.com/Item/5bdf888f81ba3327.html</link>
  <pubDate>Mon, 18 Sep 2006 11:30:00 GMT</pubDate>
</item>
<item>
  <title>[转]Asp无组件生成缩略图</title>
  <description><![CDATA[网上有不少生成缩略图的ASP组件。若你的虚拟空间不支持注册新组件，可能会感觉自己的网站失色不少。心晴不才，结合网上资源写了个无组件生成缩略图程序，仅供参考。&nbsp;<br />　　还是先看看基础部分吧。首先，我们知道在页面中显示图片是如下代码：<br /><br /><br />　　&lt;img&nbsp;src=&quot;pic.gif&quot;&nbsp;border=&quot;0&quot;&nbsp;width=&quot;300&quot;&nbsp;height=&quot;260&quot;&gt;<br /><br />　..]]></description>
  <link>http://www.yongfa365.com/Item/cf8cab0d061abe6d.html</link>
  <pubDate>Thu, 24 Aug 2006 16:50:00 GMT</pubDate>
</item>
<item>
  <title>验证码的作用</title>
  <description><![CDATA[验证码的作用：<br /><br />有效防止这种问题对某一个特定注册用户用特定程序暴力破解方式进行不断的登陆尝试，实际上是用验证码是现在很多网站通行的方式（比如招商银行的网上个人银行，腾讯的QQ社区），我们利用比较简易的方式实现了这个功能。虽然登陆麻烦一点，但是对社区还来说这个功能还是很有必要，也很重要。但我们还是提醒..]]></description>
  <link>http://www.yongfa365.com/Item/859a601dc525343b.html</link>
  <pubDate>Wed, 16 Aug 2006 10:08:00 GMT</pubDate>
</item>
<item>
  <title>asp,将变量中内容中的http地址自动加上连接</title>
  <description><![CDATA[asp,将变量中内容中的http地址自动加上连接&nbsp;<br /><br />&lt;%<br /><br />strContent&nbsp;=&quot;老大，给我加个链接吧http://www.yongfa365.com哈哈哈哈，这是我家娘子的网址：http://hi.baidu.com/chenmanxia,好了，加链接吧&quot;&nbsp;<br /><br />Set&nbsp;re=new&nbsp;RegExp&nbsp;<br /><br />re.IgnoreCase&nbsp;=true&nbsp;<br /><br />re.Global=True&nbsp;<br /><br />re.Pattern&nbsp;=&nbsp;&quot;^(http://[A-Za..]]></description>
  <link>http://www.yongfa365.com/Item/69f3787eca1ab30b.html</link>
  <pubDate>Wed, 09 Aug 2006 08:04:00 GMT</pubDate>
</item>
<item>
  <title>IIS 6.0浏览asp动态内容时 &amp;#34; HTTP 错误 404 - 文件或目录找到 &amp;#34; 错误信息</title>
  <description><![CDATA[2003系统<br /><br />Internet&nbsp;信息服务管理--&gt;Web&nbsp;服务扩展--&gt;选择Active&nbsp;Server&nbsp;Pages为允许]]></description>
  <link>http://www.yongfa365.com/Item/2c985d796c074aaa.html</link>
  <pubDate>Tue, 08 Aug 2006 23:29:00 GMT</pubDate>
</item>
<item>
  <title>admin--&gt;7a57a5a743894a0e</title>
  <description><![CDATA[admin&nbsp;md5加密后：<br /><br />后台密码替换:16位7a57a5a743894a0e<br /><br />后台密码替换:&nbsp;32位21232f297a57a5a743894a0e4a801fc3<br /><br />admin&nbsp;经md5加密后：7a57a5a743894a0e<br />]]></description>
  <link>http://www.yongfa365.com/Item/3e24a1aae55780d2.html</link>
  <pubDate>Tue, 08 Aug 2006 21:28:00 GMT</pubDate>
</item>
<item>
  <title>[原]图片自适应表格[完美解决方案]</title>
  <description><![CDATA['文件是否存在的函数<br /><br />Function&nbsp;fileexits(filename)<br />set&nbsp;FSO=Server.CreateObject(&quot;Scripting.FileSystemObject&quot;)&nbsp;<br />If&nbsp;FSO.FileExists(filename)&nbsp;Then<br />&nbsp;&nbsp;&nbsp;fileexits=true<br />Else<br />&nbsp;&nbsp;&nbsp;fileexits=false<br />End&nbsp;If&nbsp;<br />end&nbsp;Function<br /><br />'得到文件的width&nbsp;和height<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;nbs..]]></description>
  <link>http://www.yongfa365.com/Item/d13917bd7aac9504.html</link>
  <pubDate>Wed, 02 Aug 2006 10:31:00 GMT</pubDate>
</item>
<item>
  <title>ASP 编程中20个非常有用的例子</title>
  <description><![CDATA[1.如何用Asp判断你的网站的虚拟物理路径<br />答：使用Mappath方法<br />&lt;&nbsp;p&nbsp;align=&quot;center&quot;&nbsp;&gt;&lt;&nbsp;font&nbsp;size=&quot;4&quot;&nbsp;face=&quot;Arial&quot;&nbsp;&gt;&lt;&nbsp;b&nbsp;&gt;<br />The&nbsp;Physical&nbsp;path&nbsp;to&nbsp;this&nbsp;virtual&nbsp;website&nbsp;is:<br />&lt;&nbsp;/b&nbsp;&gt;&lt;&nbsp;/font&nbsp;&gt;<br />&lt;&nbsp;font&nbsp;color=&quot;#FF0000&quot;&nbsp;size=&quot;6&quot;&nbsp;face=&quot;Arial&quot;&nbsp;&gt;<br />&lt;&nbsp;%=&nbsp;Server.MapPath(&quot;\&quot;)%&nbsp;&gt;<br />..]]></description>
  <link>http://www.yongfa365.com/Item/0d736b56263c6ba5.html</link>
  <pubDate>Thu, 27 Jul 2006 14:55:00 GMT</pubDate>
</item>
<item>
  <title>ASP一个网页处理所有问题(添加,修改,删除,列表)框架</title>
  <description><![CDATA[ASP一个网页处理所有问题(添加，修改，删除，列表)框架&nbsp;<br /><br />&lt;!--#include&nbsp;file=&quot;conn.asp&quot;--&gt;<br />&lt;%'本页配置<br />lanmusort=&quot;链接&quot;<br /><br />%&gt;<br />&lt;link&nbsp;href=&quot;css/style.css&quot;&nbsp;rel=&quot;stylesheet&quot;&nbsp;type=&quot;text/css&quot;&gt;<br />&lt;%<br />&nbsp;ID=int(request(&quot;ID&quot;))<br />&nbsp;action=request(&quot;action&quot;)<br /><br /><br />&nbsp;select&nbsp;case&nbsp;acti..]]></description>
  <link>http://www.yongfa365.com/Item/0dfdd46bd1e09a2f.html</link>
  <pubDate>Wed, 19 Jul 2006 00:50:00 GMT</pubDate>
</item>
<item>
  <title>删除文件</title>
  <description><![CDATA[删除文件<br /><br />&lt;%<br />set&nbsp;fso=server.CreateObject(&quot;scripting.filesystemobject&quot;)<br />filename1=server.MapPath(&quot;Pic&quot;)<br />if&nbsp;fso.fileexists(filename1)&nbsp;then<br />fso.deletefile&nbsp;filename1<br />end&nbsp;if&nbsp;<br />%&gt;]]></description>
  <link>http://www.yongfa365.com/Item/853a80692564e193.html</link>
  <pubDate>Wed, 19 Jul 2006 00:16:00 GMT</pubDate>
</item>
<item>
  <title>JMail发送邮件函数SendMail</title>
  <description><![CDATA[什么是POP3协议,什么是SMTP协议,如何设置<br />&nbsp;<br />msgbox&nbsp;SendMail(&quot;64049027@qq.com&quot;,&quot;收件人&quot;,&nbsp;&quot;测试&quot;,&nbsp;&quot;柳永法test&quot;,&quot;发件人&quot;,&nbsp;&quot;yongfa365@cbdcn.com&quot;)<br />Function&nbsp;SendMail(MailtoAddress,&nbsp;MailtoName,&nbsp;Subject,&nbsp;MailBody,&nbsp;FromName,&nbsp;MailFrom)<br />&nbsp;'函数..]]></description>
  <link>http://www.yongfa365.com/Item/SendMail-JMail-Function-yongfa365.html</link>
  <pubDate>Tue, 18 Jul 2006 23:35:00 GMT</pubDate>
</item>
<item>
  <title>[原]数据库链接标准无错版(SQL+ACCESS) conn connstr SQL Server ACCESS</title>
  <description><![CDATA['****************************ACCESS**********************************<br /><br />dbpath=server.mappath(&quot;../db/#%20yongfa.mdb&quot;)  <br /><br />connstr= &quot;provider=microsoft.jet.oledb.4.0;data source=&quot; &amp; dbpath <br /><br />set conn=server.createobject(&quot;adodb.connection&quot;)  <br /><br />conn.open co..]]></description>
  <link>http://www.yongfa365.com/Item/b354e65e41c75ae9.html</link>
  <pubDate>Tue, 18 Jul 2006 15:28:00 GMT</pubDate>
</item>
<item>
  <title>[转]Session对象的清空</title>
  <description><![CDATA[在保存某些多页面共用的变量的时候（如保存用户登陆信息），我们用得最多的就是Session和Cookies了，至于Session怎么使用这里就不说了，主要说说Session的清空。<br /><br />Contents.Remove(&quot;变量名&quot;):&nbsp;从Session.contents集合中删除指定的变量&nbsp;<br />Contents.Removeall()&nbsp;:&nbsp;删除Session.contents集合中的所有变量&nbsp;<br />Abandon()&nbsp;:&nbsp;结束..]]></description>
  <link>http://www.yongfa365.com/Item/ae3d776004c5de46.html</link>
  <pubDate>Tue, 18 Jul 2006 13:54:00 GMT</pubDate>
</item>
<item>
  <title>[原]asp防SQL注入函数</title>
  <description><![CDATA['SQL防注入函数，调用方法，在需要防注入的地方替换以前的request(&quot;XXXX&quot;)为SafeRequest(&quot;XXXX&quot;)<br />Function&nbsp;SafeRequest(ParaValue)&nbsp;<br />	ParaValue=Trim(Request(ParaValue))<br />	If&nbsp;ParaValue&nbsp;=&nbsp;&quot;&quot;&nbsp;Then<br />		SafeRequest&nbsp;=&nbsp;&quot;&quot;<br />		Exit&nbsp;Function<br />	End&nbsp;If<br />...]]></description>
  <link>http://www.yongfa365.com/Item/64b203bfb37ef51a.html</link>
  <pubDate>Tue, 18 Jul 2006 13:53:00 GMT</pubDate>
</item>
<item>
  <title>[原]BBS过滤不干净,非法字符</title>
  <description><![CDATA[原创：柳永法(yongfa365)'Blog<br />
<br />'名称:BBS过滤<br />
'调用:guolv(str)<br />
'参数:str为要过滤的内容;<br />
'作用:删除一些为了推广自己公司在论坛里发布的大量的网址信息,过滤原则是去掉网址及前10个字符,<br />
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;把一些不健康的字符替换成*<br />
<br /><br />
Function&nbsp;guolv(Words)<br />..]]></description>
  <link>http://www.yongfa365.com/Item/f298ef488e3fca90.html</link>
  <pubDate>Tue, 18 Jul 2006 13:51:00 GMT</pubDate>
</item>
<item>
  <title>[转-改]遍历目录以及目录下文件的函数- 从网上找的不过都用不了,自己用Emeditor修正了一下</title>
  <description><![CDATA[&lt;%@&nbsp;Language=vbscript&nbsp;%&gt;&nbsp;<br />&lt;%&nbsp;<br />&nbsp;'遍历目录以及目录下文件的函数&nbsp;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;Fso=server.createobject(&quot;scripting.filesystemobject&quot;)&nbsp;&nbsp;&nbsp;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;On&nbsp;Error&nbsp;Resume&nbsp;Next&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;Set&nbsp;Objfolder=fso.getfolder(path)&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&amp;n..]]></description>
  <link>http://www.yongfa365.com/Item/b33132d14c6be528.html</link>
  <pubDate>Tue, 18 Jul 2006 13:47:00 GMT</pubDate>
</item>
<item>
  <title>[原]数据库连接,有时会出错在conn.open connstr这地方的问题,及联接查询调用rs(&quot;user.id&quot;)的问题</title>
  <description><![CDATA[最近在给客户做一个客户管理系统时遇到一个问题:<br /><br /><br />使用下列这个连接字符串时情况如下<br /><br /><br /><br />connstr=&quot;DBQ=&quot;+server.mappath(&quot;db/#kehumsg.mdb&quot;)+&quot;;DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};&quot;<br /><br />set conn=server.createobject(&quot;ADODB.CONNECTION&quot;)<br /><br />conn.ope..]]></description>
  <link>http://www.yongfa365.com/Item/b1b2f24850352473.html</link>
  <pubDate>Tue, 18 Jul 2006 13:43:00 GMT</pubDate>
</item>
<item>
  <title>[转]asp备份,还原SQL数据库--非常好用</title>
  <description><![CDATA[&lt;form&nbsp;method=&quot;post&quot;&nbsp;name=&quot;myform&quot;&nbsp;action=&quot;?action=backupdatabase&quot;&gt;<br />&nbsp;&nbsp;选择操作：<br />&nbsp;&nbsp;&lt;input&nbsp;type=&quot;radio&quot;&nbsp;name=&quot;act&quot;&nbsp;id=&quot;act_backup&quot;value=&quot;backup&quot;&gt;<br />&nbsp;&nbsp;&lt;label&nbsp;for=act_backup&gt;备份&lt;/label&gt;<br />&nbsp;&nbsp;&lt;input&nbsp;type=&quot;radio&quot;&nbsp;name=&quot;act&quot;&nbsp;id=&quot;act_restore&quot;&nbsp;value=&quot;restore&quot;&amp;gt..]]></description>
  <link>http://www.yongfa365.com/Item/16affd3326b1ac1f.html</link>
  <pubDate>Tue, 18 Jul 2006 13:42:00 GMT</pubDate>
</item>
<item>
  <title>[转]图片自适应表格,目前最佳解决方案!</title>
  <description><![CDATA[1.上传的时候可以将图片高宽存到数据库里,用的时候调出来判断,但那种方法相比较下边的麻烦.<br />2.用VBSCRIPT里的一个函数&nbsp;loadpicture<br />picurl'图片地址<br />'取出高宽<br /><br />使用图片前选调出来并取得图片大小<br />set&nbsp;myImg&nbsp;=&nbsp;loadpicture(server.mappath(picurl))&nbsp;<br />&nbsp;iWidth&nbsp;=&nbsp;round(myImg.width&nbsp;/&nbsp;26.4583)&nbsp;<br />&nbsp;iHeight&nbsp;=..]]></description>
  <link>http://www.yongfa365.com/Item/7fafc909f20f842a.html</link>
  <pubDate>Tue, 18 Jul 2006 13:41:00 GMT</pubDate>
</item>
<item>
  <title>[转]如何取日期7月6日为0706的最简单方法</title>
  <description><![CDATA[right(&quot;0&quot;&amp;year(now),2)&amp;right(&quot;0&quot;&amp;month(now),2)&amp;right(&quot;0&quot;&amp;day(now),2)&amp;right(&quot;0&quot;&amp;hour(now),2)&amp;right(&quot;0&quot;&amp;minute(now),2)&amp;right(&quot;0&quot;&amp;second(now),2)]]></description>
  <link>http://www.yongfa365.com/Item/a8e1fbfe85324f93.html</link>
  <pubDate>Tue, 18 Jul 2006 13:38:00 GMT</pubDate>
</item>
</channel></rss>
