<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>ASP</title>
<link>http://im.vc/web/asp/</link>
<description>Web开发 / ASP</description>
<language>zh-cn</language>
<generator><![CDATA[&lt;a href=&quot;javascript:;&quot; onclick=alert(&quot;我们觉得没啥好介绍的，所以就懒得写了\r\n放在这里就为了占位而已，你懂的！&quot;);return false;&gt;关于我们&lt;/a&gt; &lt;a href=&quot;mailto:admin@im.vc&quot; target=&quot;_blank&quot;&gt;联系我们&lt;/a&gt; &lt;a href=&quot;javascript:;&quot; onclick=alert(&quot;文章大部分都来源于互联网，你懂的！&quot;);return false;&gt;IM.VC声明&lt;/a&gt; &lt;a href=&quot;/data/rssmap.html&quot; target=&quot;_blank&quot;&gt;RSS订阅&lt;/a&gt; &lt;a href=&quot;/data/sitemap.html&quot; target=&quot;_blank&quot;&gt;网站地图&lt;/a&gt; &lt;a href=&quot;javascript:;&quot; onclick=this.style.behavior=&quot;url(#default#homepage)&quot;;this.setHomePage(&quot;http://im.vc&quot;); return false;&gt;设为首页&lt;/a&gt; &lt;a href=&quot;javascript:;&quot;  onclick=&quot;addFavorite(); return false&quot;&gt;加入收藏&lt;/a&gt; 粤ICP备11032241号&lt;br&gt;Copyright &amp;copy; 2011 IM.VC 版权所有]]></generator>
<webmaster>desdev@vip.qq.com</webmaster>
<item>
    <title><![CDATA[Asp优化，asp缓存技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/62949.html</link>
    <description><![CDATA[一、何谓asp缓存/为什么要缓存 当你的web站点采用asp技术建立的初期，可能感觉到的是asp动态网页技术带来的便利性，以及随意修改性、 自如的http控制。但是，随着访问量的增加，你一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP调用C#写的COM组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62943.html</link>
    <description><![CDATA[1 新建类库MyTestDLL 2 右击项目“MyTestDLL”-》属性-》生成-》勾选“为COM互操作注册” 3 打开 AssemblyInfo.cs 文件 修改 [assembly: ComVisible(true)] 4 打开Visual Sutdio 2008 的命令提示行工具输入guid]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用面向对象封装ASP中的cookie操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/62940.html</link>
    <description><![CDATA['说明： 0、'aspCookieAry,ASPCookie为系统初始化时创建的类的实例对象 1、'在程序中仅当第一次使用cookies时才使用setCookies这个方法来一次设置cookies的所有常有属性 2、'下一次再使用cokies时]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用MySQL数据库全攻略]]></title>
    <link>http://im.vc/web/asp/2011/0822/62933.html</link>
    <description><![CDATA[本文作者和大家共享如何使用asp和MySQL数据库开发动态页面，给出了具体环境要求、详细步骤和简单的源代码。 MYSQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数 储存单位转换函数:FormatFileSize()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62837.html</link>
    <description><![CDATA[程序代码 % '功能:储存单位转换函数 Function FormatFileSize(iSize) Dim aUnits, I aUnits = Array(B, KB, MB, GB, TB, PB, EB, ZB, YB) I = Log(Abs(iSize)) \ 7 If I UBound(aUnits) Then I = UBound(aUnits) FormatFileS]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分页函数、分页导航]]></title>
    <link>http://im.vc/web/asp/2011/0822/62835.html</link>
    <description><![CDATA[程序代码 % '//分页函数 '//psize:每页显示的数据数 '//pindex:当前页码 '//tbName:表名 '//keyIndex:根据什么字段分页,一般是自增长类型(access数据库的自动编号) '//where:查询条件 '//order:排序条件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP利用FSO导出到CSV文件类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62834.html</link>
    <description><![CDATA[程序代码 % '========================================================== '将纪录输出为(.csv)文件 '制作日期：2003年3月 '作者 ：塞北的雪 '========================================================== Class Export_CSV PRiv]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP返回错误页和http状态查询工具]]></title>
    <link>http://im.vc/web/asp/2011/0822/62833.html</link>
    <description><![CDATA[IIS默认的错误页是很不友好的，很多人看到默认的错误页时都会说：网站打不开了！白白损失了这部分流量。而如果错误页直接跳转到首页又对搜索引擎很不友好，搞不好首页还会被封]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP通用函数库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62832.html</link>
    <description><![CDATA[程序代码 % '****************************** '类名： '名称：通用库 '日期：2008/10/28 '作者：by xilou '网址：http://www.chinacms.org '描述：通用库 '版权：转载请注名出处，作者 '**************************]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP绝对保证上传图片安全的图片检测函数 ChkImg()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62831.html</link>
    <description><![CDATA[程序代码 % '------------------------------------------- '函数名：ChkImg '作 用：检查图片文件是否合法 '参 数：img，图片路径，相对于网站根目录的绝对路径 '返回值：布尔类型，如果图片合法返]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp一句代码将?id=26变成show/?26的形式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62830.html</link>
    <description><![CDATA[首先建立一个show目录，建立一个index.asp文件（系统默认内容文档列表里有的即可）， 然后把以前如果是 show.asp?id=26 的时候，show这个文件需要得到id一般用 程序代码 id=request.QueryString]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP缓存类含调用演示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62829.html</link>
    <description><![CDATA[程序代码 % 'by xilou,www.chinacms.org,20090115 '最后更新：20090115 '修改记录：无 CONST CACHEPREFIX = CACHE_ '缓存前缀,不能为空 '说明： ' 1,缓存的格式为application(CACHEPREFIX key) = array(缓存key,缓存时]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP写的汉字转换UTF]]></title>
    <link>http://im.vc/web/asp/2011/0822/62828.html</link>
    <description><![CDATA[汉字转换为UTF-8 function chinese2unicode(Str) dim i dim Str_one dim Str_unicode for i=1 to len(Str) Str_one=Mid(Str,i,1) Str_unicode=Str_unicodechr(38) Str_unicode=Str_unicodechr(35) Str_unicode=Str_unicodechr(120) Str_unicode=Str_unic]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为XHTML发送正确的MIME类型的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62827.html</link>
    <description><![CDATA[处理 xhtml 时，要获得最大的兼容性，就需要向 Firefox、safari、Opera 和其他符合标准的浏览器发送 application/xhtml+xml，而向 IE 发送 text/html： 程序代码 %dim xm if instr(request.servervariables(http]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成指定位数的随机密码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62826.html</link>
    <description><![CDATA[程序代码 % function genPassWord(length) Randomize do until len(newPass) = length code = Int((74 * Rnd) + 48) if not((code = 58 and code = 64) or (code = 91 and code = 96)) then newPass = newPass chr(code) end if loop genPassword = newPa]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP在线升级类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62825.html</link>
    <description><![CDATA[% Rem ##################################################################################### Rem ## 在线升级类声明 Class Cls_oUpdate Rem ################################################################# Rem ## 描述: asp 在线升级类]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:BHTML()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62824.html</link>
    <description><![CDATA[% '功能:相当于HTMLEncode2的升级.不需要循环整个字符串. '来源:http://www.knowsky.com/536459.html Function BHTML(s) BHTML = BStr(s) BHTML = Server.HTMLEncode(BHTML) BHTML = Replace(BHTML, , ) BHTML = Replace(BHTML, ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些常用的正则表达式大全]]></title>
    <link>http://im.vc/web/asp/2011/0822/62823.html</link>
    <description><![CDATA[匹配中文字符的正则表达式： 程序代码 [\u4e00-\u9fa5] 评注：匹配中文还真是个头疼的事，有了这个表达式就好办了 匹配双字节字符(包括汉字在内)： 程序代码 [^\x00-\xff] 评注：可以用来]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:GetRsRows()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62822.html</link>
    <description><![CDATA[% Function GetRsRows(oRs) Dim aArray ReDim aArray(0, -1) If TypeName(oRs) = Recordset Then If Not ors.BOF Then ors.MoveFirst If Not ors.EOF Then aArray = ors.GetRows() End If GetRsRows = aArray End Function %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中一个字符串处理类加强版]]></title>
    <link>http://im.vc/web/asp/2011/0822/62821.html</link>
    <description><![CDATA[% class StringOperations '*********************************************************************** '' @功能说明: 把字符串换为char型数组 '' @参数说明: - str [string]: 需要转换的字符串 '' @返回值: - [Array] Char型数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp打包类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62820.html</link>
    <description><![CDATA[调用： 程序代码 % On Error Resume Next Dim r Set r = New Rar r.Add Server.MapPath(a.gIf) r.Add Server.MapPath(a.txt) r.Add Server.MapPath(test) r.Add Server.MapPath(file.asp) r.packname = Server.MapPath(xxx.dat) r.Pack r.ro]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP关于Cookie跨域操作，采用设定domain为根域名的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62819.html</link>
    <description><![CDATA[Cookie跨域操作看来是个简单的问题,因为只要指定Domain属性为指定网站的根域名就能够了.但是笔者在实际使用过程中却碰到了一些问题，的确值得注意. 环境介绍 cookie在www主域名下创建]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[缓存的应用,调用速度要比每次都要从数据库中读要快N陪]]></title>
    <link>http://im.vc/web/asp/2011/0822/62818.html</link>
    <description><![CDATA[% Rem ================================================================= Rem = 类:CacheCls Rem = 说明:缓存的应用 Rem = Revision:1.01 Beta Rem = 作者:熊氏英雄（cexo255） Rem = Date:2005/05/6 18:38:10 Rem = QQ:30133499 Rem = My]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp操作Excel类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62817.html</link>
    <description><![CDATA[程序代码 % '*************************************************************************************** '使用说明 'Dim a 'Set a=new CreateExcel 'a.SavePath=x '保存路径 'a.SheetName=工作簿名称 '多个工作表 a.SheetName=ar]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP随机生成汉字]]></title>
    <link>http://im.vc/web/asp/2011/0822/62816.html</link>
    <description><![CDATA[%Dim i Dim j Dim HS Dim HE Dim LS Dim LE dim Result Result= HS = 177 HE = 247 LS = 161 LE = 254 dim Max_Num Max_num=65536 Randomize For i = 1 To 4 temp1=dec2bin(Int((HE - HS) * Rnd()) + HS) temp2=dec2bin(Int((LE - LS) * Rnd()) + LS) Resul]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个常用的ASP自定义函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62815.html</link>
    <description><![CDATA[% Rem ###################################################################### Rem ## 隐藏执行时间 Sub s__HideTimeOver() Dim tTimeOver tTimeOver = FormatNumber((Timer() - tStartTime) * 1000, 3, true) response.Write(vbCrLf !--执行时间]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个检测一个字符串在另一个字符串当中出现几次的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62814.html</link>
    <description><![CDATA[Function CheckTheChar(TheChar,TheString) 'TheChar=要检测的字符串 'TheString=待检测的字符串 if inStr(TheString,TheChar) then for n =1 to Len(TheString) if Mid(TheString,n,Len(TheChar))=TheChar then CheckTheChar=CheckTheChar]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP在线升级类及说明文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62813.html</link>
    <description><![CDATA[●描述: asp 在线升级类 ●版本: 1.0.0 ●作者: 萧月痕(xiaoyuehen) ●MSN: xiaoyuehen(at)msn.com ●请将(at)以 @ 替换 ●版权: 既然共享, 就无所谓版权了. 但必须限于网络传播, 不得用于传统媒体! ●]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用Google的translate API]]></title>
    <link>http://im.vc/web/asp/2011/0822/62812.html</link>
    <description><![CDATA[上篇文字php使用Google的translate API写了以后，突然想做个asp的类，以致asp用户使用。遂写起，发现asp忘了不少。如主题吧，思路和C#的这篇是完全一样的，我只是把它兑成ASP的实现方式而]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个通用数据库显示程序,能调任意库,任意字段,多关键字搜索,自动分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62811.html</link>
    <description><![CDATA[一个通用的数据库显示函数.要求如下: 1. 能显示指定的字段,当然,字段名和显示的文字可以不一样. 2. 能同时按多个字段进行查询,支持模糊和精确两种查询方式. 3. 有横向排列和纵向排列]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用流输出文件下载]]></title>
    <link>http://im.vc/web/asp/2011/0822/62810.html</link>
    <description><![CDATA[% ' 下载文件 function downloadfile(fullpath) downloadfile = false dim strfilename, s, fso, f, intfilelength set fso = server.createobject(scripting.filesystemobject) if not fso.fileexists(fullpath) then exit function end if set f = fs]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文分词和TF]]></title>
    <link>http://im.vc/web/asp/2011/0822/62809.html</link>
    <description><![CDATA[中文分词(Chinese Word Segmentation)指的是将一个汉字序列切分成一个一个单独的词。中文分词是文本挖掘的基础，对于输入的一段中文，成功的进行中文分词，可以达到电脑自动识别语句含]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP自动检测创建多级目录,fso与stream生成文件函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62807.html</link>
    <description><![CDATA[% ' 网站根目录 const global_default_root_path = / ' 描述: 建立目录的程序，如果有多级目录，则一级一级的创建 ' 作者: xiaoyuehen ' 日期: 2006-6-3 ' 参数: strlocalpath : string, 创建路径, 必须为物理]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:getIMG()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62806.html</link>
    <description><![CDATA[目前还是有BUG的,最新的测试页面在: http://www.reallydo.com/getimg.asp 正则分析页面在: http://jorkin.reallydo.com/article.asp?id=380 发现BUG请在后面留言,谢谢. 1.31修正 src=后面有空格不能正确匹配.已修]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[借用hosts轻松破解阻止外部提交]]></title>
    <link>http://im.vc/web/asp/2011/0822/62805.html</link>
    <description><![CDATA[一、文件准备 本例准备两个文件index.htm和submit.asp，index.htm在本地服务器中，submit.asp在服务器根目录中。 index.htm代码： 程序代码 form id=form1 name=form1 method=post action=http://www.abc.com]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+ADO关于DBF数据库连接字符串的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62803.html</link>
    <description><![CDATA[asp交流群二14725152里一同学说DBF连接路径有问题，由于对DBF了解很少，仅限于VF开发的时候知道那么一点点基础知识，本地测试、远程测试的确发现数据库路径判断有问题，一通MSDN，百]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:LastDay()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62802.html</link>
    <description><![CDATA[程序代码 % '功能:判断一个值是否存在于数组 '来源:http://www.knowsky.com/asp.asp Function InArray( sValue, aArray ) Dim x InArray = False For Each x In aArray If x = sValue Then InArray = True Exit For End If Next End Func]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用FCKEditor的设置技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62800.html</link>
    <description><![CDATA[1、默认语言 打开fckconfig.js文件（相对FCKeditor文件夹，以下同），把自动检测语言改为不检测，把默认语言改为简体中文： 程序代码 FCKConfig.AutoDetectLanguage = false ; FCKConfig.DefaultLanguage]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:CheckBoxScript()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62799.html</link>
    <description><![CDATA[程序代码 % '功能:用来在指定CheckBox的哪几个值上打勾 '来源:http://www.knowsky.com/asp.asp Function CheckBoxScript(ByVal FormElement , ByVal ElementValue) CheckBoxScript = scr ipt language=javascript type=text/Ja]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp文件操作函数集]]></title>
    <link>http://im.vc/web/asp/2011/0822/62798.html</link>
    <description><![CDATA[% '===============asp 文件操作函数集1.0版本========================= ' 整理作者： 张辉 ' 程序员代号：WJ008 ' 整理时间：2008年 6 月 1 日 ' 关注地址：www.wj008.net ' 所有函数使用的文件地址 全部使]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:Str4Js()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62797.html</link>
    <description><![CDATA[程序代码 % '功能:定义转换为javascript字符串输出(约定Javascript中，用单引号引用字符串) '来源:http://www.knowsky.com/asp.asp Function Str4Js(sString) Str4Js = sString If IsNull(sString) Then Str4Js = : Exit F]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学习动网论坛，conn.asp相关知识点总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62795.html</link>
    <description><![CDATA[多年前就开始学习asp写过的程序非常少，现决定从分析优秀的程序源码来提高自己的编程水平。 '设置ASP的编程语言为VBScipt 代码页为GB2312 %@ LANGUAGE = VBScript CodePage = 936% '强制变量声明，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数:WriteLn() PrintLn()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62794.html</link>
    <description><![CDATA[程序代码 % '功能:输出字符串加换行 '来源:http://www.knowsky.com/asp.asp Function WriteLn(sString) Response.Write( sString vbCrLf ) End Function % 程序代码 % '功能:输出字符串加HTML代码br / '来源:http://www.know]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用带验证的XFire(soap Header)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62792.html</link>
    <description><![CDATA[% 'response.ContentType = text/html 'Response.Charset = utf-8 url = http://172.17.99.94:8080/rishis/services/QueryService soapUserName = ris soapPassWord = tzyyage542 SoaPRequest=?xml version=CHR(34)1.0CHR(34) encoding=CHR(3]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己写的一个asp.net]]></title>
    <link>http://im.vc/web/asp/2011/0822/62790.html</link>
    <description><![CDATA[using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; //文章]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access转MS SqlServer的注意事项]]></title>
    <link>http://im.vc/web/asp/2011/0822/62789.html</link>
    <description><![CDATA[1、自动增加字段需要重写。在access中经常使用的自动编号字段，导入到mssql后，他并不是自增型的int，需要手工设置，把导入后的自动编号字段的标识的“否”改为“是”，“种子”和]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[时间加减 时间比较 获取前一天时间]]></title>
    <link>http://im.vc/web/asp/2011/0822/62788.html</link>
    <description><![CDATA[4．(convert(varchar(10),getdate(),120)) 这句话是什么意思? 这是一个convert函数 函数的括号里包括三个参数 参数1:值类型 ---- varchar(10) 参数2:值内容 ---- getdate() 参数3:值格式 ---- 120 格式120 对应的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设置ASP缓存的几条重要语句]]></title>
    <link>http://im.vc/web/asp/2011/0822/62787.html</link>
    <description><![CDATA[设置asp缓存的几个语句 1.application变量 一般采用缓存变量：application(变量名)=[变量值] 将这些语句放在网站根目录下的global.asa中即可取到全局变量。 2.Buffer Buffer 属性指示是否缓冲页输]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP缓存技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/62786.html</link>
    <description><![CDATA[使用asp中的缓存技术可以很大程度上提高你的网站性能，其实这些实现方法是非常的简单，它将说明如何在服务器上的缓存是如何工作以及你如何使用一种被称为断开连接的ADO连接技术]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用XSL和ASP实现XML文档在线编辑]]></title>
    <link>http://im.vc/web/asp/2011/0822/62785.html</link>
    <description><![CDATA[本文通过一个详细的例子，来阐述了在线编辑xml文档数据的方法。由于Netscape对XML的支持比较弱，因此，要实现跨平台的数据交换，数据的处理必须在服务器端进行。要编辑XML文档，首]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[winform窗体传值小结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62784.html</link>
    <description><![CDATA[1 用属性传值 (子窗体) PRivate ArrayList arrlOut; public ArrayList arrlIn//要用pulibc { set { this .arrlOut= value;//这里不能用arrlIn而要单独声明一个变量 } get { return this .arrlOut; } } (主窗体,由它向子窗体传]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初步接触ASP缓存技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/62783.html</link>
    <description><![CDATA[使用asp中的缓存技术可以很大程度上提高你的网站性能，其实这些实现方法是非常的简单，它将说明如何在服务器上的缓存是如何工作以及你如何使用一种被称为断开连接的ADO连接技术]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP在线解压zip文件以及采集gzip压缩的页面的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62782.html</link>
    <description><![CDATA[由于winrar的命令行工具不支持zip格式的文件，所以我选择了7z的命令行工具7za.exe,在百度搜索下就可以找到 在使用下面的代码前把cmd.exe(windows文件夹下有)和7za.exe拷贝到asp程序目录 代码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp缓存技术,提高asp承载能力]]></title>
    <link>http://im.vc/web/asp/2011/0822/62780.html</link>
    <description><![CDATA[一、什么是asp缓存/为什么要缓存 其实当你的web站点采用asp技术建立的初期，可能会感觉到的是asp动态网页技术带来的便利性，以及随意修改性、自如的http控制。但随着访问量的增加，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp写的openid登录方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62779.html</link>
    <description><![CDATA[以前好像看到sipo说asp写openid有些不能解决的问题，我也没查openid的规范。 这个对付简单的登录还是没问题的，不过代码还没测试。 先放上来，有兴趣的可以看看 script language=JScript]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个asp缓存函数，支持字符串和数组]]></title>
    <link>http://im.vc/web/asp/2011/0822/62778.html</link>
    <description><![CDATA[主函数 程序代码 % '*********************************************** '函数名：getcache '作 用：将需要缓存的内容，置入缓存中，并读取出来，如果缓存中存在该内容，则直接从缓存读取！ '作 者:]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈ACCESS数据库技术的2种分页核心思想]]></title>
    <link>http://im.vc/web/asp/2011/0822/62777.html</link>
    <description><![CDATA[access分页技术思想A： 程序代码 select top 分页数 * from 表 where 主键 not in (select top 第几页*分页数 主键 from 表 where 过滤条件) ACCESS分页技术思想B： 程序代码 select top 页大小 * from 表1 whe]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无法更新ACCESS数据库的故障解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62776.html</link>
    <description><![CDATA[前几天电脑中毒了（很鄙视那些造毒者--给程序员抹黑），重装系统写程序突然发现好好的代码没有问题 ,在以前上都可以,现在数据库只能进行读操作，修改、更新、插入都有问题 ---]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp各种进制相互转换函数大全]]></title>
    <link>http://im.vc/web/asp/2011/0822/62775.html</link>
    <description><![CDATA[程序代码 % a=26 b=11010 c=26 d=00100110 e=26 f=010110 g=26 h=1A j=26 k=32 l=26 m=46 response.Write(cBit(a)) response.Write(br) response.Write(cDec(b)) response.Write(br) response.Write(HcB(c)) response.Write(br) response.Write(B]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP将两个数组合并为一个数组函数 array_merge()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62774.html</link>
    <description><![CDATA[% ' Copyright (c) 2009, reusablecode.blogspot.com; some rights reserved. ' ' This work is licensed under the Creative Commons Attribution License. To view ' a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or ' send]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP字符串加密函数EncryptText()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62773.html</link>
    <description><![CDATA[% 'asp 字符串加密函数EncryptText() 'strEncryptionKey:加密key字符串，用以区别不同模块加密算法 'strTextToEncrypt:欲加密字符串 Function EncryptText(ByVal strEncryptionKey, ByVal strTextToEncrypt) Dim outer, inner]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP几个实现与PHP相同功能的同名函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62772.html</link>
    <description><![CDATA[% function htmlspecialchars(someString) htmlspecialchars = replace(replace(replace(replace(someString, amp;, ), , ), , ), , ) end function function htmlspecialchars_decode(someString) htmlspecialchars_decode = replace(rep]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Ping通知Feed烧制中心更新]]></title>
    <link>http://im.vc/web/asp/2011/0822/62771.html</link>
    <description><![CDATA[ping，操作系统里基本的一个小工具，正宗的解释是“用来侦测网络上的远端主机是否存在，并判断网络状况是否正常的网络侦测工具”。 这里提到的ping仅仅是一个对用户公开的简单的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP函数 随机输出数组中元素Shuffle()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62770.html</link>
    <description><![CDATA[% Sub Shuffle (ByRef arrInput) 'declare local variables: Dim arrIndices, iSize, x Dim arrOriginal 'calculate size of given array: iSize = UBound(arrInput)+1 'build array of random indices: arrIndices = RandomNoDuplicates(0, iSize-1, iSize)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP正则匹配URL的正确性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62769.html</link>
    <description><![CDATA[Function iswww(strng) iswww = false Dim regEx, Match Set regEx = New RegExp regEx.Pattern = ^(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%:/~\+#]*[\w\-\@?^=%/~\+#])?$ regEx.IgnoreCase = True Set Match = regEx.Execute(strng) if]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数组全集，多维数组和一维数组]]></title>
    <link>http://im.vc/web/asp/2011/0822/62768.html</link>
    <description><![CDATA[asp数组是比较好用的装载大量数据的容器。 1、定义数组 有两种方式：DIM和REDIM。 DIM定义的是固定个数、数据类型的数组；而REDIM则不同，它可以定义不同类型的数据，也可以定义个数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP动网早期一些比较常用的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62767.html</link>
    <description><![CDATA[% ' 判断提交是否來自外部 Public Function ChkPost() Dim server_v1,server_v2 Chkpost=False server_v1=Cstr(Request.ServerVariables(HTTP_REFERER)) server_v2=Cstr(Request.ServerVariables(SERVER_NAME)) If Mid(server_v1,8,len(server_]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Luhn检验数字算法函数 Luhn Check Digit Algorithm Fun()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62766.html</link>
    <description><![CDATA[因为用到信用卡验证，就找了一下，找到以下知识及函数，先普及一下知识： Luhn 检验数字算法（Luhn Check Digit Algorithm，Luhn Algorithm，LUHN Formula） Luhn 检验数字算法（Luhn Check Digit Algori]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 防XSS注入函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62765.html</link>
    <description><![CDATA['************************************* '防XSS注入函数 更新于2009-04-21 by evio '与checkstr()相比, checkxss更加安全 '************************************* Function Checkxss(byVal ChkStr) Dim Str Str = ChkStr If IsNull(Str) The]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Dictionary对象使用小结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62764.html</link>
    <description><![CDATA[Dictionary 对象 Dictionary 对象用于在结对的名称/值中存储信息（(等同于键和项目）。Dictionary 对象看似比数组更为简单，然而，Dictionary 对象却是更令人满意的处理关联数据的解决方案。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获取Access所有数据表的sql语句]]></title>
    <link>http://im.vc/web/asp/2011/0822/62763.html</link>
    <description><![CDATA[可能很多在使用access的朋友都没有打开过Access的系统内置表，这篇文章可以帮助大家简单了解下系统内置表。 程序代码 %sqlcmd=select name from [msysobjects] where type=1 and flags=0% 用这条语句就]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP一个实用的字符串、数组输出函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62762.html</link>
    <description><![CDATA[asp对于一般的字符串输出，使用内置对象的Response.Write即可，但对于数组的输出就显得有些力不从心了，下面这个函数就可以解决这个问题，虽然很简单的函数，但对于调试或者数组输]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP字符串操作的集中解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62761.html</link>
    <description><![CDATA[在无忧脚本上看到的《面试官的变态出题 asp字符串操作！》，发上来，以开拓思路。 引用内容 现有两个字符串： a=“abcde” b=“12345” 1.请编写一组自定义函数，将上面两个字符串转换]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP正则匹配img标签]]></title>
    <link>http://im.vc/web/asp/2011/0822/62760.html</link>
    <description><![CDATA[可以模仿QQ空间里有图片的话就在标题后显示有附件的图片 asp/Visual Basic代码： 程序代码 % '*************************************************** '*函数名 : GetImgFromContent '*参数说明 ： html 被提取的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP绝对保证上传图片安全的图片检测函数 ChkImg()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62759.html</link>
    <description><![CDATA[% '------------------------------------------- '函数名：ChkImg '作 用：检查图片文件是否合法 '参 数：img，图片路径，相对于网站根目录的绝对路径 '返回值：布尔类型，如果图片合法返回True,否则]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Split将字符串转换为数组并正确获取数组下标值函数UBoundStrToArr()]]></title>
    <link>http://im.vc/web/asp/2011/0822/62758.html</link>
    <description><![CDATA[1.检测右侧是否存在间隔字符串，如果存在则需要将数组最大下标值减一 2.如果不存在则直接返回原数组最大下标 程序代码 % Dim TempStr,TempArr,TempItem TempStr=第一项1|第二项1|第三项| Tem]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+JS实现登陆用户到规定时长强制退出]]></title>
    <link>http://im.vc/web/asp/2011/0822/62757.html</link>
    <description><![CDATA[题目：实现用户登陆后15分钟之后强制退出。 思路： 用JS写一个当前时间与登陆时间对比的方法。当两时间分钟值相减大于15时，那就用location.href跳转到退出的asp页面。 疑问：怎样实现]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP比较常用的缓存函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62756.html</link>
    <description><![CDATA['缓存时间，单位分钟 Const WebCacheTime = 20 '缓存标示，用于一个空间安装多个系统时使用 Const WebCacheFlag = Cache ' 设置缓存 缓存名，缓存值 Function SetCache(ByVal CacheName, ByVal CacheValue) Dim Ca]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作自定义间隔字符串对应位置数字加减SplitStrAM函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62755.html</link>
    <description><![CDATA[程序代码 % Response.write SplitStrAM(3|2|42|34|23|4,|,2,A) '输出结果为：3|2|43|34|23|4 '************************** '函数名:SplitStrAM '作 用:间隔字符串中某位置加减 '参 数:参数位置从零计 ' NeedStr(需要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库被挂马的ASP处理方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62754.html</link>
    <description><![CDATA[数据库被挂马我相信很多人都碰到过。在这里，我讲下我处理的方法。 第一步：为现有数据库做好备份。 第二步： 执行如下asp文件，这样就可以去掉数据库当中的JS木马： 注：conn.a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[xml缓存类,缓存到XML文件,有例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62753.html</link>
    <description><![CDATA[% Rem xml缓存类 '-------------------------------------------------------------------- '转载的时候请保留版权信息 '作者:╰⑥月の雨╮ '版本:ver1.0 '本类部分借鉴 walkmanxml数据缓存类，使用更为方便 欢迎]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp性能优化之Response.IsClientConnected]]></title>
    <link>http://im.vc/web/asp/2011/0822/62752.html</link>
    <description><![CDATA[Response IsClientConnected 属性可以在asp运行之时，可以对服务端与客气端是否断开连接作出判断并返回true or false。这样也避免用户在访问较占用资源的页面时，因为用户的重新刷新或关闭页]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成输出DOC(Word文件)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62751.html</link>
    <description><![CDATA[% const lie=3 '修改列数 const tablewidth=33% '定义表格的宽度 const tableheight=18% '定义表格的高度 const imgwidth=15% '定义表格的宽度 const imgheight=27.5% '定义表格的高度 const fontsize=12px; '定义]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数组编码ArrayList类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62750.html</link>
    <description><![CDATA[程序代码 % 'Written By Shaoyun Site:www.devjs.com Class ArrayList PRivate m_array() Private m_count Private Sub Class_Initialize() Redim m_array(0) m_count=0 End Sub Private Sub Class_Terminate() Redim m_array(0) m_count=0 End Sub Publi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBS 纯真IP数据库转MDB/MSSQL/MySQL]]></title>
    <link>http://im.vc/web/asp/2011/0822/62749.html</link>
    <description><![CDATA[Function Mappath(n) Mappath=fso.getabsolutepathname(n) End Function Function ipToNum(Ip) IpNs=split(ip,.) IpN=IpNs(0)*S4+IpNs(1)*S3+IpNs(2)*S2+IpNs(3)*S1 if err0 then IpN=0 err.clear IpToNum=IpN End Function S1=256 S2=256*S1 S3=256*S2 S4=]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP一个检测链接是否正常的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62748.html</link>
    <description><![CDATA[% Function urlChk(sUrl) on error resume next Set xmlHttp = Server.CreateObject(Microsoft.xmlhttp) xmlHttp.open GET,sUrl,false xmlHttp.send if xmlHttp.Status 200 then urlChk=false else urlChk=true end if End Function sUrl=http://code.dl]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP快速获取远程文件大小]]></title>
    <link>http://im.vc/web/asp/2011/0822/62747.html</link>
    <description><![CDATA[% '----------------------------------------------------------- '功能：获取远程文件大小 '参数：url 远程文件地址 '返回：远程文件大小(单位：字节) '----------------------------------------------------------- Fu]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP支持嵌套模板和循环标签的模板类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62746.html</link>
    <description><![CDATA[asp Template 类说明 作者：shaoyun Form www.devjs.com 时间：17:05 2008-12-10 ++功能简介 --支持单层循环标签，并可在一个页面类多次使用. --支持引入模板文件，在装载的时候，将进行模板的合并]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP日期函数运用—生成简单的日历]]></title>
    <link>http://im.vc/web/asp/2011/0822/62745.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRipT CODEPAGE=65001% !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml head meta http-equiv=Content-Type co]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个AJAX局部刷新的例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62744.html</link>
    <description><![CDATA[终于睛天了. 一个Ajax局部刷新的例子: 前台页面: %@LANGUAGE=VBSCRipT CODEPAGE=65001% !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP显示日期格式的几个函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62743.html</link>
    <description><![CDATA[% '月份转换到中文 Function MonthToCH(TheMonth) Dim mm mm=split(一,二,三,四,五,六,七,八,九,十,十一,十二,,) If IsNumeric(TheMonth) Then MonthToCH = mm(TheMonth-1) 月份 Else MonthToCH = 月份 End If End Functio]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数字加词缀转成英文序数词]]></title>
    <link>http://im.vc/web/asp/2011/0822/62742.html</link>
    <description><![CDATA[程序代码 % PRivate Function PNum(ByVal number) Dim tmp, ext If IsNumeric( number ) = False Then PNum = Null Else Select Case CInt( Right( number, 2 ) ) Case 11, 12, 13 ext = th Case Else tmp = Right( number, 1 ) Select Case CInt( tmp]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Ajax文本框输入提示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62741.html</link>
    <description><![CDATA[今天我来做一个Ajax文本框输入提示的例子: 前台文件 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml head met]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP纯真格式腾讯qq IP数据库的编码与解码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62740.html</link>
    <description><![CDATA[程序代码 function enaddr(sip)'IP编码 esip=cstr(sip) str1=Left(sip,CInt(InStr(sip,.)-1)) sip=Mid(sip,cint(instr(sip,.))+1) str2=Left(sip,cint(instr(sip,.))-1) sip=mid(sip,cint(instr(sip,.))+1) str3=left(sip,cint(instr(sip,.))]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp判断浏览器及版本号]]></title>
    <link>http://im.vc/web/asp/2011/0822/62739.html</link>
    <description><![CDATA[程序代码 % Dim Agent,Browser,version,tmpstr Agent=Request.ServerVariables(HTTP_USER_AGENT) Agent=Split(Agent,;) If InStr(Agent(1),MSIE)0 Then Browser=MS Internet Explorer version=Trim(Left(Replace(Agent(1),MSIE,),6)) ElseIf]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防范被种ASP木马你需要注意这10点]]></title>
    <link>http://im.vc/web/asp/2011/0822/62738.html</link>
    <description><![CDATA[由于asp它本身是服务器提供的一贡服务功能，特别是最近由dvbbs的upfile文件出现漏洞以来，其高度的隐蔽性和难查杀性，对网站的安全造成了严重的威胁。因此针对ASP木马的防范和清除]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序代码执行时间统计类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62737.html</link>
    <description><![CDATA[实现功能：分段统计程序执行时间、输出统计表等。 类源码： 程序代码 Class ccClsPRocessTimeRecorder '程序作者:明月星光 '作者主页:http://www.5iya.com/blog 'http://www.kuozhanming.com 'asp程序代码执行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Response.AddHeader使用实例收集]]></title>
    <link>http://im.vc/web/asp/2011/0822/62736.html</link>
    <description><![CDATA[文件下载，指定默认名 程序代码 Response.AddHeader(content-type,application/x-msdownload); Response.AddHeader(Content-Disposition,attachment;filename=要下载的文件名.rar); 刷新页面 程序代码 Response.AddHead]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获取代码中第一张图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62735.html</link>
    <description><![CDATA['把pattern 又修改了下 'code要检测的代码 'http://www.devdao.com 'leixing html 或者ubb 'nopic 代码没有图片时默认值 function toppic(code,leixing,nopic) set regex = new regexp regex.ignorecase = true regex.global = true]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中轻松实现变量名－值变换]]></title>
    <link>http://im.vc/web/asp/2011/0822/62734.html</link>
    <description><![CDATA[用过php的朋友都知道，PHP中变量的使用灵活方便，特别是能在字符串中方便实现变量名－值变换，使得整个PHP代码更显简洁优美。比如一条更新数据库的SQL语句只需写成： 程序代码 ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP彻底屏蔽迅雷，旋风，快车下载站内资源]]></title>
    <link>http://im.vc/web/asp/2011/0822/62733.html</link>
    <description><![CDATA[程序代码 % '屏蔽主流的下载工具 Dimxurl,xtool '获取浏览器AGENT xurl=lcase(Request.ServerVariables(HTTP_USER_AGENT)) '定义禁止的AGENT，下面5个包含最新版的快车，旋风和迅雷部分版本，可以自行添加]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何才能在asp中获取文章中的第一张图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62732.html</link>
    <description><![CDATA[比如我做一个新闻发布系统，首页有图片新闻，我想从发布的文章中提取出第一张图片，然后在首页显示。 请高手指导。。。 问题补充：我自己写了一个，大家帮忙找下不足哈。 scr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP时间函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62731.html</link>
    <description><![CDATA[now() 获取当前系统日期和时间,asp输出可以这样写：%=now()% Year(now()) 获取年份， ASP输出：%=Year(now())% Month(now()) 获取当前月份，ASP输出：%=Month(now())% day(now()) 获取当天数，ASP输出：%=day(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp下载防盗链代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62730.html</link>
    <description><![CDATA[asp下载防盗链代码 第一种: 终于对下载系统做了个防盗链措施，在下载的页面头部做了如下代码，相关代码如下： 程序代码 % From_url = Cstr(Request.ServerVariables(HTTP_REFERER)) Serv_url = Cstr(R]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp从一段内容中获取第一张图片的地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62729.html</link>
    <description><![CDATA[% str=img src=images/200610261533.jpgimg src=images/200609151656.jpgimg src=images/200609051735.JPG response.write(GetImgSrc(str)) function GetImgSrc(str) '取得img 标签内容 dim tmp Set objRegExp = New Regexp objRegExp.IgnoreCase]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有趣的ASP的字符串处理函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62728.html</link>
    <description><![CDATA[LEN字串長度函數：計算字串的長度。 函數運算式 結果 len(abcd) 4 len(中文字) 3 len(abc中文) 5 (getdate()) MID取部份字串函數：依開始位置擷取固定長度字串。 函數運算式 結果 mid(vbscript]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句及Recordset记录集对象详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/62727.html</link>
    <description><![CDATA[1. asp与access数据库连接： %@ language=VBscript% % dim conn,mdbfile mdbfile=server.mappath(数据库名称.mdb) set conn=server.createobject(adodb.connection) conn.open driver={microsoft access driver (*.mdb)};uid=admin;pwd=数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Asp中(用正则表达式)获取文章中的图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62726.html</link>
    <description><![CDATA[% dim result,result1 str=adfjlmnnzlkjlkfjoj img src=http://img.knowsky.com/img/logo.jpg border=0 width=100dfkjhdjfk set re=new regexp re.ignorecase=true re.global=true re.pattern=img [^]*src=([^]+)[^]+ set m=re.execute(str) fo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让asp立即输出缓存(Response.flush),实时显示进度]]></title>
    <link>http://im.vc/web/asp/2011/0822/62725.html</link>
    <description><![CDATA[摘 要：写程序的人在编写由asp页面生成静态页面html的时候，如果同时生成大量页面，一定遇到过浏览器下方的进度条上显示着3%，6%，10%等缓慢增长的漫长等待过程。如果你知道Respon]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语法使Access数据库在线升级]]></title>
    <link>http://im.vc/web/asp/2011/0822/62724.html</link>
    <description><![CDATA[做为数据库升级程序就写了几行SQL语句，仅实现了数据库升级功能而已，功能很单一......（请大家见谅，多提意见！！！）这里特此贴出源码做简单解释，供有此应用者共同研究。 程序]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中怎样获取某表内容中所有图片？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62723.html</link>
    <description><![CDATA[% '如何过滤图片的函数 function find_img(strtemp) '测试时间 2006-7-7 下午(没有风扇的情况下-_-!!通过测试) strtemp=ssssimg alt=sss src=http://www.test.com/test.jpg /img alt=sss src=http://www.test.com/]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ISAPI Rewrite软件实现IIS图片防盗链]]></title>
    <link>http://im.vc/web/asp/2011/0822/62722.html</link>
    <description><![CDATA[为了实现网站上面的图片防盗链，根据网络上搜集的资料加上自己的实践，终于实现了iis下的图片防盗链功能。 实施步骤： 1.下载比较出名的www.helicontech.com提供的ISAPI Rewrite软件的免费]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp用正则表达式替换HTML源文件里的链接地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62721.html</link>
    <description><![CDATA[content=ullia href=pic_list_mb.asp?id=1page=2音乐之声明星壁纸/a/lilia href=pic_list_mb.asp?id=32page=1音乐之声明星壁纸/a/li/ul 想把content的内容变成 content=ullia href=pic_list_1_2.html音乐之声明星壁纸/a/li]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp年月日灵活日期格式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62720.html</link>
    <description><![CDATA[注：这篇文章写给有一定asp编程基础的初学者！ 5.1长假和网友小爱（一个梦想成为程序员的PLMM ^_^）交流asp编程技术，她问起日期格式设定的问题，例如：2005-1-1想变成2005-01-01或者200]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp正则表达式 要求只能输入整数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62719.html</link>
    <description><![CDATA[只能匹配整数，不包括小数点、字母、汉字等.. 用来验证QQ的。 问题补充：我输入小数点也照样接收...麻烦改改 回 阳光上的桥 试了，123456.7 照样通过 function checknum(theform) { if (theform.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+fso操作文件例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62718.html</link>
    <description><![CDATA[%@ CODEPAGE=936% !--#include file=conn.asp -- %photoID=request(photoID) sql=select photoFileName from TBL_PHOTO where photoID=photoID set rs=conn.execute(sql) if not rs.eof then Set objfso = Server.CreateObject(Scripting.FileSystem]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP伪静态页简单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62717.html</link>
    <description><![CDATA[不需要通过iis+ISAPI_Rewrite做基于IIS的url rewrite 一、数据库很简单使用access，Data.mdb建立一个表Article，三个字段：ID，Title，Content；自动编号、标题、文章内容。 二、Config.asp 程序代码 %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp文件自动提交表单功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62716.html</link>
    <description><![CDATA[1.asp 程序代码 body table width=200 border=0 cellspacing=0 cellpadding=0 form name=login method=post action=2.asp tr td width=60用户名：/td tdinput name=username type=text id=username value=55 size=20/td /t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现在线压缩与解压缩]]></title>
    <link>http://im.vc/web/asp/2011/0822/62715.html</link>
    <description><![CDATA[一、问题的提出 随着互连网的发展，网站的数量以惊人的数字增加。网站的作用除了给广大网友们提供信息资讯服务外，还应该成为网友们上传与下载文件的场所。在上传与下载文件的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中VBScript常用函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62714.html</link>
    <description><![CDATA[这是第五部分:asp中VBScript常用函数 /*-----------------------ASP中VBScript常用函数---------------------*/ *--判断类函数: Isarray():判断是否为一个数组 Isdate():判断是否是时间类型的数据.时间类型的数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Response.Buffer缓存在ASP中轻松实现:正在加载数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62713.html</link>
    <description><![CDATA[只用asp的话，可以利用response的缓存特性，大致上以这种方式来处理： 首先设置 Response.buffer=true '开启缓存 然后 Response.Write div id=loading数据正在加载中..../div '先写入提示 Response.flu]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止ASP下载的终极方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62712.html</link>
    <description><![CDATA[自从搞asp+access没少为避免数据库下载而伤过神，网上的奇淫技巧更是数不胜数，本文就是同大家共同探讨各路前辈的留下的秘笈并指中其中的优劣，最后为大家提供一种最佳的解决方案]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中文数字验证码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62711.html</link>
    <description><![CDATA[html代码： form method=post name=myform 姓 名：input type=text name=name value=br 学 号：input type=text name=num value=br 。。。：input type=text name=aaa value=br 。。。：input type=text name=bbb v]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp创建sql数据表及相关操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/62710.html</link>
    <description><![CDATA[conn.execute(Create table user(id AUTOINCREMENT(1,1),PRimary key(id))) 为什么没反映? 用asp怎么能创建SQL表?创建字段,删除字段,删除表 首先，不知道你要连接的数据库是不是MS SQL SERVER，如果是的话，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[经典详细ASP的SQL语句]]></title>
    <link>http://im.vc/web/asp/2011/0822/62709.html</link>
    <description><![CDATA[以下为例，实际有很多用发怎么用？呵呵，后台呀，执行SQL语句 ------------------------------------------------------------------------------------------- 先说明两种数据库的连接代码： 连接SQL数据库的代]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp统计各搜索系统的蜘蛛排行]]></title>
    <link>http://im.vc/web/asp/2011/0822/62708.html</link>
    <description><![CDATA[% '网页立即超时，防止漏统计 Response.Expires = 0 '客户端软件使用情况 Bot=no thesoft=Request.ServerVariables(HTTP_USER_AGENT) thesoft2=lcase(thesoft) if instr(thesoft2,bot) then Bot=其它蜘蛛 if instr(thesoft2]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP创建ACCESS表或添加字段]]></title>
    <link>http://im.vc/web/asp/2011/0822/62707.html</link>
    <description><![CDATA[创建一张空表： Sql=Create TABLE [表名] 创建一张有字段的表： Sql=Create TABLE [表名]([字段名1] MEMO NOT NULL, [字段名2] MEMO, [字段名3] COUNTER NOT NULL, [字段名4] DATETIME, [字段名5] TEXT(200), [字段名]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASPJPEG添加水印的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62706.html</link>
    <description><![CDATA[这些天研究了一下asp的自动添加图片水印的方法。 因为原先我的图片总是被盗链，因此我使用程序将图片增加了水印，然而我查看了一下昨天和今天的网站日志记录，发现我的图片依旧]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp获取网址相关参数大全]]></title>
    <link>http://im.vc/web/asp/2011/0822/62705.html</link>
    <description><![CDATA[代码一：【获取地址中的文件名，不包含扩展名】 % dim Url,FileName,File Url=split(request.servervariables(script_name),/) FileName=Url(ubound(Url)) File=Left(FileName,InstrRev(FileName,.)-1) Response.Write 文件名：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+ajax中文编码问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62704.html</link>
    <description><![CDATA[使用Ajax获取服务器数据返回给客户端，出现中文乱码。在之前的一个ajax应用中指定codepage=936，将所有页面编码都指定为GB2312即可解决。 这次的应用中却无起作用了，经过多次的试验，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp正则表达式 替换HTML源文件里的链接地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62703.html</link>
    <description><![CDATA[content=ullia href=pic_list_mb.asp?id=1page=2音乐之声明星壁纸/a/lilia href=pic_list_mb.asp?id=32page=1音乐之声明星壁纸/a/li/ul 想把content的内容变成 content=ullia href=pic_list_1_2.html音乐之声明星壁纸/a/li]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JPEG图片处理基本方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62702.html</link>
    <description><![CDATA[% Set Jpeg = Server.CreateObject(Persits.Jpeg) 调用组件 Path = Server.MapPath(images) \clock.jpg 待处理图片路径 Jpeg.Open Path 打开图片 高与宽为原图片的1/2 Jpeg.Width = Jpeg.OriginalWidth / 2 Jpeg.Height = Jpeg.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Response.Flush()的注意事项]]></title>
    <link>http://im.vc/web/asp/2011/0822/62701.html</link>
    <description><![CDATA[在网上找了些资料，主要提到的是 Flush的内容至少要有256字节 很多时候我们写的asp程序会因为做很多操作，所以会花上一分钟甚至几分钟时间。为了使软件使用者能够耐心的等待程序的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[response.buffer=true | response.buffer=? |是什么？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62700.html</link>
    <description><![CDATA[不知道大家对Buffer了解多少，很多人对这个概念都比较模糊，尤其是在asp中。很多初学者在编写asp程序时很少用到这条语句，下面我就来说说Buffer的用途以及它在asp程序中的作用。 一、]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断代理IP访问ASP页面代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62699.html</link>
    <description><![CDATA[Dim FY_ip FY_IP=LCase(Request.ServerVariables(ALL_HTTP)) If Instr(FY_IP,PRoxy)0 or Instr(FY_IP,http_via)0 or Instr(FY_IP,http_pragma)0 or Request.ServerVariables(HTTP_PROXY_CONNECTION) or Request.ServerVariables(HTTP_VIA) ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ACC数据库ASP随机读取N条数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62698.html</link>
    <description><![CDATA[以下的代码仅仅是例子，大家如果有需要的话就根据这个例子进行修改使用！ 一般来说，ACC是足够应付站点的，除非是你非常大型，不然ACC还是非常不错的！ 程序代码 % dim sjtop,Aa,le]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[链接EXECL文件【可以制作导入功能】]]></title>
    <link>http://im.vc/web/asp/2011/0822/62697.html</link>
    <description><![CDATA[程序代码 % dim conn set conn=server.createobject(adodb.connection) conn.open driver={Microsoft Excel Driver (*.xls)};DBQ=server.mappath(execl.xls) dim rs set rs=conn.execute(select * from [Sheet1$]) % 特别点：数据表后面要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP类的写法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62696.html</link>
    <description><![CDATA[% Class myClassName PRivate int_ID '分类id '类初始化 Private Sub Class_Initialize() m_strError = End Sub '类释放 Private Sub Class_Terminate() m_strError = End Sub '-----读写各个属性--------------------------- Public Pr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP服务器简单探针]]></title>
    <link>http://im.vc/web/asp/2011/0822/62695.html</link>
    <description><![CDATA[程序代码 本文件ip路径：%=http:// request.servervariables(server_name)request.servervariables(script_name) % 本机ip:%=request.servervariables(remote_addr)% 服务器名:%=Request.ServerVariables(SERVER_NAME)% 服务器I]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp无组件生成缩略图]]></title>
    <link>http://im.vc/web/asp/2011/0822/62694.html</link>
    <description><![CDATA[首先，我们知道在页面中显示图片是如下代码： img src=pic.gif border=0 width=300 height=260 src是图片路径，border控制图片边缘宽度，width是图片的长度，height是图片的高度。缩略图的生成]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP错误解释]]></title>
    <link>http://im.vc/web/asp/2011/0822/62693.html</link>
    <description><![CDATA[建议大家收藏起来，会用到的 对初学者们有帮助,或许高手也会忘记,asp错误大全 MicrosoftVBScript语*错误(0x800A03E9)--内存不足 MicrosoftVBScript语*错误(0x800A03EA)--语*错误 MicrosoftVBScript语*错误(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现文章置顶功能和取消置顶功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62692.html</link>
    <description><![CDATA[设你这个字段，如果置顶的话，newstop为1 否则为0，那先对 newstop 排序，在对newsID 排序，则： select ... from...order by newstop desc,newsID desc]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[强力防SQL注入]]></title>
    <link>http://im.vc/web/asp/2011/0822/62691.html</link>
    <description><![CDATA[很久之前收集的，非常不错，不然也不会发给大家，呵呵！ 程序代码 % '防注入系统 dim bqs,berrc,biii,burl bqs=request.servervariables(query_string) If Request.ServerVariables(HTTPS) = off Then bUrl = http]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无惧缓存类 V1.0]]></title>
    <link>http://im.vc/web/asp/2011/0822/62690.html</link>
    <description><![CDATA[' 用途:用于常用数据的缓存,以减少执行,加快速度,但是由于使用application来存贮数据,有可能对服务器造成负担 ' 类名 Cache_Class ' 方法 NoCache(函数名,关键字) 测试该缓存是否有效 ' 属性]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中使用js的encodeURIComponent方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62689.html</link>
    <description><![CDATA[大家知道，在js里encodeURIComponent 方法是一个比较常用的编码方法，但因工作需要，在asp里需用到此方法，查了好多资料，没有很好的方法，最后用了下面这个方法，基本解决了问题。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp模板引擎]]></title>
    <link>http://im.vc/web/asp/2011/0822/62688.html</link>
    <description><![CDATA[关键词:asp 模板 摘要: 阐述一种全新的ASP模板引擎,实现代码(逻辑)层与HTML(表现)层的分离.这种模板实现方法避免了一 般ASP模板加载模板文件(加载组件)和替换所浪费的资源,实现编译型的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP最新SQL防注入过滤涵数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62687.html</link>
    <description><![CDATA[function checkstr(str) if isnull(str) then checkstr = exit function end if str = replace(str,chr(0),, 1, －1, 1) str = replace(str, , , 1, －1, 1) str = replace(str,；,；, 1, －1, 1) str = replace(str,；,；, 1, －]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP接收Ajax 在POST方式下发送的escape编码中的个别乱码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62686.html</link>
    <description><![CDATA[看代码： var xmlhttp=getHTTPObject(); var post=test·test+test·; xmlhttp.open('POST', 'test.asp?random='+Math.random(), true); xmlhttp.setrequestheader(content-length,post.length); xmlhttp.setRequestHeader(Content-Type,applicati]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL存储过程初探]]></title>
    <link>http://im.vc/web/asp/2011/0822/62685.html</link>
    <description><![CDATA[首先：建立一个简单的存储过程： create PRocedure viewdata as begin select uname from users end 然后，在查询分析器里运行，在数据库存储过程里，多了一个viewdata 下面用asp来调用它： CONN文件（连]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS7 的新功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62684.html</link>
    <description><![CDATA[在过去几周里，IIS团队发布了3个IIS扩展更新 l URL Rewrite Module CTP1 l application Request Routing CTP1 l PowerShell PRovider CTP2 URL Rewrite Module URL Rewrite Module是一个基于规则的URL重写引擎，用于在URL被]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp执行出错，如何跳过错误到错误页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/62683.html</link>
    <description><![CDATA[使用 % on error resume next '执行过程 .... if err.number 0 then resonse.redirect 错误页面.htm end if %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面防御asp网站防黑客攻击]]></title>
    <link>http://im.vc/web/asp/2011/0822/62682.html</link>
    <description><![CDATA[############################################## 本文所有代码版权归属[雨浪]，转载请声明 ############################################## asp最脆弱的不是技术，而是防范黑客攻击 而无论怎样攻击，就两点 通]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP伪造REFERER]]></title>
    <link>http://im.vc/web/asp/2011/0822/62681.html</link>
    <description><![CDATA[代码: % Function GetBody(weburl) Set Retrieval = Server.CreateObject(MSxml2.xmlhttp) With Retrieval .Open Get, weburl, False, , .setRequestHeader referer,http://www.devdao.com/'想改什么就改什么 .Send GetBody = .Respon]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp处理xml数据的发送、接收类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62680.html</link>
    <description><![CDATA[本asp类可以用来处理xml包的发送与接收。可用于各种异构系统之间API接口间通讯，以及处理Web Service的调用与接收。 属性： URL : 发送xml的接收地址 String 只写 Message : 系统错误信息 Str]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现IE地址栏参数的判断]]></title>
    <link>http://im.vc/web/asp/2011/0822/62679.html</link>
    <description><![CDATA[在服务器端asp程序可以接受html页面上的form传来的参数，那么它又如何实现IE地址参数判断呢？ 当地址栏没有参数＂id＂时： 以下是引用片段： Request.QueryString[ID] == null Convert.ToString(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP,PHP与.NET伪造HTTP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62678.html</link>
    <description><![CDATA[HTTP-REFERER这个变量已经越来越不可靠了，完全就是可以伪造出来的东东。 以下是伪造方法： asp: dim http set http=server.createobject(MSxml2.xmlhttp) '//MSXML2.serverXMLHTTP也可以 Http.open GET,url,fals]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把网页中的电话号码生成图片的ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62677.html</link>
    <description><![CDATA[作用：用asp程序将页面中的电话号码生成图片格式。 以下是引用片段： % Call Com_CreatValidCode(Request.QueryString(tel)) Public Sub Com_CreatValidCode(pTel) '----------禁止缓存 Response.Expires = 0 Response.A]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于windows 2003 iis 6.0 asp无法连接access数据库的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62676.html</link>
    <description><![CDATA[关于windows 2K3 (2003) iis 6.0 asp 无法连接 access 数据库的解决方法： 我的主机上最近出现了这个奇怪的问题，asp代码别的服务器上运行很正常，移到我的win2003下就连接access错误，但其它的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动清除替换ACCESS(MDB)数据库的日文字符的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62675.html</link>
    <description><![CDATA[我们都知道access是asp的亲密伙伴。因为两种最简单的东西碰在一起总能迸发出火花。 然而，当我们过滤不严格的时候经常出现日文字符，这个时候搜索之后就会出现日文溢出。 此时我]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解Access数据库在线压缩的实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62674.html</link>
    <description><![CDATA[如果在 access 数据库中删除数据或对象，或者在 Access 项目中删除对象，Access 数据库或 Access 项目可能会产生碎片并会降低磁盘空间的使用效率。压缩 Access 数据库或Access项目实际上是复]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[rs.open与conn.execute详细解释]]></title>
    <link>http://im.vc/web/asp/2011/0822/62673.html</link>
    <description><![CDATA[1. RS.OPEN SQL,CONN,A,B,C 2. CONN.EXECUTE(SQL,RowsAffected,C) 参数含义: SQL的值可以是SQL语句、表名、存储过程名，也可以是数据提供者所能接受的任意字符串。为了提高性能，最好为C参数指定合适]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP对网页进行限制性的访问]]></title>
    <link>http://im.vc/web/asp/2011/0822/62672.html</link>
    <description><![CDATA[要使用request对象的ServerVariables属性，通过它来获得环境变量的值。使用的语法为：Request.ServerVariables(variable)，“variable”表示环境变量的名称，如服务器主机名称、Web服务器软件名等等]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[conn.execute的用法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62671.html</link>
    <description><![CDATA[conn.execute、rs.open之间的差别conn.execute、rs.open、command.execute方法用法大大不同 通常形成记录集可以使用 Set rs=conn.execute(SQL) 或直接 rs=CONN.execute(SQL) 和 Set rs=Server.CreateObject(ADODB.Recordset]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站Server object error的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62670.html</link>
    <description><![CDATA[症状： 访问asp网页的时候出现如下错误: Server object error ''ASP 0178 : 80070005'' Server.CreateObject access Error /_fpclass/fpdbrgn1.inc, line 99 The call to Server.CreateObject failed while checking permissions. Access is]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp将数据导入excel后，中文出现乱码？？怎么解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62669.html</link>
    <description><![CDATA[问：asp将数据导入Excel后，中文出现乱码？？怎么解决 !--#include file=function/connect.asp -- !--#include file=function/function.asp -- % Response.Charset = UTF-8 '前面包含的文件是和来链接到数据库,你要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透彻掌握ASP分页技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/62668.html</link>
    <description><![CDATA[看看功能：分页程序首先读取每页预置的记录条数，在此是5条，其它将在下页中显示，同时提示当前页数、总页数、总记录数，当显示的页数为第一页时，“首页”、“上一页”链接失]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何判断conn.Execute成功 或失败？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62667.html</link>
    <description><![CDATA[代码： % dim sql sql=select * from table on error resume next conn.execute(sql) if err.number=0 then Response.Write 成功！ else Response.Write 失败 end if %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现从SQL Server导出数据到Access或Excel文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62666.html</link>
    <description><![CDATA[前段时间，我在网上发出过这样的问题，现在已经得到解决，现将代码共享， 希望对IntranetMIS爱好者有所帮助 方法其实很简单：需要在SQL Server连接中嵌套一个access连接，然后逐条 写入]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分页显示Recordset数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62665.html</link>
    <description><![CDATA[1．建立Recordset对象 Dim objMyRst Set objMyRst=Server.CreateObject(“ADODB.Recordset”) objMyRst.CursorLocation=adUseClientBatch ‘客户端可批量处理 objMyRst.CursorType=adOpenStatic’光标类型为静态类型 注意：Reco]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[新手学堂：rs.open与conn.execute详细解释]]></title>
    <link>http://im.vc/web/asp/2011/0822/62664.html</link>
    <description><![CDATA[1. RS.OPEN SQL,CONN,A,B,C 2. CONN.EXECUTE(SQL,RowsAffected,C) 参数含义: SQL的值可以是SQL语句、表名、存储过程名，也可以是数据提供者所能接受的任意字符串。为了提高性能，最好为C参数指定合适]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现SQL语句日期格式的加减运算]]></title>
    <link>http://im.vc/web/asp/2011/0822/62663.html</link>
    <description><![CDATA[今天在工作中遇到了一个问题，需要按时间查询，可是查询出来的结果显示的不正确。举个例子来说，要查找出2007-10-12至2007-10-31之间在网站上注册的会员，选择好日期后，点击“查询]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分页代码的学习]]></title>
    <link>http://im.vc/web/asp/2011/0822/62662.html</link>
    <description><![CDATA[% '****************************************************************** '** 本程序名：无限流分页程序 '** 作者：Arbiter(AAsx) '** 版本：Million Level '** '** QQ：22222xx '** Email：Arbiter@21cn.com '** http://www.imagecit]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学ASP编程易犯的一个错误要注意]]></title>
    <link>http://im.vc/web/asp/2011/0822/62661.html</link>
    <description><![CDATA[在asp编程中，身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢？ 表单提交页面：sub.htm html head title管理员登陆＜/title body form name=form1 method=post action=sub.asp p 管理员]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[装完IIS后测试出现:不能打开注册表关键字 Temporary (volatile) Jet DSN]]></title>
    <link>http://im.vc/web/asp/2011/0822/62660.html</link>
    <description><![CDATA[第一步：点击“开始”，在“运行”里键入“regedit”，确定 第二步：找到HKEY_LOCAL_MACHINE\SOFTWARE\ODBC，点右键，点权限 第三步：在“ODBC的权限”窗口里如果没有“Internet 来宾帐户”这一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简单的ASP分页代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62659.html</link>
    <description><![CDATA[% set conn=server.createobject(adodb.connection) conn.open(DRIVER=Driver do Microsoft access (*.mdb);UID=admin;pwd=;dbq=server.mappath(1.mdb)) set rs=server.createobject(adodb.recordset) sql=select * from student rs.open sql,conn,]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp获取文件md5值]]></title>
    <link>http://im.vc/web/asp/2011/0822/62658.html</link>
    <description><![CDATA[网上asp加密字符的md5很多，也很普遍，但是对文件进行md5的确很少，因为受到asp语言本身的限制。我们知道字符串的md5可以对明文进行不可逆的加密，从而保证数据储存或者传送的安全]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp操作excel，显示数据及统计方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62657.html</link>
    <description><![CDATA[这次做的活是asp操作Excel，全程序是每行都标出，然后像填空一样做的。现在被我改成了动态显示每行的项，再逐行显示，最后做一个汇总。 1、fso找到excel文件 % Dim fso,folder,file Set fso]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[收集ISAPI_Rewrite的中文资料，URL重写，URL静态化，URL简化]]></title>
    <link>http://im.vc/web/asp/2011/0822/62656.html</link>
    <description><![CDATA[ISAPI_Rewrite是一个强大的基于正则表达式的URL处理引擎。它非常类似于Apache's mod_Rewrite，但它是专为IIS设计的。 ISAPI_Rewrite有两个版本：ISAPI_Rewrite Full与ISAPI_Rewrite Lite。 ISAPI_Rewrite Lite是免]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实践xml缓存技术构建高性能web站点]]></title>
    <link>http://im.vc/web/asp/2011/0822/62655.html</link>
    <description><![CDATA[打造一个高性能稳定的web站点一直是站长和程序员的梦想，本文用作者的一次亲身经历的来说说如何利用xml缓存技术实现站点的高性能。我是从今年开始做138手机主题网的，采用SQL200]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用isapi rewrite实现asp的HTML静态化]]></title>
    <link>http://im.vc/web/asp/2011/0822/62654.html</link>
    <description><![CDATA[asp网站程序在国内运用很广，但是类似于im286.asp?id=20050307213811这样的url有点不利于搜索引擎的收录，也就是说不符合友好url(urls-friendly)的标准，那么我们用isapi_rewrite打造一个clean url，让]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web文件的ContentType类型大全]]></title>
    <link>http://im.vc/web/asp/2011/0822/62653.html</link>
    <description><![CDATA[ContentType 属性指定服务器响应的 HTTP 内容类型。如果未指定 ContentType，默认为 text/html。 在asp中使用它： % Response.ContentType = text/HTML % % Response.ContentType = image/GIF % % Response.ContentType =]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ISAPI Rewrite的安装与使用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62652.html</link>
    <description><![CDATA[ISAPI_Rewrite是一个强大的基于正则表达式的URL处理引擎。它非常类似于Apache's mod_Rewrite，但它是专为IIS设计的。 ISAPI_Rewrite有两个版本：ISAPI_Rewrite Full与ISAPI_Rewrite Lite。 ISAPI_Rewrite Lite是免]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程代码：隐藏图片的真实地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62651.html</link>
    <description><![CDATA[一般情况下，网站的图片代码是这样的。 img src=./attachments/test.jpg / 右键点击图片，选择属性就可以看到图片的真实地址。这样就让其它网站有机可乘，盗链您网站的图片。我们可以利]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实用Server.Transfer轻松用ASP实现Rewrite模拟生成静态页效果]]></title>
    <link>http://im.vc/web/asp/2011/0822/62650.html</link>
    <description><![CDATA[以前刚刚懂404.asp的时候，曾经幻想把所有程序代码写到404.asp中，实现一个模拟生成静态网页的站，如果程序小还可以，用404.asp实现Rewrite还是一个不错的选择，如果程序代码多达10000]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用ISAPI_Rewrite规则写IIS防盗链]]></title>
    <link>http://im.vc/web/asp/2011/0822/62649.html</link>
    <description><![CDATA[因为网站的关系，不得不把服务器加上防盗链，以前在Apache上的时候很省力，Apache的规则直接可以Referer就可以防盗链，现在当然我是在X86的IIS6.0上，上面那一套没用了，早听闻ISAPI_Re]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP防SQL注入的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62648.html</link>
    <description><![CDATA[前一篇我们介绍了一种防SQL注入的终极方法，也就是最原始、最简单、最有效也是最通用的方法，就是数据类型的检查加单引号的处理，具体的内容前面一篇已经介绍过了，这里我就不]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在IIS中用ISAPI_Rewrite Lite版配置虚拟主机支持二级域名]]></title>
    <link>http://im.vc/web/asp/2011/0822/62647.html</link>
    <description><![CDATA[为二级域名的问题搞了2天，狂郁闷。。。。先是用程序，感觉太累赘，简单的又不好使（用iframe嵌入，比较糟糕，不能像真正的域名一样访问），后来发觉URL Rewrite是最简单的解决办法]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP(readyState,status)对应的状态值]]></title>
    <link>http://im.vc/web/asp/2011/0822/62646.html</link>
    <description><![CDATA[status状态值 长整形标准http状态码，定义如下： Number Description 100 Continue 101 Switching PRotocols 200 OK 201 Created 202 Accepted 203 Non-Authoritative Information 204 No Content 205 Reset Content 206 Partial Content 30]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS不支持含中文的url解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62645.html</link>
    <description><![CDATA[如果有管理员权限 1、修改注册表，HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\INETINFO\PARAMETERS\FAVORDBCS 把1改成0，之后重新启动服务器。 （重起IIS生效） 如果不是管理员 2、在客户端修改]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则表达式 大杂烩]]></title>
    <link>http://im.vc/web/asp/2011/0822/62644.html</link>
    <description><![CDATA[收集一些常用的正则表达式。 正则表达式用于字符串处理，表单验证等场合，实用高效，但用到时总是不太把握，以致往往要上网查一番。我将一些常用的表达式收藏在这里，作备忘之]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中操作UTF]]></title>
    <link>http://im.vc/web/asp/2011/0822/62643.html</link>
    <description><![CDATA[注意：这里说的asp ASP由于它的一些功能对UTF-8支持非常差。 比如，你想生成一个UTF-8格式的文件，使用常用的 Scripting.FileSystemObject 对象就不行。 Scripting.FileSystemObject 对象创建文件的函]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改Metabase.xml文件提升IIS性能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62642.html</link>
    <description><![CDATA[Metabase.xml文件是IIS的设置文件，每个网站已经IIS的设置都在这个下面，所以在修改这个文件之前要把这个文件备份一下。这个文件在C:\WINDOWS\system32\inetsrv\Metabase.xml，前篇的启用IIS的静态]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP显示错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62641.html</link>
    <description><![CDATA[%option explicit%]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP保存远程文件到本地（实用版）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62640.html</link>
    <description><![CDATA[% Function SaveRemoteFile(LocalFileName,RemoteFileUrl) SaveRemoteFile=True dim Ads,Retrieval,GetRemoteData Set Retrieval = Server.CreateObject(Microsoft.xmlHTTP) With Retrieval .Open Get, RemoteFileUrl, False, , .Send If .Readystat]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对ASP动态包含文件方法的改进]]></title>
    <link>http://im.vc/web/asp/2011/0822/62639.html</link>
    <description><![CDATA[asp 本身不支持动态包含文件，现在的动态包含是通过 fso 把被包含的文件合并到主文件里再运行。以下也有把形如 !--#include file=filename.asp -- 的普通包含文件方式称作“传统引用”，用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP跳过错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62638.html</link>
    <description><![CDATA[on error resume next]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成静态网页，学习CASE的用法，以及“权限”的一种控制方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62637.html</link>
    <description><![CDATA[form action=calscore.asp?action=do method=post name=form1 ... /form !--#include file=connect.asp-- % if session(logstatus)1 then % p align=center font size=5 b你还没有登录，没有权利浏览本页，请先a href=login.a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[整站二进制数据库文件还原]]></title>
    <link>http://im.vc/web/asp/2011/0822/62636.html</link>
    <description><![CDATA[昨天一个在落伍的朋友给的，一个站的所有文件和图片以二进制的方式放进了数据库里，用下面的代码可以把数据库里的文件和图片还原出来。 把得到的数据库名字改成ToMdb.mdb，然后把]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现可显示和隐藏的树型菜单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62635.html</link>
    <description><![CDATA[以下是引用片段： script language=javascript function hideAll() { for(i=0;iodiv.length;i++) { odiv[i].style.display=none; } } function showObj(num) { if (odiv[num].style.display==none) { hideAll(); odiv[num].style.display=inli]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PHP和C通过Socket通信]]></title>
    <link>http://im.vc/web/asp/2011/0822/62634.html</link>
    <description><![CDATA[/*server.c*/ #include sys/types.h #include sys/socket.h #include string.h #include stdio.h #include netinet/in.h #include arpa/inet.h #include stdlib.h #include unistd.h #include errno.h main(){ int sock; struct sockaddr_in server,client; i]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实用的ASP连接数据库的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62633.html</link>
    <description><![CDATA[细心的开发人员有时会想到，我们在一个需要读写数据库的页面里包含类似 !-- #include file=conn.asp -- 的代码时，实际上，当你没有进行任何读写数据库操作时，这个数据库连接仍然是打]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[支持多风格变换的ASP分页类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62632.html</link>
    <description><![CDATA[这个分页使用的是0游标，也就是Rs.Open Sql,Conn,0,1。但是感觉也快不了多少，10 万条数据的分页时间300多豪秒之间 % Class Page PRivate CurrPage Private PageN Private UrlStr Private TempStr Private ErrInfo P]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改asp代码防止被杀毒软件误删]]></title>
    <link>http://im.vc/web/asp/2011/0822/62631.html</link>
    <description><![CDATA[某些杀毒软件会把正常的asp文件误认为是asp木马文件，而自动删除，影响正常使用。 下面方法可能会有效避免被杀毒软件删除 把 以下是引用片段： dim tStream set tStream = Server.CreateObjec]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中可以保存参数值的分页代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62630.html</link>
    <description><![CDATA[%''+++++++++++++++++++++++++++++++++++++++++++++++++++++++ ''调用例子 'Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo 'int_RPP=2 '设置每页显示数目 'in]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PRB：ASP 返回“Operation Must Use an Updateable Query”（操作必须使用可更新的查询）错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62629.html</link>
    <description><![CDATA[症状 当您将 ActiveX 数据对象 (ADO) 与 Active Server Pages (asp) 一起使用时，可能会遇到以下常见错误： Microsoft OLE DB PRovider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft access 97 Driver] Operat]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP提高数据显示效率]]></title>
    <link>http://im.vc/web/asp/2011/0822/62628.html</link>
    <description><![CDATA[写在前面的话:此篇还是asp相关的,相信玩ASP的都有这个感觉,当数据有5万多条时-------just like音乐网,要调用最新的10条在页面显示,糟糕的是,当n多用户打开页面访问的时候,每个用户每次都]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ffmpeg.exe转换flv格式的ASP函数 在asp中的调用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62627.html</link>
    <description><![CDATA[asp代码如下: % str=D:\ffmpeg.exe 'video=D:\a.mov video=D:\aaa.avi simg=D:\bbbbbb.jpg flv=D:\3gp2.flv 'response.write video Set WshShell = server.CreateObject(Wscript.Shell) Dim ranNum1 randomize ranNum1=int(10*rnd)+1 'str=st]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[禁用html页面的缓存]]></title>
    <link>http://im.vc/web/asp/2011/0822/62626.html</link>
    <description><![CDATA[1。在asp页面首部head加入 Response.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = no-cache Response.AddHeader PRagma, No-Cache 2。在HtML代码中加入 HEAD META HTTP-EQUIV=Pr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用带参数存储过程的几种方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62625.html</link>
    <description><![CDATA[asp调用带参数存储过程的几种方式 最近有很多的朋友问到调用存储过程的问题，这里简单介绍几种ASP调用带参数存储过程的方法。 1. 这也是最简单的方法,两个输入参数，无返回值：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP日期和时间函数示例]]></title>
    <link>http://im.vc/web/asp/2011/0822/62624.html</link>
    <description><![CDATA[函数 语法 说明 示例 Now Now() 取得系统当前的日期和时间 Dim MyVar MyVar = Now '' MyVar 包含当前的日期和时间。 Date Date() 取得系统当前的日期 Dim MyDate MyDate = Date '' MyDate 包含当前系统日期。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP用Server.Transfer实现博客永久链接]]></title>
    <link>http://im.vc/web/asp/2011/0822/62623.html</link>
    <description><![CDATA[在许多博客日志阅读页面里的尾部都能看到一个永久链接，这个链接一般是持久在在的，即使博客程序换了，也可以用这个链接来访问原来的日志，而不会出现找不到页面的情况，这对]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[当碰到不能使用asp标记的时候]]></title>
    <link>http://im.vc/web/asp/2011/0822/62622.html</link>
    <description><![CDATA[以前好多朋友说过就是在程序上传shell过程中，程序不允许包含%%标记符号的内容的文件上传，这样就有好多shell不能上传上去了！那我们是不就没别的方法了么，当然有了！呵呵！ 我们]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP生成XML数据文档（RSS订阅）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62621.html</link>
    <description><![CDATA[一、必须弄清楚最终需要的是什么 我们通过asp或其他动态编程语言，最终需要的是xml格式的数据，这点和XML数据所在的文件载体无关，它可以是实实在在的XML文件，比如：http://blog.kn]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+JS处理复杂表单的生成与验证]]></title>
    <link>http://im.vc/web/asp/2011/0822/62620.html</link>
    <description><![CDATA[这里所谓的复杂表单，是指表单中包含多种不同的输入类型，比如下拉列表框、单行文本、多行文本、数值等。在经常需要更换这类表单的场合，需要有一个表单的动态生成程序。本文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问IIS虚拟目录需要权限的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62619.html</link>
    <description><![CDATA[由于错误的IIS或者磁盘权限配置，会导致403权限错误。 以下是解决思路。 1.硬盘是NTFS格式的，修改站点根目录文件夹属性，在安全选项中加入IUSR_你的机器名和IWAM_你的机器名,或者把文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+SQLServer2000 经验积累]]></title>
    <link>http://im.vc/web/asp/2011/0822/62618.html</link>
    <description><![CDATA[前几天帮人调试一个asp+SQL2000+IIS5.1/6.0的网站程序，调试过程中遇到的问题如下： 一、 SQLServer登录 原先存在备份数据库，通过附加数据库导入到SQL Server，原网站数据库不能正常登陆。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学习ASP有用的代码（很有用哦！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62617.html</link>
    <description><![CDATA[1、数据库连接。 asp与access数据库连接： %@ language=VBscript% % dim conn,mdbfile mdbfile=server.mappath(数据库名称.mdb) set conn=server.createobject(adodb.connection) conn.open driver={microsoft access driver (*.mdb)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用xml作为数据源，配合asp:Menu类自由扩展菜单项]]></title>
    <link>http://im.vc/web/asp/2011/0822/62616.html</link>
    <description><![CDATA[先新建一个名为menu的xml文件，内容如下： ?xml version=1.0 encoding=utf-8 ? menu menuItem url=~/Default.aspx title=首页 description=/ menuItem url=~/News.aspx title=新闻 description= menuItem url=~/News.as]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP读取XML数据文件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62615.html</link>
    <description><![CDATA[分别保存下面两段代码，一个保存为readxml.asp另一个保存为test.xml，放在同一个目录下面，调试程序即可，在程序里面我已经做了解释，读取代码可以做成一个readxml的函数，通过使用输]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access与Sql Server之ASP代码比较]]></title>
    <link>http://im.vc/web/asp/2011/0822/62614.html</link>
    <description><![CDATA[后台数据库： [Microsoft access] 与 [Microsoft Sql Server] 更换之后，asp代码应注意要修改的一些地方： [一]连接问题（举例) [Microsoft Access] constr = DBQ=c:\data\clwz.mdb; DRIVER={Microsoft Access Driver (*.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[输出到html页面的字符串的格式化]]></title>
    <link>http://im.vc/web/asp/2011/0822/62613.html</link>
    <description><![CDATA[当使用Response.Write()函数将字符串输出到html页面时候，因为html的默认实体的问题，有时候输出并不是预期的那样。比如： Response.Write(hi tom); //字符串中间有六个空格 在web页面的显示却]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP函数库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62612.html</link>
    <description><![CDATA[asp函数库 % '''' 函数目录 '''' ''''-----------------------------------------------'''' '''' 函数ID：0001[截字符串] '''' '''' 函数ID：0002[过滤html] '''' '''' 函数ID：0003[打开任意数据表并显示表结构及内容]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP与存储过程实践(实例)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62611.html</link>
    <description><![CDATA[asp与存储过程(Stored PRocedures)的文章不少，但是我怀疑作者们是否真正实践过。我在初学时查阅过大量相关资料，发现其中提供的很多方法实际操作起来并不是那么回事。对于简单的应用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SubSonic 的字段名未转义问题修正]]></title>
    <link>http://im.vc/web/asp/2011/0822/62610.html</link>
    <description><![CDATA[SubSonic 是集代码生成 / Build PRovider (asp.net 2.0 的新特性) 于一身的一个非常不错的数据访问框架。其灵感来自 ROR 里的 ActionPack. 非常适合于小型网站的快速开发。 昨天我开始使用这个框架]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运用ASP调用数据库中视图及存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62609.html</link>
    <description><![CDATA[一、前言 asp (Active Server Pages) 是服务器端的脚本编写环境，它由微软公司的IIS3.0以上版本支持。它可用来创建动态 Web 页或生成功能强大的 Web应用程序。ASP页是包括 HTML 标记、文本和脚]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Session对象的集合以及属性方法事件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62608.html</link>
    <description><![CDATA[session StaticObjects 集合 StaticObjects 集合包含 Session 对象范围中用 OBJECT 标记创建的所有对象。该集合可用于确定对象特定属性的值，或用于遍历集合并获取所有对象的全部属性。 语法 S]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于分页查询和性能问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62607.html</link>
    <description><![CDATA[分页查询是经常能够遇到的问题，我们首先看看分页查询存在的理由: 方便用户：用户不可能一次察看所有数据，所以一页一页的翻看比较好。 提高性能：一次从数据库中提取所有数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp.net(c#)数据库操作类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62606.html</link>
    <description><![CDATA[using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; usin]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[新手入门：防范SQL注入攻击的新办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62605.html</link>
    <description><![CDATA[近段时间由于修改一个asp程序(有SQL注入漏洞)，在网上找了很多相关的一些防范办法，都不近人意，所以我将现在网上的一些方法综合改良了一下，写出这个ASP函数，供大家参考。 以下]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP取出HTML里面的图片地址的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62604.html</link>
    <description><![CDATA[以下是取出HTML里面的图片地址的函数： 主要原理就是用正则判断 img 的src属性。这在采集程序中将非常有用。 函数如下： 以下是引用片段： Function ShowPic(str) Set objRegExp = New Regexp'设置]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无法更新ACCESS数据库解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62603.html</link>
    <description><![CDATA[写在前面: 都是XP惹的祸.个人认为XP过度的追求安全性,而以具体功能无法实现作为代偿.下面来看看这个asp例子,相信经常接触ASP的人会时常碰到这个问题:明明自己的代码写的非常正确,为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何获得代码中第一张图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62602.html</link>
    <description><![CDATA['把pattern 又修改了下 'code要检测的代码 'http://www.knowsky.com/asp.asp 'leixing html 或者ubb 'nopic 代码没有图片时默认值 function toppic(code,leixing,nopic) set regex = new regexp regex.ignorecase = true regex.globa]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[净化网络环境 ASP程序实现过滤脏话]]></title>
    <link>http://im.vc/web/asp/2011/0822/62601.html</link>
    <description><![CDATA[!--#include file=../conn/dbconn1.asp-- !--#include file=../inc/safe.asp-- % content=Replace_Text(request.Form(content)) content=replace(content,,[) content=replace(content,,]) newsid=Replace_Text(request.Form(newsid)) ip=req]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp base64编码、解码函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62600.html</link>
    <description><![CDATA[这是我看完几个base64编码、解码函数后自己改写的。 因为，在中文操作系统的VBscript中，使用的是unicode字符集，所以 很多base64编码、解码函数在理论上是正确的，但实际不能运行！ 文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软的IIS 6存在严重解析文件名错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62599.html</link>
    <description><![CDATA[测试办法：在FTP中建立一个 test.asp 的文件夹，文件夹名就是 test.asp ，在这个文件夹中上传一个 hack.jpg，这个jpg的内容可以直接是%=now%，然后，用IE远程访问这个hack.jpg，你可以发现，它]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp网页提升速度方法5则]]></title>
    <link>http://im.vc/web/asp/2011/0822/62598.html</link>
    <description><![CDATA[技巧之一：提高使用Request集合的效率 访问一个asp集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问一个局部变量要慢得]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP脚本语言的19个基本技巧使用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62597.html</link>
    <description><![CDATA[asp（英文全称Active Server Pages）是一个编程环境，在其中，可以混合使用HTML、脚本语言以及组件来创建服务器端功能强大的Internet应用程序。 如果您以前创建过一个站点，其中混合了H]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何跳出本次进入下一次循环]]></title>
    <link>http://im.vc/web/asp/2011/0822/62596.html</link>
    <description><![CDATA[看下面的java代码，目的是为了当i是3的时候，就不做输出，直接跳到下一个循环。 int i = 0; while (i 5) ...{ i++; if (i == 3) ...{ continue; } System.out.PRintln(I'm not 3, I'm + i); // Do something else... } 然]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中存储过程应用全接触]]></title>
    <link>http://im.vc/web/asp/2011/0822/62595.html</link>
    <description><![CDATA[asp与存储过程(Stored PRocedures)的文章不少，但是我怀疑作者们是否真正实践过。我在初学时查阅过大量相关资料，发现其中提供的很多方法实际操作起来并不是那么回事。对于简单的应用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现不存在的网页就自动发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62594.html</link>
    <description><![CDATA[制作网站的时候通常会有当访客的一些错误操作或我们网站本身的缺陷，造成某个不存在的页面被访问，这时会出现404错误提示信息，如果是热心的访客可能会给你发一封邮件提示你，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP开发连接数据库时的性能问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62593.html</link>
    <description><![CDATA[原有一个项目，使用asp开发，使用Oracle数据库 。 使用下面的代码来获取查询语句。 Set RS = Server.CreateObject(ADODB.Recordset) RS.open 所要执行的SQL语句, 数据库连接 逻辑中存在一个两级的结]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中存储过程应用详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/62592.html</link>
    <description><![CDATA[asp开发中存储过程应用详解|调用,参数,存储,数据库,输出,编译,mycomm,输入,userid,代码 ASP与存储过程(Stored PRocedures)的文章不少，但是我怀疑作者们是否真正实践过。我在初学时查阅过大量]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP处理XSLT转换XML的实现]]></title>
    <link>http://im.vc/web/asp/2011/0822/62591.html</link>
    <description><![CDATA[使用asp处理XSLT转换xml比较简单，思路如下：创建一个XSLTemplate的对象，再创建一个XMLDOM对象，然后在家Xml文件和XSLT文件，最后使用方法transform即可，包含到类里面，具体代码如下： 以]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[flash和asp分页的一点心得]]></title>
    <link>http://im.vc/web/asp/2011/0822/62590.html</link>
    <description><![CDATA[看了这个的一些帖子,学到了很多东西,现在和大家一起分享 Flash现在只是一个显示的功能,过程中看了一些别人的东西,觉得分页似乎有很简单的实现方式. 基本上都是用xml传送的. 显示用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何编写通用的ASP防SQL注入攻击程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62589.html</link>
    <description><![CDATA[SQL注入被那些菜鸟级别的所谓黑客高手玩出了滋味，发现现在大部分黑客入侵都是基于SQL注入实现的，哎，谁让这个入门容易呢，好了，不说废话了，现在我开始说如果编写通用的SQL防]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XML组件生成静态首页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62588.html</link>
    <description><![CDATA[第 1 页 利用Msxml2.Serverxmlhttp抓取网页内容 第 2 页 用ADODB.Stream将抓取内容写入文件 第 3 页 具体的举一个例子 了解asp的人应该都知道asp是一种解释执行的脚本程序语言,而脚本程序的执行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[长文章分页显示思路及页码条显示新思路]]></title>
    <link>http://im.vc/web/asp/2011/0822/62587.html</link>
    <description><![CDATA[这两天利用空闲时间编程序，琢摩了一下关于长文章分页以及页码条的简单实现方法。 思路是VBSCRipT的。 CurrentPage=Request.QueryString(page) 'CurrentPage是当前页的意思 PageCount = Int(Len(Content]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何从Html页面中提取所有汉字]]></title>
    <link>http://im.vc/web/asp/2011/0822/62586.html</link>
    <description><![CDATA[SCRipT LANGUAGE=vbScript dim str str=怎样从一个Html页面中提取所有汉字呢？不能有其它Html代码。 alert FilterChinese(str) function FilterChinese(strInput) dim result:result= dim tempStr for i=1 to len(strInput) te]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在windows 2003 server中编写asp代码需要注意的地方]]></title>
    <link>http://im.vc/web/asp/2011/0822/62585.html</link>
    <description><![CDATA[在windows 2003 server中编写asp代码，你可能会碰到下面的错误提示“不允许的父路径”，涉及到的代码有: Server.MapPath(../) !--#include file=../-- 等。可能是出于安全考虑吧，微软屏蔽了脚本中]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[另类扩展名同样执行ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62584.html</link>
    <description><![CDATA[如想实现 http://www.knowsky.com/hello.zw 同样用asp的语法来执行，我们还需要一些额外的工作。 为了让对后缀名为.zw的文件的请求能够被我们的Handler截获运行 打开IIS的管理控制台，又键单击]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于recordcount等]]></title>
    <link>http://im.vc/web/asp/2011/0822/62583.html</link>
    <description><![CDATA[1\ mssql--asp的rs.recordcount值为负1 只有以ADO方式调用数据库才有recordcount这一说，用存储过程需要用select count(*) from table_name自行统计 ? 这个说的不对， 存储过程也可以用 ado 来打开，比如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[automation服务器不能创建对象]]></title>
    <link>http://im.vc/web/asp/2011/0822/62582.html</link>
    <description><![CDATA[【现象】 准备新建一个项目，却发生一件奇怪的事情，系统报告“automation服务器不能创建对象”错误。然后在解决方案中只见项目名，而不见项目文件了。真是奇怪。再尝试打开已有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[windows 2003下正确使用ISAPI_Rewrite的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62581.html</link>
    <description><![CDATA[以前在Window 2000 IIS5.0一直使用ISAPI_Rewrite进行动态链接重写HTML静态网址， 最近升级到 Widnows 2003 IIS6.0 后，发现ISAPI_Rewrite根本运行不起来，在IIS 6.0里面一直提示“未加载”，后来查了又]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防范sql注入式攻击js版本]]></title>
    <link>http://im.vc/web/asp/2011/0822/62580.html</link>
    <description><![CDATA[SQL注入式攻击是利用是指利用设计上的漏洞，在目标服务器上运行Sql命令以及进行其他方式的攻击 动态生成Sql命令时没有对用户输入的数据进行验证是Sql注入攻击得逞的主要原因。 比]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp下闰年计算方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62579.html</link>
    <description><![CDATA[计算闰年主要是为了判断2月份的天数，一般闰年2月份是29天，平年2月份是28天。计算闰年的算法非常简单，即：能被400整除，或者能被4整除而不能被100整除。 算法如下： function isLea]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Excel数据导入到Access,Sql Server中示例代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62578.html</link>
    <description><![CDATA[将Excel中的数据导入到access中，前提是在Access中的表已经建好。 dim conn dim conn2 set conn=CreateObject(ADODB.Connection) conn.Open PRovider=Microsoft.Jet.OLEDB.4.0;Jet OLEDB:Database PassWord=;Data Source=c:\book1.m]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP生成ZT条型码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62577.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 META NAME=Author CONTENT=haiwa titleasp生成条形码/title /head body % function haiwaocde(zfstr) zf = zfstr zf = replace(zf,0,_|_|__||_||_|) zf = replac]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用.net开发asp组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62576.html</link>
    <description><![CDATA[有一个老项目是asp的，但是有些功能在asp上实现不了，.net中倒是很容易实现，所以就引出了标题所述是事情。 因为是第一次做，花了整整一天的时间，也走了一些弯路，现在把它总结]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[批量对加密的asp代码解密的asp程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62575.html</link>
    <description><![CDATA[% @Language=javaScript % % /* *--------------- decode.asp ----------------- * 功能:遍历某个目录下的所有文件,对加密过的.asp文件 * 进行解密,并写入源文件中. * 实例:单个文件解密 * Response.Write(DncodeF]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从手工注入看防御之Access]]></title>
    <link>http://im.vc/web/asp/2011/0822/62574.html</link>
    <description><![CDATA[很多情况下，入侵者在使用工具注入时发现工具才解不出来表名和字段名，那是因为所有的工具都有自己的一部字典，这部字典内包括了表名和字段名，如果管理员把表名和字段名改成]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft VBscript运行时错误'800a000d'的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62573.html</link>
    <description><![CDATA[在使用vbscript进行asp开发时,一些朋友会碰到以下类似的错误： Microsoft VBscript 运行时错误 '800a000d' 类型不匹配: '*******' /solweb/sdbottm_right.asp, line 80 错误原因： 该错误是因为在运行iis服务]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的asp数据库操作类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62572.html</link>
    <description><![CDATA[% '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% '数据库操作类 '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% '名称：Class_DBOperate '版本：0.2 '作者：qihangnet '更新：2005年6月14日 '作用：简化数据库操作的流程 '授权：免费]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[身份验证常用正则表达式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62571.html</link>
    <description><![CDATA[中国电话号码验证 匹配形式如:0511-4405222 或者021-87888822 或者 021-44055520-555 或者 (0511)4405222 正则表达式 ((d{3,4})|d{3,4}-)?d{7,8}(-d{3})* 中国邮政编码验证 匹配形式如:215421 正则表达式 d{6}]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp计算页面执行时间]]></title>
    <link>http://im.vc/web/asp/2011/0822/62570.html</link>
    <description><![CDATA[页面执行时间：就是从这页的开始执行一直到这页执行完毕所用的时间。 许多网站的首页的页尾都会显示一个页面执行时间，下面说说如何实现： 首先在一个网页的开头定义一个变量]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个asp快速字符串连接类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62569.html</link>
    <description><![CDATA[% '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% '快速字符串连接类 '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% '名称：Class_FastString '来源：http://www.jansfreeware.com '整理：qihangnet '更新：2005年6月15日 '作用：高效地进行字]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS的一个莫名错误Server Application Unavailable]]></title>
    <link>http://im.vc/web/asp/2011/0822/62568.html</link>
    <description><![CDATA[Server application Unavailable The web application you are attempting to access on this web server is currently unavailable. Please hit the Refresh button in your web browser to retry your request. Administrator Note: An error message det]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的用存储过程分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62567.html</link>
    <description><![CDATA[使用这个存储过程可以实现分页的，新手可以看看哦！ create PRoc proPage(@pageid int ,@pagesize int) as begin if (@pageid=1) begin set rowcount @pagesize select * from test order by id end else begin declare @no1 int dec]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ASP,ASP.NET,VB.NET里的MD5加密函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62566.html</link>
    <description><![CDATA[在asp中，我们使用过如动网论坛等用的ASP中md5函数加密出的字符串则如： 1165d25d8cd021d5 而在asp.net中下面的方法： System.Web.Security.FormsAuthentication.HashPassWordForStoringInConfigFile(password.Text,M]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让你的网站首页自动选择语言]]></title>
    <link>http://im.vc/web/asp/2011/0822/62565.html</link>
    <description><![CDATA[过去在一家软件外企工作时写过一个小的web实验性项目,其中一部分需求是用户界面的多种语言（简体中文、繁体中文、英语、朝鲜语、日语）支持，当时使用了模板技术来实现了该需求]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写数据库操作类，使ASP.NET中的数据库操作变得简单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62564.html</link>
    <description><![CDATA[作者：Willmove 主页：http://www.amuhouse.com E-mail: willmove@Gmail.com 声明：系作者原创作品，转载请注明出处。 asp.net中一般都是使用SQL Server作为后台数据库。一般的ASP.NET数据库操作示例程序都]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为自己的ASP网站系统构建一套标记语言]]></title>
    <link>http://im.vc/web/asp/2011/0822/62563.html</link>
    <description><![CDATA[作为动态网站在建设过程中难免遇到在线编辑文章的问题。HTML提供了一个textarea标记，但是实际上没有解决这个问题，因为从textarea的是纯文本。除非在输入的时候使用了HTML标记，否则]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP获取web访问头信息和网页代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62562.html</link>
    <description><![CDATA[% Function BytesToBstr(body,Cset) dim objstream set objstream = Server.CreateObject(adodb.stream) objstream.Type = 1 objstream.Mode =3 objstream.Open objstream.Write body objstream.Position = 0 objstream.Type = 2 objstream.Charset = Cset]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Cookie跨域操作遇到的问题及解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62561.html</link>
    <description><![CDATA[Cookie跨域操作看来是个简单的问题,因为只要指定Domain属性为指定网站的根域名就可以了. 但是笔者在实际使用过程中却遇到了一些问题，的确值得注意. 环境介绍 cookie在www主域名下创建]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[地址栏参数的判断总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62560.html</link>
    <description><![CDATA[当地址栏没有参数＂id＂时： Request.QueryString[ID] == null Convert.ToString(Request.QueryString[ID]) == null 注意这样会出错： Request.QueryString[ID].ToString(); 当地址栏有参数＂id＂，但没有赋值的时候]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将asp页面转换成htm页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/62559.html</link>
    <description><![CDATA[前段时间有个asp页面执行起来很慢，访问人数又颇多，而且又不经常修改，又懒得直接做成静态的，每次都要从服务器下载来改，只好想办法把asp页面转化成htm静态页面了。。。 以前就]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[系统时间格式问题而导致BLOG不正常的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62558.html</link>
    <description><![CDATA[问题出在系统用 Now() 取得系统的时间是 2005-5-5 上午 12:25:2 这样的。再把这个转换成日期格试就出错了. 如果你使用的系统为WIN2003中文企业版，用asp程序读取系统时间，格式都为：2005]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+CSS实现随机背景]]></title>
    <link>http://im.vc/web/asp/2011/0822/62557.html</link>
    <description><![CDATA[随机背景--当你每次进入该页面时，从已指定的图片文件夹中，随机选取一个图片作为背景显示。这里介绍的方法是用asp+CSS来实现的。 ASP--来自ASP101 以下是引用片段： ConstIMGS_DIR=/ima]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站漏洞解析及黑客入侵防范方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62556.html</link>
    <description><![CDATA[如何更好的达到防范黑客攻击，本人提一下个人意见！第一，免费程序不要真的就免费用，既然你可以共享原码，那么攻击者一样可以分析代码。如果在细节上注意防范，那样你站点的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则表达式结合数组提取文章中的文件名]]></title>
    <link>http://im.vc/web/asp/2011/0822/62555.html</link>
    <description><![CDATA[今天编ZBlog上传模块的时候，需要用到一个提取文章中文件名的子程，开始我把问题想复杂了，匹配了所有可能的文件名，不仅正则表达式写了一大串，而且下面还Split了半天，后来我突]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JMail组件代替Sql Mail发送Email 遇到的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62554.html</link>
    <description><![CDATA[关于jmail的配置和相关的存储过程的内容,这里有参考资料,我就不详细描述了. 配置好一切后,试图通过调用该存储过程发送一封邮件给管理员.但是查询分析器返回的结果是 错误源: jmai]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用正则解析图片地址,并利用XMLHTTP组件将其保存]]></title>
    <link>http://im.vc/web/asp/2011/0822/62553.html</link>
    <description><![CDATA[现在基于WEB的HTML的编辑器在新闻系统，文章系统中用得越来越广，一个网一粘就可以保持原来的样式，同时图片也可以在这个中保持。但是在使用过程中，如果所粘贴中的图片被删除，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP和C#隐藏文件下载路径的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62552.html</link>
    <description><![CDATA[关于下载路径的隐藏都是通过传递一个数据库中的ID，然后在另外一张页面通过传递的ID在数据库中读出路径。 1、c#中实现的方法（只需要.aspX.CS的代码就可以了） string sel_sql=select Fi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[URL编码与SQL注入]]></title>
    <link>http://im.vc/web/asp/2011/0822/62551.html</link>
    <description><![CDATA[说到url编码，你或许会想起N年前的url编码漏洞。可惜我是“生不逢时”啊，我接触网络时，那个漏洞早就绝迹咯。 言归正传，URL 编码是什么东东呢？看看我从网上抄的定义： 引用:]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何让图片自动缩放以适合界面大小]]></title>
    <link>http://im.vc/web/asp/2011/0822/62550.html</link>
    <description><![CDATA[如何让图片自动缩放以适合界面大小，拿出你的Editplus，打开c_function.asp文件，找到UBBCode函数，在第417行有如下语句 IfInstr(strType,[image])0AndZC_UBB_IMAGE_ENABLEThen'[img]objRegExp.Pattern=(\[IMG=)(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用技巧 强制刷新网页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62549.html</link>
    <description><![CDATA[% '强制性刷新随机验证码 '让随机验证码每次按IE的后退按钮时，返回登录页面的随即码都自动刷新， Response.expires=-1 Response.AddHeaderPRagma,no-cache Response.AddHeadercache-control,no-store %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正则表达式的字符，定位字符和重复字符]]></title>
    <link>http://im.vc/web/asp/2011/0822/62548.html</link>
    <description><![CDATA[正则表达式语法表示的字符类字符类匹配的字符示例 \d 从0~9的数字\d\d可以匹配72，但不能匹配7a或者a7 \D 非数字的字符\D\D\D可匹配a%c，但不能匹配123 \w 下划线和单词字符\w\w\w可以匹配]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用AspJpeg组件，按宽高比例，真正生成缩略图]]></title>
    <link>http://im.vc/web/asp/2011/0822/62547.html</link>
    <description><![CDATA[在网站前台产品展示时，一般用缩略图，点击进入然后看到大图。 缩略图带来了两个烦劳： 1.如果后台只传一张大图，显示缩略图时只是将大图固定宽度和高度，这样不但造成缩略图变]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp判断某IP是否属于某网段的另类算法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62546.html</link>
    <description><![CDATA[有时候我们需要判断某一个ip地址是否属于一个网段,以决定该用户能否访问系统. 比如用户登录的IP是218.6.7.7,而我们的程序必须判断他是否属于218.6.0.0/16这个网段(其中/16是新的子网掩码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp组件编写准备工作]]></title>
    <link>http://im.vc/web/asp/2011/0822/62545.html</link>
    <description><![CDATA[最近在尝试用组件写asp,一些心得如下，不对之处请指正 经常要重启IIS，所以需要一个批处理的文件,将下面两行代码存为xxx.bat net stop w3svc net start w3svc 经常需要注册、卸载dll，所以需要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp连接数据库的方法(全)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62544.html</link>
    <description><![CDATA[ADO相关知识 在asp中，用来存取数据库的对象统称ADO（Active Data Objects），主要含有三种对象：Connection、Recordset 、Command Connection：负责打开或连接数据 Recordset：负责存取数据表 Command：负]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中自定义文件下载]]></title>
    <link>http://im.vc/web/asp/2011/0822/62543.html</link>
    <description><![CDATA[可以用流下载(耗内存，少用)或直接转到该文件. % Const USE_STREAM = 0 '0.不用流(Adodb.Stream)下载 1.用流下载 Const ALLOW_FILE_EXT = rar,zip,chm,doc,xls,swf,mp3,gif,jpg,jpeg,png,bmp '允许下载的文件的扩展名]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access通用－自动替换数据库中的字符串]]></title>
    <link>http://im.vc/web/asp/2011/0822/62542.html</link>
    <description><![CDATA[自己可以修改myreplace函数,实现复杂的替换.呵呵,好象用处不大.主要是看看如何读取access表和字段列表 % '#################################### '替换数据库内容 lamking 2005-8-22 'http://www.lamking.com Q]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧妙破解开别人ASP木马密码的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62541.html</link>
    <description><![CDATA[破解目标：破解一asp木马的经过加密的登破解asp木马密码陆密码。由于木马里没有版本说明，具体也不知道这木马叫什么名。 破解思路：两种，用加密后的密码替换密文和利用密文及加]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+DLL实现WEB方式修改服务器时间]]></title>
    <link>http://im.vc/web/asp/2011/0822/62540.html</link>
    <description><![CDATA[昨天一个朋友有个需求，是要通过WEB方式，修改IIS服务器上的时间，由于他的系统是asp 3.0下开发的，所以本例子的代码是ASP的，不是asp.net，但是本人写这个文章是想抛砖引玉，毕竟编]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你巧妙利用.mdb后缀数据库做后门]]></title>
    <link>http://im.vc/web/asp/2011/0822/62539.html</link>
    <description><![CDATA[前言：好长时间了，从刚开始的站点管理器到现在流行的几款asp后门，相信大多网管都能说出这些经典webshell的名字，如海洋、老兵、蓝屏等,也相信大多数的网管学会了关键字的搜索方]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自动清空站点目录下所有文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62538.html</link>
    <description><![CDATA[作用:可以清空此文件所在的web站点所有文件,将文件内容清零.运行完毕所有文件大小都变成0字节. 此代码本人原创,转载请注明转自lamking.com,谢谢合作.另外程序可以扩展. 属于无聊时的作]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[UTF]]></title>
    <link>http://im.vc/web/asp/2011/0822/62537.html</link>
    <description><![CDATA[% '用途:將UTF-8編碼漢字轉換為GB2312碼，兼容英文和數字 '版權:雖說是原創，其實也參考了別人的部分算法 '用法:Response.write UTF2GB(%E9%83%BD%E5%B8%82%E6%83%85%E7%B7%A3 %E6%98%9F%E5%BA%A7) function UTF]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将内容自动添加到指定文本域的JS]]></title>
    <link>http://im.vc/web/asp/2011/0822/62536.html</link>
    <description><![CDATA[在添加新记录时,有时候我们需要将部分动态内容自动添加到指定的文本域,例如上传一个文件后,将文件名自动添加到一个独立的记录框内,以asp代码为例,以下代码实现了此功能. 以下是引]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASPEMAIL通过Mdaemon的SMTP发信－recipient unknow处理办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62535.html</link>
    <description><![CDATA[用aspEMAIL通过Mdaemon 的SMTP发信－recipient unknow处理办法 给服务器配了个Mail Server，用的是Mdaemon 7.2.5，因为这个版本有免费的注册机。 起初，我用原来为Cdont写的用ASPEMAIL发信的Web程序无论]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用IE和SQL2k开发一个XML聊天程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62534.html</link>
    <description><![CDATA[不同浏览器之间多年的竞争导致产生了很多工具帮助开发人员完成以前很难做到的任务。现在，只要一小段脚本，你就可以创建一个应用程序将数据绑定到用户控件，这样就可以通过一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP和WML来实现数据库查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/62533.html</link>
    <description><![CDATA[贴一段asp和WML查询数据库得代码，大家参考参考，其实跟ASP写WEB页面很相似得。 ＜%Response.ContentType = text/vnd.wap.wml%＞ ＜?xml version=1.0?＞＜!DOCTYPE wml PUBLIC -//WAPFORUM//DTD WML 1.1//EN http]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP二进制流方法隐藏图片文件真实地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62532.html</link>
    <description><![CDATA[功能描述：上传图片文件到指定目录后，在本文件根据URL传入的文件名加上文件所在目录根据文件完整路径。再将该文件二进制数据流写入服务页面，从而达到隐藏图片真实地址防止外]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在IIS上搭建WAP网站]]></title>
    <link>http://im.vc/web/asp/2011/0822/62531.html</link>
    <description><![CDATA[1．创建一个站点文件夹 首先你要创建一个独立于你的主站点的新的站点文件夹（若站点是建立在同一个服务器上面的话），这样你下面要做的改动才不会影响别的站点。 2．在IIS 平台]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几种常用排序算法(asp)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62530.html</link>
    <description><![CDATA[% Dim aData aData = Array(3,2,4,1,6,0) Call ResponseArray(aData, 原来顺序) Call ResponseArray(SelectSort(aData), 选择排序) Call ResponseArray(QuickSort(aData), 快速排序) Call ResponseArray(InsertSort(aData), 插入排序]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案二（利用ScriptX.cab控件改变IE打印设置）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62529.html</link>
    <description><![CDATA[下载ScriptX.cab控件，修改codebase的值，默认下面的设置也可以。 页面加载控件： object id=factory style=display:none viewastext classid=clsid:1663ed61-23eb-11d2-b92f-008048fdd814 codebase= http://www.meadroid]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用程序中限制重复提交同一表单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62528.html</link>
    <description><![CDATA[在Internet上我们每天都会遇到数不清的表单，也看到其中大部分并没有限制用户多次提交同一个表单。缺乏这种限制有时候会产生某些预料不到的结果，如重复订阅邮件服务或重复投票]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access通用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62527.html</link>
    <description><![CDATA[自己可以修改myreplace函数,实现复杂的替换.呵呵,好象用处不大.主要是看看如何读取access表和字段列表 % '#################################### '替换数据库内容 lamking 2005-8-22 'http://www.lamking.com Q]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用split分割多字符的字符串的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62526.html</link>
    <description><![CDATA[string[] A; string B = abcd@@efg@@sdff;; string C=abcde@efgasdfl@sdlfjs; 如果要分割C很容易，只需如此即可： A = C.Split('@'); 结果： A[0] = abcde; A[1] = efgasdfl; A[2] = sdlfjs; 如果要分割B呢?最简单的办法]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案三（FileSystem组件实现WEB打印）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62525.html</link>
    <description><![CDATA[程序代码： script Language=VBScript Function PRint_onclick //打印函数 Dim label label=document.printinfo.label.value //获得HTML页面的数据 set objfs=CreateObject(Scripting.FileSystemObject) //创建FileSystem组件对象的实]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于文摘插件提交表单的开发]]></title>
    <link>http://im.vc/web/asp/2011/0822/62524.html</link>
    <description><![CDATA[实例：具体功能见“我爱博客（http://www.woiblog.com）”里有相关使用介绍！ 1,要实现的功能就是在浏览器加一个右键快捷方式提交所选的网页或图片内容！实例应用在博客程序里，就是在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案四（在ASP中实现网络打印功能）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62523.html</link>
    <description><![CDATA[使用到的技术： asp,WSH,VBScript 文件ASPPRint.asp代码如下： %@ Language=VBScript % % Option Explicit Dim strSubmit ' Form中用来保存提交按钮的值 Dim strPrinterPath ' Form中保存网络打印机路径的值 Dim strUse]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断checkbox是否至少有选择一项]]></title>
    <link>http://im.vc/web/asp/2011/0822/62522.html</link>
    <description><![CDATA[我们知道，如果在asp，只要response.write request.form(checkboxName)就可以判断是否有选择至少一项，但是必须递交后才可以这样做，那么就要接触脚本语言js,vbs 假设我们有个checkbox叫optHSCam]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用oracle存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62521.html</link>
    <description><![CDATA[!--#include file=inc\public.asp-- !--#include file=inc\conn.asp-- html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title/title /head body % '----------------------------------- dim sp_common Set sp_common = S]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用JSP的思想来做ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62520.html</link>
    <description><![CDATA[程序的功能有了个大体的框架，其实可以自己添加一些功能，比如开始的数据库连接 ，可以先设置 变量然后通过INIT() 来选择不同类型的数据库 % ’On Error Resume Next Class ConnEx public Conn]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP访问INTERBASE数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62519.html</link>
    <description><![CDATA[网上介绍用asp访问INTERBASE数据库的资料很少,经过几天的奋斗终于成功的解决了这个问题.现把部份代码和一些资料贡献给大家. %@ language=vbscript% str1 = Driver={XTG Systems Interbase6 ODBC driver]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP终极防范上传漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0822/62518.html</link>
    <description><![CDATA[apollosun 原创 其实无论是组件还是非组件上传，都有这个漏洞，以下代码请需要得朋友仔细阅读，只要读懂代码就能融会贯通。 这里以aspUPLOAD组件上传为例 以下3个关键函数： function]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于解决商务平台ASP程序的源代码泄漏设想与思考]]></title>
    <link>http://im.vc/web/asp/2011/0822/62517.html</link>
    <description><![CDATA[其实这是每个人都能想到的问题. 写出来的目地,是为了解决即将开发的那个C2C平台里安全性问题的一个方面----源代码泄漏. 为了避免源代码的泄漏和提高运行效率,可以将asp程序的部分核]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp用于分页的两个函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62516.html</link>
    <description><![CDATA[（原创 vince6799） 在asp代码中分页是有点麻烦的事情，个人在在代码编写过程中把分页代码写成了两个函数，虽然在功能上不是很完善，但对于一般的应用应该是满足的了。 % '分页函数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止网站内容被人小偷和采集的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62515.html</link>
    <description><![CDATA[防止一般的采集以及小偷读取，加在顶部。 同理，可以改造成JS脚本。 % Dim AppealNum,AppealCount AppealNum=10 '同一ip60秒内请求限制10次 AppealCount=Request.Cookies(AppealCount) If AppealCount= Then resp]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP与Oracle连接时的TNS错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62514.html</link>
    <description><![CDATA[操作系统 Windows 2000 sp4 装有IIS5.0以及Oracle 8i 症状：用oracle自带的工具能连上数据库，一切操作正常。 使用asp的ADODB以及MSADORA来接连oracle数据库，提示TNS错误或TNS适配器不能工作。 但是]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[批量判断域名是否被注册程序代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62513.html</link>
    <description><![CDATA[随手写个注册域名程序，你自己可以扩展，这只是三位字母的。 % '制作：默飞 'asp程序制作:http://mofei.xinxiu.com b1=a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z b2=split(b1,,) for ii1=0 to ubound(b]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP通用模板类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62512.html</link>
    <description><![CDATA[特性 可设定私有缓存或公共缓存，提高效率 可自由选择使用 Stream 组件或 fso 组件 支持自定义文件编码 可保存文件 属性 Name 文本，该模板名称，主要用于使用公共缓存时区分不同模板]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程实现网络内容快速查找]]></title>
    <link>http://im.vc/web/asp/2011/0822/62511.html</link>
    <description><![CDATA[有一天我突发奇想，要是我每到一个网站，那里都能立刻调出我需要看的信息，那岂非美妙得很。接下来我想更深入地考虑这个问题，坐到椅子上拿一支铅笔，却不知道自己写什么。如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP程序中实现数据库事务控制]]></title>
    <link>http://im.vc/web/asp/2011/0822/62510.html</link>
    <description><![CDATA[在编程中，经常需要使用事务。所谓事务，就是一系列必须都成功的操作，只要有一步操作失败，所有其他的步骤也必须撤销。比如用asp开发一个网络硬盘系统，其用户注册部分要做的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript利用xmlhttp获得服务器时钟的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62509.html</link>
    <description><![CDATA[clock.asp ----------------------------------- % Response.Expires = -1 dim a a=now() Response.Write formatdatetime(a,2) formatdatetime(a,3)% ----------------------------------- mytime.htm ----------------------------------- html body top]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写下载网页中所有资源的程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62508.html</link>
    <description><![CDATA[看过一篇关于下载网页中图片的文章，它只能下载以http头的图片，我做了些改进，可以下载网页中的所有连接资源，并按照网页中的目录结构建立本地目录，存放资源。 download.asp?url]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样开始一个ASP网站的设计]]></title>
    <link>http://im.vc/web/asp/2011/0822/62507.html</link>
    <description><![CDATA[在开始设计一个asp站点的时候，面对着一大堆的问题，到底要怎么样入手，才能让网站设计做到快，好，而且调试、更改，移植起来又方便呢？下面以留言本的设计为例子，谈谈站点的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[小工具：统计有多少行JS代码和ASP代码，并有多少字节]]></title>
    <link>http://im.vc/web/asp/2011/0822/62506.html</link>
    <description><![CDATA[计算当前文件夹中，有多少行JS代码和asp代码，并且还可统计代码有多少字节 有示例代码 % '\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ '\\ '\\ 来自 codePRoject.com '\\ 计算js和asp代码 '\\ 修改 bluedest]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+oracle分页程序类（XDOWNPAGE2.0）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62505.html</link>
    <description><![CDATA[先将分页类源代码发上来，随后有空会发一些实例来讲解其用法，以及如何扩展其功能。 类原代码如下： % '============================================== 'XDOWNPAGE asp版本 '当前版本：2.0 ' ' '原版]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中轻松实现记录集分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62504.html</link>
    <description><![CDATA[大家都知道在Dreamwerver中可以很方便地实现记录集的分页显示，但是生成的代码的确很庞大，影响了网页的显示速度，看起来条理也不是很清晰，那么，可不可以用简单的方式实现同样]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对于ASP编码问题的深入研究与最终解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62503.html</link>
    <description><![CDATA[哪的资料都不如官方资料权威。今天总算从MSDN中择出了asp编码问题的解决方案。 下面是MSDN中的一段话。 Setting @CODEPAGE explicitly affects literal strings in a single response. Response.CodePage affects]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个xmlhttp读取xml的例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62502.html</link>
    <description><![CDATA[这是一个网友在论坛上问的一个问题。大体上在javascript中用xmlhttp读取一个xml文件： xml文件内容如下： ?xml version=1.0 encoding=gb2312? RECORDS CATEGORY_CARS RECORD URLhttp://shanghai.kijiji.com.cn/clas]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中遍历和操作Application对象的集合]]></title>
    <link>http://im.vc/web/asp/2011/0822/62501.html</link>
    <description><![CDATA[为了能够正常使用，必须把它们放到服务器上的一个虚拟应用程序内，并且把所提供的global.asa文件放到该应用程序的根目录中。最简单的办法是把global.asa文件放到缺省Web网站的根目录]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用Form和QueryString集合]]></title>
    <link>http://im.vc/web/asp/2011/0822/62500.html</link>
    <description><![CDATA[当用户填写页面＜FORM＞内容时所提供的全部值，或在浏览器地址栏输入在URL后的值，通过Form和QueryString集合为asp脚本所用。这是在ASP代码中访问值的一种简单方法。 1、 访问ASP集合的一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP发送和接收XML数据的处理方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62499.html</link>
    <description><![CDATA[因为要做移动梦网WAP的一些接口，所以要用到这种方式，接下来会有asp.net版本的，这个是ASP版本的，利用了MSxml2.xmlhttp对像。 request.asp dim Https set Https=server.createobject(MSXML2.XMLHTTP) '定义]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现小偷程序的原理和简单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62498.html</link>
    <description><![CDATA[现在网上流行的小偷程序比较多，有新闻类小偷，音乐小偷，下载小偷，那么它们是如何做的呢，下面我来做个简单介绍，希望对各位站长有所帮助。 （一）原理 小偷程序实际上是通]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP对象应用开发初体验]]></title>
    <link>http://im.vc/web/asp/2011/0822/62497.html</link>
    <description><![CDATA[MSxml中提供了Microsoft.xmlhttp对象，能够完成从数据包到Request对象的转换以及发送任务。 创建XMLHTTP对象的语句如下： Set objXML = CreateObject(Msxml2.XMLHTTP) 或 Set objXML = CreateObject(“Microsoft.X]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中访问和更新Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0822/62496.html</link>
    <description><![CDATA[Cookies的值比asp其他集合（例如Form和ServerVariables）的值要复杂得多。Cookie是一小块由浏览器存贮在客户端系统上的文本，且随同每次请求发往它们应用于的域中的服务器。 ASP使得应用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中vbscript访问xml文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62495.html</link>
    <description><![CDATA[要求传入工号 返回员工姓名 '全局数据 考虑这样只要load一次 set Doc = CreateObject(Microsoft.xmlDOM) Doc.async = false Doc.load(Server.MapPath(user_cnname.xml)) function cnname_var (varusername) dim node,i,nodecount]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现开关IIS不重启电脑]]></title>
    <link>http://im.vc/web/asp/2011/0822/62494.html</link>
    <description><![CDATA[有时候我们在WEB程序如：asp,中无意中使用到了一个死循环，或者在测试 DLL组件时，挂了。这时候IIS就停止了响应，我们要继续我们的工作啊，重启IIS服务吧。 然而这个进程还在执行，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用ServerVariables集合详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/62493.html</link>
    <description><![CDATA[当讨论Request对象内容时，要研究的集合之一就是ServerVariables集合。这个集合包含了两种值的结合体，一种是随同页面请求从客户端发送到服务器的HTTP报头中的值，另外一种是由服务器]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中使用断开的数据记录集]]></title>
    <link>http://im.vc/web/asp/2011/0822/62492.html</link>
    <description><![CDATA[我们在使用asp 内置的ADO组件进行数据库编程时，通常是在脚本的开头打开一个连接，并在脚本的最后关闭它，但是就较大脚本而言，在多数情况下连接打开的时间要比它需要打开的时间]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入程序带来的攻击及防范]]></title>
    <link>http://im.vc/web/asp/2011/0822/62491.html</link>
    <description><![CDATA[现在基于web的攻击一般都是注入。导致注入的原因一般为对变量的过滤不完全，从而可以使入侵者非法执行程序或查询修改任意数据。随着注入攻击的愈演愈烈，一些专门的过滤代码应]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现从dbf数据库导出数据到sql表]]></title>
    <link>http://im.vc/web/asp/2011/0822/62490.html</link>
    <description><![CDATA[说明:dbf数据库结构要与sql表一致 % Dim conndbf_dbf,Driver_dbf,SourceType_dbf,DBPath_dbf dim Conn_sql ,StrCnn,i,str_dbf dim dbf_table_name,sql_table_name 'dbf数据库名称 dbf_table_name=20005070 'sql表名称 sql_table_name=]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中操作HTTP报头方法分析]]></title>
    <link>http://im.vc/web/asp/2011/0822/62489.html</link>
    <description><![CDATA[我们已经在几处见到asp如何创建或修改在响应页面请示时被发送到客户的HTTP报头。在Response对象中有几个属性和方法可帮助我们做到一点。下面是一些报头方法： · 控制缓存和有效期。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL注入技术和跨站脚本攻击的检测]]></title>
    <link>http://im.vc/web/asp/2011/0822/62488.html</link>
    <description><![CDATA[1、概述 在这两年中，安全专家应该对网络应用层的攻击更加重视。因为无论你有多强壮的防火墙规则设置或者非常勤于补漏的修补机制，如果你的网络应用程序开发者没有遵循安全代]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用SQLSERVER存储过程实现ASP用户身份验证]]></title>
    <link>http://im.vc/web/asp/2011/0822/62487.html</link>
    <description><![CDATA[在我们编写用户身份验证程序中，很容易用asp调用SQL语句来检索数据表中是否有条件相符的记录，然后再用ASP进行相关处理。 条条道路通罗马！当然，我们也可以用SQL SERVER数据库的存]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件生成BMP验证码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62486.html</link>
    <description><![CDATA[Call Com_CreatValidCode(ValidCode) Sub Com_CreatValidCode(pSN) ' 禁止缓存 Response.Expires = -9999 Response.AddHeader PRagma,no-cache Response.AddHeader cache-ctrol,no-cache Response.ContentType = Image/BMP Randomize Dim i,]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现的类似URLEncode的编码函数及对应解码函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62485.html</link>
    <description><![CDATA[% 'Coding.inc.asp 'All Rights Reserved, Room3rd@hotmail.com Function Encode(Str) Dim Count, Pos, Ch, Code Dim SweetCh 'SweetCh中表示不需要进行编码的字符 SweetCh = ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz_]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常用Email组件发送函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62484.html</link>
    <description><![CDATA[% sub jmail(email) Dim JMail,SendMail Set JMail=Server.CreateObject(JMail.SMTPMail) JMail.Logging=True JMail.Charset=gb2312 JMail.ContentType = text/html JMail.ServerAddress=SMTPServer JMail.Sender=SystemEmail JMail.Subject=topic JMai]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用PreRender解决DataGrid分页最后一页行数不满的排版问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62483.html</link>
    <description><![CDATA[DataGrid如果使用分页，最后一页可能不能“满页”，这样DataGrid的排版可能会出现问题，剩下的行每行太宽，整个DataGrid变得难看。 解决方法大概可以从三个地方考虑： 1、在DataSource中填]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让你的WAP网站有更好的兼容性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62482.html</link>
    <description><![CDATA[今天看到朋友的WAP网站的首页用IE和WAP手机都能浏览 看来他一定是做了对浏览器的检查，如果不支持WML的话就redirect 仔细想了一下，Redirect只是对于不支持WML的浏览器做的操作（比如I]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中自动创建多级文件夹的函数(使用FSO)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62481.html</link>
    <description><![CDATA[fso中有个方法是CreateFolder,但是这个方法只能在其上一级文件夹存在的情况下创建新的文件夹,所以我就写了一个自动创建多级文件夹的函数,在生成静态页面等方面使用非常方便. 函数:]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP的站内多值搜索]]></title>
    <link>http://im.vc/web/asp/2011/0822/62480.html</link>
    <description><![CDATA[运行环境：IIS 脚本语言：VBScript 数据库：access/SQL Server 数据库语言：SQL 1．概要： 不论是在论坛，还是新闻系统，或是下载系统等动态网站中，大家经常会看到搜索功能：搜索帖子，搜]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP版的手机号码所在地查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/62479.html</link>
    <description><![CDATA[完成了一个简单有用的WAP网站--WAP版的手机号码所在地查询 地址： http://hikey.net/wap 用支持wap的手机查看，不支持IE哈 如果你的手机不支持WAP或者不愿意那几分钱的话，可以用gelon.net提供]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用instr()函数防止SQL注入攻击]]></title>
    <link>http://im.vc/web/asp/2011/0822/62478.html</link>
    <description><![CDATA[学asp也有一段时间了，这几天一直在写自己的程序，也遇到了好多问题，我就不得不得考虑到一些现在的漏洞，比如，‘ 或 and 1=1等等的一些漏洞！别的先不管，今天我就来说说如何堵]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XLS与MDB文件格式互换全攻略]]></title>
    <link>http://im.vc/web/asp/2011/0822/62477.html</link>
    <description><![CDATA[最近，网络管理员在服务器上分给我一块空间，用来展示一些资料。为了方便大家在网络上查询，便作了一个简单的asp查询系统，其中所链接的是MDB格式的access数据库，而在建网之前，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp模仿 Lotus Notes 的界面程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62476.html</link>
    <description><![CDATA[% '仿 Lotus Notes 的界面程序 '作者：塞北的雪 '创作日期：2002年3月 '修改日期：2005年3月 '为了安全和共享的方便，将其中asp程序的标记改成中文字符，使用时可以批量替换回 % html head m]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP访问SQL Server内置对象]]></title>
    <link>http://im.vc/web/asp/2011/0822/62475.html</link>
    <description><![CDATA[平常我们只听说过ADO等一类asp对象，但在ASP中还有个鲜为人知的专门SQL Server的ASP访问对象,它就是SQLOLE.SQLServer对象。SQLOLE.SQLServer可以直接访问SQL Server的系统属性。以Set oSQLServer = Creat]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Session限制重复操作的简单方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62474.html</link>
    <description><![CDATA[有时我们要限制用户重复刷新一个页面。很多站点对于录入操作都用验证码来限制恶意灌水。但是如果是在一套web管理系统中，执行一段没有界面的逻辑操作代码时，就不能用验证码了]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ORACLE920与ASP的连接问题的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62473.html</link>
    <description><![CDATA[代码如下： 0 then Response.Write asp 错误控制 Response.Write asp 错误来源: Response.Write asp 错误代码: Response.Write asp 错误说明: err.Clear Response.Write Oracle OLE 错误控制 Response.Write]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用XSL和ASP实现XML文档在线编辑]]></title>
    <link>http://im.vc/web/asp/2011/0822/62472.html</link>
    <description><![CDATA[本文通过一个详细的例子，来阐述了在线编辑xml文档数据的方法。由于Netscape对XML的支持比较弱，因此，要实现跨平台的数据交换，数据的处理必须在服务器端进行。要编辑XML文档，首]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个socket组件及其调用方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62471.html</link>
    <description><![CDATA[这个socket组件是由开发jmail的那家公司作的。 很老的一个版本了。不过挺好的。我一直在用。 比较稳定。以前发现xmlhttp在win2003 server上不太好。流量大了iis容易当掉。用这个组件倒还算]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[温柔的杀手—跨站ASP Script攻击]]></title>
    <link>http://im.vc/web/asp/2011/0822/62470.html</link>
    <description><![CDATA[作者： BIBI 每当我们想到黑客的时候，黑客往往是这样一幅画像：一个孤独的人，悄悄进入别人的服务器中，进行破坏或者窃取别人的秘密资料。也许他会更改我们的主页，甚者会窃取]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单对象textarea内容的格式控制（回车、换行、空格）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62469.html</link>
    <description><![CDATA[!--1.htm-- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title无标题文档/title /head body form name=fo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP模仿asp.net的DataGrid]]></title>
    <link>http://im.vc/web/asp/2011/0822/62468.html</link>
    <description><![CDATA[自动生成表格，自动完成删除，编辑、填加、分页功能，自定义样式表头样式 代码用两个类来实现 一开始考虑得太多，功能想得太强大，通用性越强，asp类跑起来越慢，做到后来没兴]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[aspjpeg组件高级使用方法介绍]]></title>
    <link>http://im.vc/web/asp/2011/0822/62467.html</link>
    <description><![CDATA[aspjpeg是一款非常强大的图片处理组件，纯英文版本。不过早已经有免费版和破解版，但是对其进行详细与深入介绍的文章却是不多，即使有也只牵涉到图片缩略和图片水印。可能是因为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[针对select写了一个通用的option输出函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62466.html</link>
    <description><![CDATA[function writeSlt(arrstr,arrstrValue,selectedstr) 'arrstr 要显示在option里面的值，arrstrValue option的实际值，selectedstr要选中的默认值 '将一个字串分割为数组，输出select的option，并选中selectedstr arrs]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP技术实现文件直接上传功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62465.html</link>
    <description><![CDATA[采用WEB技术实现B/S（浏览器/服务器）结构的管理系统是办公自动化的发展趋势。基于WEB技术的管理系统，由于开发周期短；与用户平台无关；易于实现交互式应用；能对信息进行快速、]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+sqlserver 分页方法（不用存储过程）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62464.html</link>
    <description><![CDATA[我的一个asp + sqlserver的分页程序：这个程序的特点就是指将当前页的纪录掉到页面上来。性能不错，而且不用存储过程，由于代码没有封装，所以很零散，要用到你的程序中，需要先简]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无组件BMP汉字生成类+汉字点阵库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62463.html</link>
    <description><![CDATA[说明： 在256色位图中打印文字并输出 字体大小跟类型是固定的12*12宋体，如果需要其它字体可以联系本人 因为不是封装在DLL中所以执行效率不是很高 调用示列： Set objbmp = New Wh_bmpTex]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则]]></title>
    <link>http://im.vc/web/asp/2011/0822/62462.html</link>
    <description><![CDATA[性能是一个特征。您必须预先设计性能，否则您以后就得重写应用程序。就是说，有哪些好的策略可使 Active Server Pages (asp) 应用程序性能达到最佳？ 本文介绍了优化 ASP 应用程序和 Vi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决ASP执行DB查询中的特殊字符问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62461.html</link>
    <description><![CDATA[作者：csbq 在进行数据库的查询时，会经常遇到这样的情况： 例如想在一个用户数据库中查询他的用户名和他的密码，但恰好该用户使用的名字和密码中有特殊的字符，例如单引号，“]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[时间、空间性能极优的asp无组件上传类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62460.html</link>
    <description><![CDATA[在解码速度方面，化境 2.0 已经非常高了，但是，它还存在以下两个问题： 1、用Data_5xsoft.Write Request.BinaryRead(Request.TotalBytes)一次读取全部数据，以及用RequestData =Data_5xsoft.Read 一次取出全]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2003上传文件不能超过200k解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62459.html</link>
    <description><![CDATA[出处： 天极网 问题:无法上传较大的文件“Request 对象 错误 'asp 0104 : 80004005'”或者上传成功后，找不到文件名 更改Win 2003的IIS 6.0对asp的上传文件大小为200k限制，aspx的上传程序没有影响]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp:Cookies应用指南,详细代码及教程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62458.html</link>
    <description><![CDATA[实际上，在web开发中，cookie仅仅是一个文本文件，当用户访问站点时，它就被存储在用户使用的计算机上，其中，保存了一些信息，当用户日后再次访问这个站点时，web可以将这些信息]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个比较实用的asp函数集合类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62457.html</link>
    <description><![CDATA[最近迷恋上作网站了，使用asp开发，发现asp有好多的漏洞，而且在一个网站中有好多的代码是重复使用的，所以就查询了一些资料发现在asp中可以使用类的思想，所以就写了这个类，写]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中数据库文件调用的捷径]]></title>
    <link>http://im.vc/web/asp/2011/0822/62456.html</link>
    <description><![CDATA[引言 本文针对asp程序设计中最基础、也是最关键的部分数据库文件的调用进行说明，同时谈谈ASP程序设计中数据库文件调用的一些技巧。 ASP简介 ASP（Active Server Pages）是微软于1996年推]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP对FoxPro自由表(DBF文件)的操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/62455.html</link>
    <description><![CDATA[一、问题的提出 最近一个项目中遇到asp对FoxPRo库表(*.DBF)的操作问题。现实中确有许多应用软件使用DBF表，如何在网络环境中使用这些数据，使很多朋友一筹莫展。 本人也查了许多资料]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP读INI配置文件的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62454.html</link>
    <description><![CDATA[选择自 mind_1220 的 Blog 要求： 能够读取按照 INI文件的Section和Key来读出相应的Value。 比如一个配置文件 SMSVote.ini --------------------------------- [SMSVote] Server=(local) DB=SMSVote User=sa PassWord=123 [D]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP判断文件地址是否有效!]]></title>
    <link>http://im.vc/web/asp/2011/0822/62453.html</link>
    <description><![CDATA[% '原创作者:小艺 QQ:52093 时间:2005.6.30 Response.Write(headstyle!--span{ font-size: 9pt }--/style/head) On Error Resume Next Dim thisurl,thistext thisurl=Request(thisurl) '定义文件地址(非Html格式文档)! if thisurl=]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中怎么实现SQL数据库备份、恢复！]]></title>
    <link>http://im.vc/web/asp/2011/0822/62452.html</link>
    <description><![CDATA[选择自 hanghwp 的 Blog 1、asp中怎么实现SQL数据库备份、恢复！ 答：asp在线备份sql server数据库： 1、备份 % SQL=backup database 数据库名 to disk='Server.MapPath(backup)\backuptext.dat' set cnn=Serv]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现关键词获取(各搜索引擎,gb2312及utf]]></title>
    <link>http://im.vc/web/asp/2011/0822/62451.html</link>
    <description><![CDATA[不知道为什么现在各大搜索引擎编码居然不一样.当然不是gb2312就是utf-8了.编码问题是比较头疼的问题...头疼的不要命... 我们获得关键词,一般是通过来访页面的url进行分析的.比如 http]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB将ASP代码封装成DLL]]></title>
    <link>http://im.vc/web/asp/2011/0822/62450.html</link>
    <description><![CDATA[一、引言 Server端的脚本运行环境，它简单易用，不需要编译和连接，脚本可以在 Server端直接运行，并且它支持多用户、多线程，在 Web开发中得到了广泛的应用。服务器端的组件有别于]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[HTTP_REFERER的工作方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62449.html</link>
    <description><![CDATA[下列情况是从浏览器的地址栏正常取得Request.ServerVariables(HTTP_REFERER)的: 1.直接用a href 2.用Submit或input type=image提交的表单(POST or GET) 3.使用Jscript提交的表单(POST or GET) 下面我们再看看Req]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WebClasses使注册变得容易]]></title>
    <link>http://im.vc/web/asp/2011/0822/62448.html</link>
    <description><![CDATA[使用VB6的新的WebClass技术使得容易创建灵活而又功能 强大的基于Internet应用程序 今年早些时候,我们曾向你展示了如何编写一个注册应用程序,它允许用户访问你的页面并注册一个软件产]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[xmlhttp组件获取远程文件并筛选出目标数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62447.html</link>
    <description><![CDATA[getfile.asp % ''利用xmlhttp组件获取远程文件保存到当前空间 ''此是网站建设中的一个实例,远程获取一个网页内容并筛选出相关的天气数据,当然可以跳过文件本地存储再获取数据 ''参考了]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[抓取动网论坛Email地址的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62446.html</link>
    <description><![CDATA[抓取动网论坛 Email 地址的一段代码 /** 作者： 慈勤强 Email : cQQ1978@Gmail.com http://blog.csdn.net/cqq **/ 最近，一直想着怎么宣传我们的新网站，http://www.up114.com 。 搜索引擎优化自然是首选，可]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP Get HTML页面时的中文乱码之完全客户端Script解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62445.html</link>
    <description><![CDATA[常有人说，他们在使用xmlHTTP过程中，总是为中文乱码的问题烦恼。本人查阅了一些资料，结果令我失望，大家都是使用asp服务器端技术解决该问题。 先分析一下为何会出现中文乱码的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp事务处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62444.html</link>
    <description><![CDATA[当大量的对数据库进行插入，修改，删除等操作时，如果要实现事务，可以用以下代码。如： %@ TRANSACTION = Required% On Error Resume Next strSql1=insert into a(num) values(1) strSql2=insert into a(num) v]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP上两个防止SQL注入式攻击Function]]></title>
    <link>http://im.vc/web/asp/2011/0822/62443.html</link>
    <description><![CDATA['========================== '过滤提交表单中的SQL '========================== function ForSqlForm() dim fqys,errc,i,items dim nothis(18) nothis(0)=net user nothis(1)=xp_cmdshell nothis(2)=/add nothis(3)=exec%20master.dbo.xp_cm]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现文件直接下载]]></title>
    <link>http://im.vc/web/asp/2011/0822/62442.html</link>
    <description><![CDATA[在IE进行文档链接时,如果遇到OLE支持的文档,IE会自动调用相应程序打开它,有时候这种功能并不是我们所需的,虽然我们可以提醒用户用鼠标右键--目标另存为....命令来下载文档,但这样]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成XBM图可用作验证码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62441.html</link>
    <description><![CDATA[这个程序主要是先生成一个随机数，然后根据生成的随机数经过变换后作为XBM图片的内容，最后显示这个图片. 验证时中要获取输入的数字和session(validatecode)比较，如果相等则通过验证]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+FSO+框架实现ASP生成htm并分页的方法(批量)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62440.html</link>
    <description><![CDATA[还是第一次在CSDN写文章,本人文采和理论知识有限,写得不正确的地方欢迎指正。其实网上已经有很多asp生成htm的文章了 ，有一种方法是ASP+xml的生成方法，虽然有一种好处就是不用程序]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案一（通过修改注册表改变IE打印设置）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62439.html</link>
    <description><![CDATA[以下是IE打印设置脚本 script language=VBScript Dim hkey_root,hkey_path,hkey_key hkey_root = HKEY_CURRENT_USER hkey_path = \Software\Microsoft\Internet Explorer\PageSetup //IE打印设置的注册表地址 //设置修改函数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进的ASP备份SQL Server数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62438.html</link>
    <description><![CDATA[form method=post name=myform action=?action=backupdatabase 选择操作：INPUT TYPE=radio NAME=act id=act_backupvalue=backuplabel for=act_backup备份/label INPUT TYPE=radio NAME=act id=act_restore value=restorelabel]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp取动态表单中数据并写入xml文件,用xsl显示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62437.html</link>
    <description><![CDATA[1.动态表单的界面，从csdn论坛上参考 html head title无标题文档/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script language=javascript var curRow=null; var y=1; function selectRow(){ var e=wind]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于SELECT的无限级联(省|市|县|乡|村|...)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62436.html</link>
    <description><![CDATA[index.asp 程序代码： html head title/title meta content=text/html; charset=gb2312 http-equiv=content-type style type=text/CSS!-- FONT{font-size:12px} TD{font-size:12px} A{color:#333399} A:hover{color:#FF6600} --/style script lang]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单快捷实现ASP在线发邮件功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62435.html</link>
    <description><![CDATA[在编写网上应用程序时,经常碰到需要在线发送邮件的问题，邮件内容是由程序动态决定的，如果你采用的是asp方式来编写网上应用程序，如何简单、快捷地实现这一功能呢？ 笔者在实]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML技术上传文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62434.html</link>
    <description><![CDATA[概述 本文讲解了一个使用xml技术上传文件的例子，使用该方法没有传统方法中的种种限制。 这个例子讲述了如何使用MSXML3.0和ADO Stream对象来实现这种新的上传方法。好处有很多，比如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种比较方便的ASP分页程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62433.html</link>
    <description><![CDATA[span class=style45 % set conn=server.createobject(adodb.connection) DBPath = Server.MapPath(sap_mis.mdb) conn.Open driver={Microsoft access Driver (*.mdb)};dbq= DBPath set rs = server.createobject(adodb.recordset) sql = select sa]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript在ASP中实现掩码文本框]]></title>
    <link>http://im.vc/web/asp/2011/0822/62432.html</link>
    <description><![CDATA[在网页中输日期、时间、ip地址等需要一定的格式限制，否则将会程序将会很难和程序沟通。 最近在做一个程序正好需要用到此方面，在网上找到过相应的程序，但用起来都非常恶，于]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP实现文件上载（上传）的各种方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62431.html</link>
    <description><![CDATA[最近做在做项目，涉及到文件上载的问题，找来资料研究了一下。当用户需要将文件传输到服务器上时，常用方法是使用FTP方式，用FTP的话虽然传输稳定，但安全性是个严重的问题，而]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP防SQL注入攻击程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62430.html</link>
    <description><![CDATA[SQL注入被那些菜鸟级别的所谓黑客高手玩出了滋味，发现现在大部分黑客入侵都是基于SQL注入实现的，哎，谁让这个入门容易呢，好了，不说废话了，现在我开始说如果编写通用的SQL防]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP写的自动生成SELECT表单的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62429.html</link>
    <description><![CDATA[对于asp高手当然没什么用了，但是对于刚入门的初学者和美工就有些用处了。 Function selectdo(a,d,b,c) Response.writeselect name='a'optiond/option for i=b to c if i10 then i=0i end if Response.writeoption]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP创建SQL Server数据库的两种方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62428.html</link>
    <description><![CDATA[% ************ 使用ADODB.Connect对象创建 ************************ Dim oConn Dim sDatabaseName sDatabaseName = CodeCreateDB Set oConn = Server.CreateObject(ADODB.Connection) oConn.Open PRovider=SQLOLEDB;Data Source=(local);User ID]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一点ASP问题、差错和个人心得]]></title>
    <link>http://im.vc/web/asp/2011/0822/62427.html</link>
    <description><![CDATA[1.省略dim，方便但也是隐患！ 申请变量后再使用是标准方法： dim a a = 1 事实上，你不写dim也可以： a = 1 系统并不认为出错，它会自动判断a是不是一个已经存在的变量，存在就继续执]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面了解Cookie的传递流程、编程实现及安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62426.html</link>
    <description><![CDATA[Cookie在英文中是小甜品的意思，而这个词我们总能在浏览器中看到，食品怎么会跟浏览器扯上关系呢？在你浏览以前登陆过的网站时可能会在网页中出现：你好XX，感觉很亲切，就好像]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp修改注册表]]></title>
    <link>http://im.vc/web/asp/2011/0822/62425.html</link>
    <description><![CDATA[看完了这个你就可以用asp修改注册表了! 大名鼎鼎的WSH听说过吗？ 它就是Windows Script Host的缩写形式，WSH是Windows平台的脚本指令，它的功能十分强大，并且它还是利用语法结构简单、易]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用WEBSERVICE文档]]></title>
    <link>http://im.vc/web/asp/2011/0822/62424.html</link>
    <description><![CDATA[----INDEX---- 1. soap请求方式 2. post请求方式 3. SHOWALLNODE函数(关于节点各属性和数据显示) --------------------- 一．SOAP请求示例 下面是一个 SOAP 请求示例。所显示的占位符需要由实际值替换。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[输出带日期格式的随机数.asp]]></title>
    <link>http://im.vc/web/asp/2011/0822/62423.html</link>
    <description><![CDATA[% Function GetRanNum() '**************************************** '函数名：GetRanNum '作 用：输出带日期格式的随机数 '参 数：无 ---- '返回值：如GetRanNum()，即输出200409071553464617，为2004年09月07日15时53分]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成像资源管理器一样的树形目录]]></title>
    <link>http://im.vc/web/asp/2011/0822/62422.html</link>
    <description><![CDATA[树形目录显示程序 问题描述： 在我们项目中常常会出现自关联的数据表，如果我们从整体看去，整个表就呈现为一个树形数据结构（对于复杂的情况，它可能变成一个图）。当我们对]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个高效的数据分页的存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62421.html</link>
    <description><![CDATA[CREATE PROCEDURE pageTest --用于翻页的测试 --需要把排序字段放在第一列 ( @FirstID nvarchar(20)=null, --当前页面里的第一条记录的排序字段的值 @LastID nvarchar(20)=null, --当前页面里的最后一条记录的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp获取Dll加密新闻内容]]></title>
    <link>http://im.vc/web/asp/2011/0822/62420.html</link>
    <description><![CDATA[以下是代码： % on error resume next Dim objxmlHTTP, xml Set xml = Server.CreateObject(Microsoft.xmlhttp) xml.Open GET, http://chanye.finance.sina.com.cn/yj/2005-01-05/236914.shtml, False xml.Send tmpstr= xml.responseText ep=clng]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将连接数据库的代码隐藏在DLL中]]></title>
    <link>http://im.vc/web/asp/2011/0822/62419.html</link>
    <description><![CDATA[其实，大家在书写asp程序时，最担心的可能就是数据库的连接信息，会被一些人看到，进行一些破坏。下面我们用vb6.0来做一个动态链接库(.dll)来隐藏数据库的连接信息。 启动vb6.0，新]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现长文章用分页符来分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62418.html</link>
    <description><![CDATA[长文章页用分页符来显示，想用asp也实现这种功能，可发现只有根据字数进行分页的方法，但这种方法有一个BUG，就是如果你文章内容中如果有UBB代码，它很容易造成在[code][/code]之间进]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现事务处理的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62417.html</link>
    <description><![CDATA[在开发Web应用时，无一例外地需要访问数据库，以完成对数据的查询、插入、更新、删除等操作。受应用逻辑的影响，有时需要将多条数据库操作指令组成一个工作单元（事务）。在数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP面向对象编程探讨及比较]]></title>
    <link>http://im.vc/web/asp/2011/0822/62416.html</link>
    <description><![CDATA[asp是Microsoft于较早期推出的动态网页编程技术，但其结合ADO对数据库方便快捷的访问、结合xml、COM/ActiveX等其它技术 实现服务器多层结构的功能使它在今天还有着顽强的生命力，并]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中取得图片宽度和高度的类（无组件）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62415.html</link>
    <description><![CDATA[% Class ImgWHInfo '获取图片宽度和高度的类，支持JPG，GIF，PNG，BMP Dim ASO PRivate Sub Class_Initialize Set ASO=Server.CreateObject(ADODB.Stream) ASO.Mode=3 ASO.Type=1 ASO.Open End Sub Private Sub Class_Terminate Err.Clear]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个改进的ASP生成SQL 命令字符串的类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62414.html</link>
    <description><![CDATA[网上找资料发现的，但是调试的时候发现有一些问题， 改了一下，还有一定的问题，但是可以做一般使用了。 没有考虑数据类型的问题，还有SQL Server 和access的区别，以后有时间再改进]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个用ASP生成html的新方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62413.html</link>
    <description><![CDATA[目前已经有很多生成html的新闻系统，但是都是用的模板，本函数实现把asp页面产生的html代码保存成为一个html文件，这样就没有必要改动原来的页面就可以轻松完成一个生成html的新闻系]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access2000数据库80万记录通用快速分页类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62412.html</link>
    <description><![CDATA[主要思路: 用一条语句统计(Count)出记录数(而不在查询时获得 RecordCount 属性), 缓存在 Cookies 中, 跳转时就不用再次统计. 使用 ADO 的 AbsolutePage 属性进行页面跳转即可. 为方便调用而写成类]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用存储过程实现ASP对数据库访问]]></title>
    <link>http://im.vc/web/asp/2011/0822/62411.html</link>
    <description><![CDATA[一、ADO概述 ActiveX 数据对象 (ADO) 是一种既易于使用又可扩充的技术，用来将数据库访问添加到您的 Web 页可以使用 ADO 编写简洁和可升级的脚本以连接到与 OLE DB 兼容的数据源，如数据库]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将指定的asp文件内容生成HTML文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62410.html</link>
    <description><![CDATA[% Function GetPage(url) dim Retrieval Set Retrieval = CreateObject(Microsoft.xmlHTTP) With Retrieval .Open Get, url, False ', , .Send GetPage = BytesToBstr(.ResponseBody) End With Set Retrieval = Nothing End Function Function Bytes]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模仿PHP写的ASP分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62409.html</link>
    <description><![CDATA[% ' 分页程序 ' total_records 总记录数 ' everypage_records 每页显示条数 ' current_page 当前页数 ' url 要传递的url，这里可以含有要传递的变量，比如 list.asp? 或者list.asp?keyWord=key ' 程序调用比较]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学会在ASP中使用存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62408.html</link>
    <description><![CDATA[学习使用存储过程(Stored PRocedure)，是asp程序员的必须课之一。所有的大型数据库都支持存储过程，比如Oracle、MS SQL等，（但MS access不支持，不过，在Access里可以使用参数化的查询）。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Session记录页面地址和实现页面返回功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62407.html</link>
    <description><![CDATA[在开发过程中为了满足客户的要求要实现这样一个功能:在A页面内点击一个文字连接后进入C页面,在点击返回按钮后可以返回A页面,而在B页面也有该文字连接,点击后进入C页面,返回时则返]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何防止ASP木马在服务器上运行]]></title>
    <link>http://im.vc/web/asp/2011/0822/62406.html</link>
    <description><![CDATA[如果您的服务器正在受asp木马的困扰，那么希望这篇文章能帮您解决您所面临的问题。 目前比较流行的ASP木马主要通过三种技术来进行对服务器的相关操作。 一、使用FileSystemObject组件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server 存储过程的分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62405.html</link>
    <description><![CDATA[建立表： CREATE TABLE [TestTable] ( [ID] [int] IDENTITY (1, 1) NOT NULL , [FirstName] [nvarchar] (100) COLLATE Chinese_PRC_CI_AS NULL , [LastName] [nvarchar] (100) COLLATE Chinese_PRC_CI_AS NULL , [Country] [nvarchar] (50) COLLATE Chine]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中CACHE技术的应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62404.html</link>
    <description><![CDATA[asp从发布至今已经7年了，使用ASP技术已经相当成熟，自从微软推出了asp.net之后就逐渐停止了对ASP版本的更新。但是由于有很多人仍然习惯使用ASP来开发网站，所以，再次我将以一个简]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP连接数据库的全能代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62403.html</link>
    <description><![CDATA['解决了access数据库路径的问题！ '采用DBType=0或DBType=1来区分AC库还是MSSQL库 '具体采用AC库时应注意的事项，请看程序说明 ----------------------------------------------- Dim DBType,Conn,StrConn DBType=0]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中和星期有关的自定义函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62402.html</link>
    <description><![CDATA[最近有一个计算周的需要，看了网上现成的代码，不太合适，只好自己动手了。 默认把该年第一个星期一作为第一周的开始。 '计算某年第一周开始日期 function firstday(inputyear) for i=cda]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS6架设网站常见问题及症状举例答疑]]></title>
    <link>http://im.vc/web/asp/2011/0822/62401.html</link>
    <description><![CDATA[很多朋友在用IIS6架网站的时候遇到不少问题，而这些问题有些在过去的IIS5里面就遇到过，有些是新出来的，做了很多次试验，结合以前的排错经验，做出了这个总结，希望能给大家帮]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件生成BMP验证码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62400.html</link>
    <description><![CDATA[Call Com_CreatValidCode(ValidCode) Sub Com_CreatValidCode(pSN) 'Author: Layen 'QQ: 84815733 'E-mail: support@ssaw.net ' 禁止缓存 Response.Expires = -9999 Response.AddHeader PRagma,no-cache Response.AddHeader cache-ctrol,no-cach]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用JavaScript来写ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62399.html</link>
    <description><![CDATA[%@Language=javaScript % % function OpenDB(dbname) { var connstr = PRovider=Microsoft.Jet.OLEDB.4.0; Data Source=+Server.MapPath(dbname); var conn = Server.CreateObject(ADODB.Connection); conn.Open(connstr); return conn; } var sResult]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP与ASP.NET在COOKIE方面的区别]]></title>
    <link>http://im.vc/web/asp/2011/0822/62398.html</link>
    <description><![CDATA[//asp.net //读 Request.Cookies(test).value; //写 var cookie : HttpCookie = new HttpCookie(test); cookie .value = abc; Response.Cookies.Add(cookie ); //ASP //读 Request.Cookies(test); //写 Response.Cookies(test) = abc; //若C]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防护手册：如何防止ASP木马在服务器上运行]]></title>
    <link>http://im.vc/web/asp/2011/0822/62397.html</link>
    <description><![CDATA[如果您的服务器正在受asp木马的困扰，那么希望这篇文章能帮您解决您所面临的问题。 目前比较流行的ASP木马主要通过三种技术来进行对服务器的相关操作。 一、使用FileSystemObject组件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[较长数据无法在Asp页面中取出的三种解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62396.html</link>
    <description><![CDATA[较长text型数据无法在asp页面中取出的解决办法 在Asp页面中向记录集取长text型数据时，出现如下错误现象时： Microsoft OLE DB PRovider for ODBC Drivers 错误 '80040e21' Errors occurred 可有以下三种解]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈ASP中Web页面间的数据传递]]></title>
    <link>http://im.vc/web/asp/2011/0822/62395.html</link>
    <description><![CDATA[往往使用动态网页技术制作asp应用程序时一般至少拥有二个或二个以上的Web页面，这时就得考虑在多个Web页面间传递数据的处理工作。而ASP应用程序的各个页面类似于Windows应用程序的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[水晶报表打印单据时增加空行或空白行的示例脚本]]></title>
    <link>http://im.vc/web/asp/2011/0822/62394.html</link>
    <description><![CDATA[假设我们的单据每张共打印五行，则最多会增加空白行4行， 在重复出现的表体中定义四个空白节。 我们首要的任务是根据记录数来确定这四个节什么时候显示，什么时候不显示。 我们]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决使用ASP无法连接ORACLE 9i数据库的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62393.html</link>
    <description><![CDATA[今天，在一台WIN2K SERVER 服务器上，通过asp安装在本机的 Oracle9i 数据库时，发现错误，根本无法连接上数据库。其错误描述如下： Microsoft OLE DB PRovider for ODBC Drivers 错误 '80004005' [Microso]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把文章内容中涉及到的图片自动保存到本地服务器]]></title>
    <link>http://im.vc/web/asp/2011/0822/62392.html</link>
    <description><![CDATA[% const savepath=tempfile/ function myreplace(str) newstr=str set objregEx = new RegExp objregEx.IgnoreCase = true objregEx.Global = true objregEx.Pattern = http://(.+?)\.(jpg|gif|png|bmp) set matches = objregEx.execute(str) for each ma]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初试WAP之wml＋ASP查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/62391.html</link>
    <description><![CDATA[搞了这么多年计算机，第一次写文章到网上来！见笑了 程序目的：工作需要，查询企业注册资料的朋友太多了，省得麻烦，在网站上增加了查询功能，居然有人说没有电脑，没电脑也该]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+Access莫名奇妙的sql语句错误解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62390.html</link>
    <description><![CDATA[有时候写asp用conn.execute(sql)查询、更新、插入access数据库数据时，明明正确的语句却往往会显示sql语句错误，相当恼火，特进行了归纳，可适当为字段添加“［”、“］”解决： 例１：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网站首页的静态生成方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62389.html</link>
    <description><![CDATA[方法一 % '常用函数 '1、输入url目标网页地址，返回值getHTTPPage是目标网页的html代码 function getHTTPPage(url) dim Http set Http=server.createobject(MSxml2.xmlhttp) Http.open GET,url,false Http.send() if Http.re]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[两个不同数据库表的分页显示解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62388.html</link>
    <description><![CDATA[程序实现功能：两个数据表的数据分页显示 最近我遇到一个比较少见的需求,不知大家是否也有遇到过,说出来与大家分享. 客户需求:两部分数据,分别来自不同位置的两个数据库中的两个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获取客户端MAC地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62387.html</link>
    <description><![CDATA[本程序属于一种特别的方法。使用范围比较有限，而且有一定的危险性。借鉴了asp后门里的一些方法。下面是程序代码。 % dim remoteaddr if Request.ServerVariables(HTTP_X_FORWARDED_FOR)=empty then r]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用正则表达式实现模式图片新闻.ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62386.html</link>
    <description><![CDATA['文字或特定图片模式显示新闻 function shownew(content,ntype) shownew = if(ntype = 1) then shownew = shownew TABLE width=100% shownew = shownew TR shownew = shownew TD width=600 style='Word-break:break-all' valign=top]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用组件封装数据库操作(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62385.html</link>
    <description><![CDATA[其实，大家在书写asp程序时，最担心的可能就是数据库的连接信息，会被一些人看到，进行一些破坏。下面我们用vb6.0来做一个动态链接库(.dll)来隐藏数据库的连接信息。 启动vb6.0，新]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在不支持FSO的服务器上使用XMLDOM创建HTML文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62384.html</link>
    <description><![CDATA[有些朋友的主机不支持fso,但又要生成HTML文件,是不是有些为难呢? 而现今支持asp的主机一般都采用微软OS,而这些OS一般都是win2k server及以上系统,就算不安装xml PARSER同样会支持XML parser解析]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中执行Ping命令，并且返回结果]]></title>
    <link>http://im.vc/web/asp/2011/0822/62383.html</link>
    <description><![CDATA[在Win2000系统中，可以通过Wscript.Shell对象的Exec方法执行命令， 简单的代码如下： % Response.Buffer = true % % url = www.toPRonet.com Set objWShell = CreateObject(WScript.Shell) Set objCmd = objWShell.Exec(ping]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用组件封装数据库操作(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62382.html</link>
    <description><![CDATA[前段日子发表的文章，数据库的连接代码可以直接在asp文件中显示出来。这次又进行了一次封装。 打开vb，新建Activex控件，工程名称为WebDb，类模块名称为GetInfomation 引用”Microsoft Act]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用一套论坛程序架设多个论坛]]></title>
    <link>http://im.vc/web/asp/2011/0822/62381.html</link>
    <description><![CDATA[对付抠门的空间服务商，以前大家想到了用链接数据表的方法存放更大的数据库。现在再给大家讲述另一个方法：用一个论坛的代码运行两个论坛程序。这样可以绕开那些以服务器CPU占]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用adodb.stream直接下载任何后缀的文件(防盗链)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62380.html</link>
    <description><![CDATA[原作:possible_Y,载自时代课堂 在浏览器的地址栏里直接输入一个doc或xls或jpg的文件的url路径，那么该文件会直接显示在浏览器里。而在很多时候我们希望能直接弹出下载提示框让用户下载]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在pb中创建COM组件，并在asp中调用并返回结果集？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62379.html</link>
    <description><![CDATA[启动pb7.0,创建一个不可视的用户对象uo_customer,新建object,选择custom class 类型，点击ok。 在新创建的用户对象中编写如下程序: 1.声明实例变量instance variables，对于com中不支持的类型]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈ASP中Request对象获取客户端数据的顺序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62378.html</link>
    <description><![CDATA[/** 描述：在使用asp Request对象时需要注意的小问题 作者：慈勤强 Email ： cQQ1978@yeah.net **/ 在ASP中Request对象是获取客户端提交数据的一个很重要的对象，大家对他也是非常熟悉了。 虽然]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程控制在IIS建立Web站点的程序代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62377.html</link>
    <description><![CDATA['***************************************************** ' 创建一个WebServer ' 必须参数：WRoot,为创建站点的物理目录；WComment为站点说明；WPort为站点端口；ServerRun为是否自动运行 ' 当创建成功时返回]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP和Microsoft.XMLDOM分析远程XML文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62376.html</link>
    <description><![CDATA[用xmldom方法打开xml文件，如果是本地的没有问题，就是用Server.MapPath(xml.xml)的方法，这时能正常分析出内容，但是直接用url却不显示出xml内容（在XMLDOM里表示是支持URL方式的），后来研]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Server Application Error详细解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62375.html</link>
    <description><![CDATA[简介 IIS5的HTTP 500内部服务器错误是我们经常碰到的错误之一，它的主要错误表现就是asp程序不能浏览但HTM静态网页不受影响。另外当错误发生时，系统事件日志和安全事件日志都会有相]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VBScript操作Html复选框（CheckBox）控件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62374.html</link>
    <description><![CDATA[这两天看到有朋友问起html内的各种控件怎么用script进行操作，现在自己也总结一下。因为项目原因，很多程序都是用VBScript写的，感兴趣的朋友可以改写成javaScript，到时候别忘了共享一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈无刷新取得远程数据技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/62373.html</link>
    <description><![CDATA[刷新技术经历了大致几个阶段: 一、在HTML文件头里增加一个键,使该页面在设定的时间后跳转到指定的页面(包括自身); 例如: meta http-equiv=refresh content=30 二、使用框架然后在JS脚本里定]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP动态生成的javascript表单验证代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62372.html</link>
    <description><![CDATA[以网上down了一个asp动态生成Form验证javascript的代码，自己扩容了一下。作者的大名我给忘了，不过我记得清楚，从第一条至第九条的代码都是该作者的原创。至于九至第十五条却是本人]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[升级MD5.ASP，打造完全动态不重复的安全加密代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62371.html</link>
    <description><![CDATA[做一个完全动态的密码，让相同的密码生成不同的结果 密码aaa经过第一次运算后结果为： jlce1d65ec3b91556234879c9db8f6da1123 第二次： hjmnbe0d01cc1fbd3e18ae7431fa52fb3ce4 第三次： grttb05901915e121d83e]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP纪录集输出成n列的的表格形式显示的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62370.html</link>
    <description><![CDATA[前些日子有网友问：将asp纪录集输出成n列的的表格形式显示的方法，现在写了一个，方便大家使用。 '定义变量 Dim cn,rs,Sql Sql = select CustomerID from Orders '记录总数 Dim TotalNumbe Set cn = Se]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp模块化分页制作详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/62369.html</link>
    <description><![CDATA[模块化分页 1.查询语句块 % 取得当前文件名 temp = Split(request.ServerVariables(URL), /) fy = temp(UBound(temp)) set rs=server.createobject(adodb.recordset) if not isempty(request(page)) then pagecount=cint(request(p]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将身份证从15位升级为18位的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62368.html</link>
    <description><![CDATA['将身份证从15位升级为18位的函数 Function GetNewIDCard(ByVal IDCard As String) As String Dim i, S As Integer Dim Wi() As String = Split(7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2,1, ,) Dim Wf() As String = Split(1,0,X,9,8,7,6,5,4,]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中通过oo4o连接Oracle数据库的例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62367.html</link>
    <description><![CDATA[下面这段代码能够显示，当前用户所能够看到的所有的用户和表，有兴趣的， 可以把每个表的内容加上 % Dim objOrasession,objOraDb Dim strDbUser,strDbPwd,strDbConn Call ConnectDB() Sub ConnectDB() '连接数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP安全检测与过滤函数SafeCheck]]></title>
    <link>http://im.vc/web/asp/2011/0822/62366.html</link>
    <description><![CDATA['作用:安全字符串检测函数 '名字:SafeCheck '参数:CheckString,CheckType,CheckLength '说明: 'Checkstring待检测字符串:任意字符. 'CheckType检测类型0正常短字符1数字2日期3金钱4编码HTML5解码HTML6登录字符]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中从数据库读取二进制文件数据代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62365.html</link>
    <description><![CDATA[% driver_name1=DRIVER={Microsoft access Driver (*.mdb)}; DBQ=D:\数据库\TREE.MDB '根目录下数据库打开语句 dim search,rs,j search=select * from Files where ID= request.querystring(ID) set my_conn=server.CreateObject (adodb]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据分页方法新思路，速度非常快！]]></title>
    <link>http://im.vc/web/asp/2011/0822/62364.html</link>
    <description><![CDATA[这篇文章要达到的目的就是，实现大数据分页浏览并最优化速度。 建立一个web 应用，分页浏览功能必不可少；这个问题也是长久以来最普遍的问题，目前也得到了较好的解决，其中象]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中，用JScript脚本实现分页的另类办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62363.html</link>
    <description><![CDATA[%@LANGUAGE=javaSCRipT CODEPAGE=936% !--#include file=connect.asp-- !--#include file=news.asp-- % var DataSet,sql,DataList; var i=0; var j=0; DataList=new News(); DataSet=Server.CreateObject(Adodb.recordset); sql=select * from New]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp查询xml的代码，实现了无刷新、模糊查询功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62362.html</link>
    <description><![CDATA[html head title不刷新页面查询的方法/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head script language=javascript !--初始化，将数据岛中数据装入列表框中-- function loadinsel() { var em]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看服务器Application/Session变量工具]]></title>
    <link>http://im.vc/web/asp/2011/0822/62361.html</link>
    <description><![CDATA[%@LANGUAGE=javascript CODEPAGE=936% % Response.Expires = 0; Response.Buffer = true; var tPageStartTime = new Date(); % html head title网站-application变量-session变量/title meta http-equiv=Content-Type content=text/html; charse]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中同一个用户不允许同时登陆两次]]></title>
    <link>http://im.vc/web/asp/2011/0822/62360.html</link>
    <description><![CDATA[登陆页login.asp: % if request.Form.count0 then session(username)=request(username) application(session(username))=session.SessionID response.Redirect(index.asp) end if % form method=post action= input type=text name=username]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[超级ASP大分页_我的类容我做主]]></title>
    <link>http://im.vc/web/asp/2011/0822/62359.html</link>
    <description><![CDATA[% '========================================== 'ShowMorePage asp版本 'Version HuangJM1.00 'Code by maomao 'Create Date 2004-09-28 'QQ:5144707 'http://blog.csdn.net/maomaoysq 'Write for my lover:HuangJM '本程序可以免费使用、修改，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分栏显示记录集的表格演示，并实现了分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62358.html</link>
    <description><![CDATA[!-- 本示例演示一个通用的记录集分栏显示，因为有的时候显示产品等要每行显示若干个，而不是每行显示一个。如有有这种分栏显示的表格，直接把下面的代码套进去就行了，本示例是]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己写的一个简单ASP调用存储过程查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/62357.html</link>
    <description><![CDATA[本文用到没有用到adodb.command命令，只是简单的做了一个用adodb.recordset来执行存储过程。 存储过程： '在SQL中建立dbo.tse存储过程 CREATE PROCEDURE [dbo].[tse] @keyWord varchar(20)=null, '定义查询的关]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个asp函数， 解决SQL Injection漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0822/62356.html</link>
    <description><![CDATA[/** 作者：慈勤强 Email： cQQ1978@Gmail.com */ 函数很简单， 主要是针对字符串和数字两种类型的传入数据分别进行了处理，具体用法： 字符类型的 strUsername = CheckInput(Request(“username“),“]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Adodb.Stream的写数据库数据到客户端文件的实践]]></title>
    <link>http://im.vc/web/asp/2011/0822/62355.html</link>
    <description><![CDATA[这是一个从服务器数据库直接下数据到客户端文件的例子，文件名和扩展名可以根据需要随便写。new/temp.htm要求真实存在，其实没有什么作用，只是引导一下，否则不能对stram数据进行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP登陆验证页应做的安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62354.html</link>
    <description><![CDATA[应对asp溢出漏洞我们应该做全面的字符过滤 一种是会员登陆 下面这一段代码是把username的非法字符过滤掉 % username=trim(request.form(username)) userpws=trim(request.form(passWord)) if username= or u]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中利用COM组件开发Web应用程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62353.html</link>
    <description><![CDATA[作者: 沈晓刚 如果你是一名Active Server Page (asp) 开发者，相信你可能经常使用COM对象来创建ASP页面。甚至在你使用中都忽略了他就是COM对象。比如：ADO。只个调用率最高的组件已让你的页]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP与JAVASCRIPT配合实现多个复选框数据关联显示]]></title>
    <link>http://im.vc/web/asp/2011/0822/62352.html</link>
    <description><![CDATA[作者：平凡点滴【一凡】 HTML HEAD META NAME=AUTHOUR Content=DANNY KANG META NAME=CreateDate Content=2004-10-28 META NAME=KeyWords Content=DANNY KANG,DannyKang,DK,[D.K],pizz META http-equiv=content-type content=text/ht]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用ORACLE存储过程并返回结果集]]></title>
    <link>http://im.vc/web/asp/2011/0822/62351.html</link>
    <description><![CDATA[asp 调用 Oracle存储过程并返回结果集 看过网上好多ASP调用ORACLE的方法，但是没有特好特直接的东西，所以总结各家的东西最后得出的一个自己需要的方法，感觉也比较大众所以特此发布]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何利用COM+，来提高ASP执行权限的问题!]]></title>
    <link>http://im.vc/web/asp/2011/0822/62350.html</link>
    <description><![CDATA[我们知道，想在一个操作系统执行任何一个操作都是需要用户的。然后操作系统会检查该用户是否有权限执行这个操作的权限，如果有，就会执行，如果没，就会拒绝。这和我们浏览网]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2003下不注册组件用ASP发邮件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62349.html</link>
    <description><![CDATA[其实asp可以做很多事，只是大家不知道怎么用而以。微软为asp提供了非常多的现成有用的组件，而这些组件却没有人知道，如用CDO.Message发送邮件。 什么是CDO.Message？在winnt和win2k下发送]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 中健壮的页结构的异常处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62348.html</link>
    <description><![CDATA[错误处理是让程序员牢骚满腹的东西之一。让我们来面对它，我们不写错误的代码就是了。。。或者类似的想法。不幸的是，代码中的运行时错误可能有许多的原因，从硬件、软件的改]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP的Debug变得简单的两个函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62347.html</link>
    <description><![CDATA[% '--------------------------------------------------------------------------- ' 程序作用:打印request.form输入的所有值 '--------------------------------------------------------------------------- Response.Write FormData() functi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Form域中Post大于100K的数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62346.html</link>
    <description><![CDATA[当表单发送的数据量很大时，就会报错。查阅MSDN了解到，原因是微软对用Request.Form()可接收的最大数据有限制，IIS4中为80K字节，IIS5中为100K字节。 下面是微软提供的几个解决方法: 1、用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Adodb.Command 平时很少注意到的一个参数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62345.html</link>
    <description><![CDATA[我们在 asp 中调用 SQL Server 的存储过程时，如果使用 Adodb.Command 对象，通常使用如下的代码： dim cmd, rs set cmd = Server.CreateObject(ADODB.Command) cmd.ActiveConnection = conn cmd.CommandType = adCmdStoredP]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用J2ME与ASP建立数据库连接]]></title>
    <link>http://im.vc/web/asp/2011/0822/62344.html</link>
    <description><![CDATA[J2ME是利用HttpConnection建立HTTP连接，然后获取数据，asp也是利用HTTP协议，因而可以利用J2ME与ASP建立连接，从而访问数据库。ASP是MicroSoft公司的服务器端动态页面技术，可以根据请求运行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp.Net控件加载错误的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62343.html</link>
    <description><![CDATA[开发基于asp.net的系统，最初使用R.a.d Treeview 2.5，经常会出现控件无法加载的情况。原以为是控件本身的问题，可后来将R.a.d Treeview升级到3.0版，还是无法解决。去Terelik官方网站看了F.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现自动建站.实现虚拟二级目录]]></title>
    <link>http://im.vc/web/asp/2011/0822/62342.html</link>
    <description><![CDATA[以前写了一个自动生成网站的建站系统.可是最近要写一个不要自动生成,而是要做到: http://www.knowsky.com/用户名 所以我想一个用户建立一个目录.可是我想如果上W个用户.那不是我要建立上]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用通ASP直接获取用户真实IP地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/62341.html</link>
    <description><![CDATA[通用FUNCTION，如果不能取真实ip，就会取代理IP PRivate Function getIP() Dim strIPAddr If Request.ServerVariables(HTTP_X_FORWARDED_FOR) = OR InStr(Request.ServerVariables(HTTP_X_FORWARDED_FOR), unknown) 0 Then strIPAdd]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP下载系统防盗链方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62340.html</link>
    <description><![CDATA[以动感下载系统为例: 打开文件 SoftDown.asp 在： if request.QueryString(ID)= then response.write 不能连接或者没有指定下载软件 response.end end if 的上面或者是下面加上下列代码 dim strReferer,dom]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP关于动态数据显示页面得锚点]]></title>
    <link>http://im.vc/web/asp/2011/0822/62339.html</link>
    <description><![CDATA[静态页面的锚点问题应该都不会有什么问题，今天遇到一个关于动态数据显示页面的锚点问题，研究了一下，拿出来和大家分享。 锚点是“top”，可以放在页面的任何位置，一般是页首]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写计数器的优化方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62338.html</link>
    <description><![CDATA[很多的网站都有记数器，用来记录网站的访问量，这给网站管理员即时了解本网站的运行及访问情况提供了很多的方便。笔者研究过很多用asp编写的计数器程序，发现大部份都是在一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[adodb.stream对象的方法/属性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62337.html</link>
    <description><![CDATA[Cancel 方法 使用方法如下 Object.Cancel 说明：取消执行挂起的异步 Execute 或 Open 方法的调用。 Close 方法 使用方法如下 Object.Close ：关闭对像 CopyTo 方法 使用方法如下 Object.CopyTo(destStream,[]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP建立虚拟的FTP服务器]]></title>
    <link>http://im.vc/web/asp/2011/0822/62336.html</link>
    <description><![CDATA[在asp中采用组件或无组件上传技术，均可以实现文件的上传功能。由此我们可以采用ASP的无组件上传技术，在我们自己的网站上建立一个虚拟的FTP服务器， 象真正的FTP服务器一样，为多]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用智岛网格控件全过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62335.html</link>
    <description><![CDATA[智岛网格控件作为数据的表示层，可以非常方便的进行货币样式、人民币大小写、中文大小写、各种逻辑样式、百分比样式、千分位分割等样式设置；可以冻结、锁定行列、对输入数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP/ASP.NET 中处理客户端数字证书]]></title>
    <link>http://im.vc/web/asp/2011/0822/62334.html</link>
    <description><![CDATA[客户端数字证书与基本身份验证（Basic）、域服务器的摘要式身份验证、集成 Windows 身份认证或自定义的 Form 认证等方式相比，虽然部署和管理方面稍微复杂一些，但安全性也更好一些]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过ASP远程注册自己的组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62333.html</link>
    <description><![CDATA[把asp程序作成dll很多好处，但是有一点，该dll必须注册才能在asp中调用。如果是自己的服务器那还好，但如果是租用的虚拟服务器，就没办法使用了。 怎样在远程主机上注册我们的dl]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在HTML页面中实现点击数统计]]></title>
    <link>http://im.vc/web/asp/2011/0822/62332.html</link>
    <description><![CDATA[在文章发布系统中采用服务器端生成静态页面的方法可以有效减轻服务器的负担，特别是对大流量网站非常有效。但是既然生成的是静态页面，生成时是什么样，显示就是什么样了，对]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现汉字转拼音的功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62331.html</link>
    <description><![CDATA[% Set d = CreateObject(Scripting.Dictionary) d.add a,-20319 d.add ai,-20317 d.add an,-20304 d.add ang,-20295 d.add ao,-20292 d.add ba,-20283 d.add bai,-20265 d.add ban,-20257 d.add bang,-20242 d.add bao,-20230 d.add b]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检测IP地址是否真正合法的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62330.html</link>
    <description><![CDATA[function checkip2(sIPAddress) { var exp=/^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/; var reg = sIPAddress.match(exp); var ErrMsg=你输入的是一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在PPC上实现编译ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62329.html</link>
    <description><![CDATA[自从买了PPC以后每天都是惊奇不断，显示发现PPC上可以编程序，今天又发现在PPC上可以写asp还带IIS一样的服务器！ 只需要安装几个软件，支持ppc上的cdb数据库读写，但是个别ASP语句不支]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP字数计算函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62328.html</link>
    <description><![CDATA[% 'asp字数计算函数 Function WordCount(strInput) Dim strTemp strTemp = Replace(strInput, vbTab, ) strTemp = Replace(strTemp, vbCr, ) strTemp = Replace(strTemp, vbLf, ) ' 删除字首字尾空格 strTemp = Trim(strTemp) ' 替换为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADSI编程实现IIS中建立虚拟目录]]></title>
    <link>http://im.vc/web/asp/2011/0822/62327.html</link>
    <description><![CDATA[conn.asp不再贴出。 这里从数据库中读出目录名 !--#include file=conn.asp-- % 'response.end '//这是做调试时用的 on error resume next Set Rs=Server.CreateObject(ADODB.Recordset) Rs.ActiveConnection = MyConnection Sql]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP随机生成文件名的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62326.html</link>
    <description><![CDATA[html meta http-equiv=Refresh content=2 !-- Place this code into an asp Page and run it! -- code Random FileName Creation % Function Generator(Length) dim i, tempS, v dim c(39) tempS = c(1) = a: c(2) = b: c(3) = c: c(4) = d: c]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp做access的远程接口]]></title>
    <link>http://im.vc/web/asp/2011/0822/62325.html</link>
    <description><![CDATA[以前看到很多网友问，自己有两台服务器，如何这两台服务器上的mdb数据库数据的互访。今天作了个远程的接口，以xml形式返回mdb中的数据。用的主要思想是通过recordset对象的save方法将]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不刷新页面筛选数据库中的数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62324.html</link>
    <description><![CDATA[我在作asp程序时经常遇到这种情况： 将数据库中的数据（如所有雇员名）列在列表框中，程序要求进行选择其中一项或多项提交到下一个页面。 但麻烦的是如果数据(如雇员)过多，会给]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[单页面判断浏览器是否接受 Cookies]]></title>
    <link>http://im.vc/web/asp/2011/0822/62323.html</link>
    <description><![CDATA[在 asp 应用中，经常用到 session 对象来保存用户临时私有数据，而 asp 的 Session 对象是依赖于浏览器的 Cookie 的，如果用户出于安全原因或者无意中关闭了 Cookie 选项，则 asp 将无法正确识]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ISAPI过滤器增强IIS的功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62322.html</link>
    <description><![CDATA[作为一个WWW服务器软件，微软公司的Internet Infomation Server（IIS）简单易学，管理方便，得到了广泛的使用。您还可以通过ISAPI过滤器，进行自己定制的处理，来增强IIS的功能。ISAPI过滤器]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[错误80004005信息处理方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62321.html</link>
    <description><![CDATA[1.错误信息（错误信息我不用翻译成中文了把，呵呵，大家谅解） Microsoft OLE DB PRovider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft access 97 Driver] The Microsoft Jet database engine cannot open th]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 中 Split 函数的实例]]></title>
    <link>http://im.vc/web/asp/2011/0822/62320.html</link>
    <description><![CDATA[大家有碰到过要想取一字符串里的某些值而无从下手？有没有觉得看书或教材对split的写法糊里糊涂……如果有此疑问的话，请看下面我对例子的解释，相信您会对这个有一定的了解。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用均速分页法提高分页速度]]></title>
    <link>http://im.vc/web/asp/2011/0822/62319.html</link>
    <description><![CDATA[一、适用范围 均速分页法主要适用于文章系统，新闻系统等排序方法固定的asp+access应用 二、特点说明 很多用过一些文章系统或是新闻系统的朋友知道，一般的文章系统或是新闻系统，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP自定义函数，仿VBA中域函数DLookup]]></title>
    <link>http://im.vc/web/asp/2011/0822/62318.html</link>
    <description><![CDATA[Function dlookup(strFieldName, strTableName, strWhere, objConn) '参考access VBA 中的Dlookup函数 '由于环境不同，加了ObjConn参数，直接将Adodb.connection直接调进来 Dim strsql Dim rs Set rs = server.CreateObject(adodb]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习:urldecode 方法补遗]]></title>
    <link>http://im.vc/web/asp/2011/0822/62317.html</link>
    <description><![CDATA[asp 里面没有urldecode函数，好象aspx里有吧，我不太清楚，但asp里面还是用得很多。在网上查找了有别人写的urldecode函数，但是这个函数有错误，而且在一些方面写得比较难理解。而且有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你一次下载网页中的所有资源]]></title>
    <link>http://im.vc/web/asp/2011/0822/62316.html</link>
    <description><![CDATA[看过一篇关于下载网页中图片的文章，它只能下载以http头的图片，我做了些改进，可以下载网页中的所有连接资源，并按照网页中的目录结构建立本地目录，存放资源。 download.asp?url]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[6行代码实现无组件上传]]></title>
    <link>http://im.vc/web/asp/2011/0822/62315.html</link>
    <description><![CDATA[stimson（原作） 目前有很多无组件上传类，我大概看了一下，大多写的相当复杂，有的居然还只能传文本最关键的是没有10行代码以下的 ：）我花了一个晚上时间研究了一下ADODB.Stream，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中存储过程调用的两种方式及比较]]></title>
    <link>http://im.vc/web/asp/2011/0822/62314.html</link>
    <description><![CDATA[beerfroth（原作） 本人用sql server 和asp写了一个简单的留言本，在不断的尝试中发现，分页显示留言的时候，不同的执行方式，时间上的一些差别。 下面通过对比来看看几种方式的用时对]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中取得服务器网卡的MAC地址、DNS地址等网络信息]]></title>
    <link>http://im.vc/web/asp/2011/0822/62313.html</link>
    <description><![CDATA[前言，笔者由于前段时间要做一个MIS系统的开发，由于该MIS为一个非免费软件，故在完成该系统开发时相应的注册模块也须开发，由于为B/S结构的系统，所以在注册特征码的选择上我选]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VS2003调试ASP的方法和体会]]></title>
    <link>http://im.vc/web/asp/2011/0822/62312.html</link>
    <description><![CDATA[一直以来，和很多朋友一样，我调试asp一般都是用editplus，当然，界面部分还是要用用什么frontpage之类的啦。 前段时间写.net项目，装了一个VS.net2003，最近要写一个asp的项目，后来想想]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[升级到2003后访问数据库发生8007007f错误的解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62311.html</link>
    <description><![CDATA[datevalue（翻译） 2000升级到2003后使用asp访问数据库时，在conn.open始终发生8007007f错误 重装IIS和SQL Server均得不到解决。 经查，发现部分系统升级到2003后的确会发生此错误，并且找到了解]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中轻松实现变量名－值变换]]></title>
    <link>http://im.vc/web/asp/2011/0822/62310.html</link>
    <description><![CDATA[nhconch [原作] 用过php的朋友都知道，PHP中变量的使用灵活方便，特别是能在字符串中方便实现变量名－值变换，使得整个PHP代码更显简洁优美。比如一条更新数据库的SQL语句只需写成：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP代码的对象化]]></title>
    <link>http://im.vc/web/asp/2011/0822/62309.html</link>
    <description><![CDATA[doface（原作） 提起asp很多人就认为是一堆HTML脚本和被括在%和%之中的一些代码还有就是一些javaSCRipT脚本等筹在一起的一些代码的集合，这样的代码，再加上各类的不同格式的注释，看]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为Html 的Select 加一个提示语和输入方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62308.html</link>
    <description><![CDATA[xieyj（原作） Html Head SCRipT LANGUAGE=javaScript !-- //定义 select 原值 var oldValue,oldText; //select下拉框的onkeydown事件，修改下拉框的值 function catch_keydown(sel) { switch(event.keyCode) { case 13: //回车键]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中对ip进行过滤限制函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62307.html</link>
    <description><![CDATA[看了一些ip限制的函数，觉得太复杂。所以，试着写了一个，比较简单。请网友参考指教。谢谢！～ 代码拷贝框 %'获取访问者的地址ip=Request.ServerVariables(REMOTE_ADDR) '允许的IP地址段为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用缓存提高asp程序的性能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62306.html</link>
    <description><![CDATA[onlytiancai [原作] !--为了提高asp程序的性能,人们常常将经常使用的数据缓存在 application, 但是你修改了数据库后怎么让application更新呢,本文给你提供了一个合理的解决办法, 如果谁有更好]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ACCESS转化成SQL2000需要注意的几个问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62305.html</link>
    <description><![CDATA[很多朋友想用SQL2000数据库的编程方法，但是却又苦于自己是学access的，对SQL只是一点点的了解而已，这里我给大家提供以下参考---将ACCESS转化成SQL2000的方法和注意事项 一，首先，我说]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp无组件上传进度条解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62304.html</link>
    <description><![CDATA[出处:宝玉BLOG 一、无组件上传的原理 我还是一点一点用一个实例来说明的吧，客户端HTML如下。要浏览上传附件，我们通过input type=file元素，但是一定要注意必须设置form的enctype属性为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Xml2OleDb将XML文件插入到数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62303.html</link>
    <description><![CDATA[原文：http://aspalliance.com/articleViewer.aspx?aId=477pId=-1 作者：Andrew Mooney 翻译：孟子E章 [下载源代码http://aspalliance.com/download/477/ASPAlliance477.zip] xml2OleDb简介 XML是互联网共享数据的最好的方法，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加速ASP程序的显示速度]]></title>
    <link>http://im.vc/web/asp/2011/0822/62302.html</link>
    <description><![CDATA[作为一个asp程序员，你不会怀疑提高Web应用程序性能的重要性。为了让程序运行的更快一些，你可能一直忙于优化数据库或COM组件。如果这些你都做过了，你想到过靠加快最终生成HTM]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建具有JScript的HTML的XMLHTTP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62301.html</link>
    <description><![CDATA[griefforyou [原作] 亲爱的 GUI 博士： 我有一个关于 xml 的问题。我通过 xmlhttp 发布一个 asp 页面，将数据作为 HTML 发送回来，并在 div、表格单元格或任何元素上执行 object.innerHTML。 我遇到]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[购物车中数据的存放方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62300.html</link>
    <description><![CDATA[aierong [原作] 第一次做BToC站点的购物车,总结了一下购物车中数据的存放方式 方式1:用会话 会话中可以存放任何类型数据,每个用户有一个唯一的会话ID，用此ID区分不同用户的购物车 会]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP程序运行于非Windows平台]]></title>
    <link>http://im.vc/web/asp/2011/0822/62299.html</link>
    <description><![CDATA[自从Micorsoft推出asp技术后，由于ASP在创建动态交互式站点上的强大功能及其代码编写的简便性，使ASP在越来越多的Internet/Intranet/Extranet网站上得到了极其广泛的应用，尤其是涉及数据库]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Asp中如何快速优化分页的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62298.html</link>
    <description><![CDATA[foxty [原作] 近日一直在研究如何才能写出高小的分页算法，大概整理了一下，思路如下： 首先数据库里需要有一个自动编号字段（ID）。然后第一次访问的时候，取出所有记录，定制好]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据库编程SQL常用技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62297.html</link>
    <description><![CDATA[一.怎样删除一个表中某个字段重复的列呀,举个例子 表[table1] id name1 aa2 bb3 cc1 aa2 bb3 cc 我想最后的表是这样的 id name 1 aa2 bb3 cc 回答: 将记录存到临时表#t中，重复的记录只存一条，然后将]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些不长见的ASP调用存储过程的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62296.html</link>
    <description><![CDATA[1、最简单的如下 Dim objConn Set objConn = Server.CreateObject(ADOBD.Connection) objConn.Open application(Connection_String) 'Call the stored PRocedure to increment a counter on the page objConn.Execute exec sp_AddHit 没有参数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB生成DLL封装ASP代码，连接数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62295.html</link>
    <description><![CDATA[这篇文章以VB生成的DLL封装asp代码来连接数据库（以access数据库为例）。 一般情况下我们在用ASP连接Access的数据库时通常都会进行如下的操作 '//PRoconn.asp % dim ProConn set ProConn=Server.Creat]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用模板实现ASP代码与页面分离]]></title>
    <link>http://im.vc/web/asp/2011/0822/62294.html</link>
    <description><![CDATA[文章出处:编程手札 http://blog.csdn.net/nhconch请大家多多支持. 每个进行过较大型的asp-Web应用程序设计的开发人员大概都有如下的经历：ASP代码与页面HTML混淆难分，业务逻辑与显示方式绞合]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网站图片扫描类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62293.html</link>
    <description><![CDATA[Scan.inc % '说明：这是我第一次编写应用类，其中不当之处请多多指教！QQ：1168064 '属性和方法 '1、ScanType：扫描的类型。默认值：1。值：0 扫描文件和数据库 1 扫描文件 2 扫描数据库。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+ACCESS实现的无限级目录树]]></title>
    <link>http://im.vc/web/asp/2011/0822/62292.html</link>
    <description><![CDATA[下载地址：http://www.knowsky.com/download/treemenu.rar 关键代码： % set conn=server.createobject(ADODB.CONNECTION) connstr=DBQ=+server.mappath(db1.mdb)+;DefaultDir=;DRIVER={Microsoft access Driver (*.mdb)}; conn.open conns]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树型结构在ASP中的简单解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62291.html</link>
    <description><![CDATA[树型结构在我们应用程序中还是很常见的，比如文件目录，BBS，权限设置，部门设置等。这些数 据信息都采用层次型结构，而在我们现在的关系型数据库中很难清淅表达。那么要在程序]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中利用ADO显示Excel文件内容的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62290.html</link>
    <description><![CDATA[dddggg [原作] Function SwitchExcelInfo(xlsFileName) Dim xlsStr Dim rs Dim i,j,k Dim ExcelConn Dim ExcelFile Dim objExcelApp Dim objExcelBook Dim bgColor xlsStr = ExeclFile = Server.MapPath(xlsFileName) Set objExcelApp = CreateObject(E]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[远程连接access数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62289.html</link>
    <description><![CDATA[使用了TCP/ip，ADO及xml（需要安装Microsoft XML 4.0。）。分服务器和客户端两部分，服务器可以多用户同时连接。远程连接access数据库有很多方法，我以前已经比较详细的回答过（见下面所]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一条sql 语句搞定数据库分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62288.html</link>
    <description><![CDATA[antshome（原作）首发:CSDN 一条语句搞定数据库分页 select top 10 b.* from (select top 20 主键字段,排序字段 from 表名 order by 排序字段 desc) a,表名 b where b.主键字段 = a.主键字段 order by a.排序字段]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[RS.OPEN SQL,CONN,A,B 全接触]]></title>
    <link>http://im.vc/web/asp/2011/0822/62287.html</link>
    <description><![CDATA[RS.OPEN SQL,CONN,A,B A: ADOPENFORWARDONLY(=0) 只读,且当前数据记录只能向下移动 ADOPENKEYSET(=1) 只读,当前数据记录可自由移动 ADOPENDYNAMIC(=2) 可读写,当前数据记录可自由移动 ADOPENSTATIC(=3) 可读写,当]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最大限度优化你的Asp性能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62286.html</link>
    <description><![CDATA[最大限度优化你的asp性能 ASP 能快速执行你的动态网页，但你还可以通过紧缩代码和数据库连接以使它们执行更快。这是一 篇关于怎样精简代码和Asp 特征以获得最快执行速度的详细文章]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Request与Request.Form的速度测试]]></title>
    <link>http://im.vc/web/asp/2011/0822/62285.html</link>
    <description><![CDATA[经测试： http://www.leadbbs.com/test?name=test Request(name)的速度是非常快的，当请求的网址是 http://www.leadbbs.com/test?时， Request(name)的速度下降了近二十来倍． 下面是测试代码，保存为test.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中用Join和Array，可以加快字符连接速度。]]></title>
    <link>http://im.vc/web/asp/2011/0822/62284.html</link>
    <description><![CDATA[比如 % Dim a(10000),i,t t=Timer For i=0 to 10000 a(i)=CStr(i) Next Response.Write Join(a,vbCrLf) Response.Write timer-t Erase a % 速度可以和php一拼（虽然还是没有他快） 另一种用法是 s=Join(Array(1,2,3,.....,99]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SOAP和ASP进行服务器端更新]]></title>
    <link>http://im.vc/web/asp/2011/0822/62283.html</link>
    <description><![CDATA[客户端和服务器通信可采用一种自定义协议。然而，SOAP为此提供了一种灵活的、易于扩展的和简单的方案。使用xmlHTTP对象，客户端浏览器可请求在服务器上执行一个asp，并等候服务器]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于处理GET方式提交的含有特殊字符的参数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62282.html</link>
    <description><![CDATA[曾经有一位朋友遇到这样一个问题，一产品名称为AT Plastic,在产品列表中就产生了这样的一个联接a href=PRoduct.asp?name=AT PlasticAT Plastic/a,在服务器端接收此参数的时候怎么也无法接收到准]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发网页时需要牢记的注意事项列表]]></title>
    <link>http://im.vc/web/asp/2011/0822/62281.html</link>
    <description><![CDATA[asp开发网页时需要牢记的注意事项列表 步骤 永远不要相信用户输入的内容具有适当的大小或者包含适当的字符。在使用其做出决策之前应该始终对用户输入进行验证。最佳的选择是创]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三种禁用FileSystemObject组件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62280.html</link>
    <description><![CDATA[众所周知，FileSystemObject组件的强大功能及破坏性是它屡屡被免费主页 提供商(那些支持asp)的禁用的原因，我整理了一下，本来只找到两种方法，后来 被某人一刺激，硬是想到第三种不]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现让每句话的头一个字母都大写]]></title>
    <link>http://im.vc/web/asp/2011/0822/62279.html</link>
    <description><![CDATA[% dim txtFname txtFName = steve schofield txtFName = UCase(Left(txtFName,1)) Mid(txtFName,2) response.write txtFname % mynewvar = myfunc(txtFname) ' 调用函数 Function syntax function myfunc(a) myfunc = ucase(left(a,1)) lcase(mid(a,2))]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[面向对象的ASP技术：思考与实践]]></title>
    <link>http://im.vc/web/asp/2011/0822/62278.html</link>
    <description><![CDATA[作者： mechiland (http://www.jzchen.net) 动笔时间： 2003 年 4 月 21 日 完成时间：2003年4月29日 目录： 概述 历史 先进的技术与好用的技术： asp 到了尽头吗？ 组件化的 Web 程序 一个实例 小技巧]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用存储过程实现ASP对数据库访问]]></title>
    <link>http://im.vc/web/asp/2011/0822/62277.html</link>
    <description><![CDATA[一、ADO概述 ActiveX 数据对象 (ADO) 是一种既易于使用又可扩充的技术，用来将数据库访问添加到您的 Web 页可以使用 ADO 编写简洁和可升级的脚本以连接到与 OLE DB 兼容的数据源，如数据库]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何尽快释放掉Connection对象建立的连接？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62276.html</link>
    <description><![CDATA[首先，建立一个 Conn 的连接对象，然后连接到数据库 data.mdb 中，取得连接句柄后，把它保存在 session(conn) 这个 Session 会话变量中，在打开记录集前，从 session(conn) 中取出句柄，借助]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO数据与XML数据间的转换的类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62275.html</link>
    <description><![CDATA[当对现有数据库的数据进行分析时，经常需要对某一部分的数据进行分析.此时，使用 1.SQL查询分析器？ 但其往往不直观，查找某个关键字又需要重新执行新的SQL. 2.SQLxml模板？ 但又不一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[采用ODBC接口访问MySQL指南]]></title>
    <link>http://im.vc/web/asp/2011/0822/62274.html</link>
    <description><![CDATA[采用ODBC接口访问MySQL指南 当前作者： 王猛 ( HeartIcy@163.com ) 创建日期： 2003年1月15日 修订版本： 1.1 MySQL的好与坏我想来想去自己始终认为这不是一个程序员或者系统设计师所应该深究的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把数据插入到数据库的两种方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62273.html</link>
    <description><![CDATA[把表单中的数据插入到数据库中有两种方法。 1.直接使用sql语句的 优点：速度快，不耗资源 缺点：不能传递太长的字段内容，字段比较多时不易排错。 推荐有经验的编程者优先考虑]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存储过程介绍及asp+存储过程的使用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62272.html</link>
    <description><![CDATA[一、先介绍一下什么是存储过程 存储过程是利用SQL Server所提供的Tranact-SQL语言所编写的程序。Tranact-SQL语言是SQL Server提供专为设计数据库应用程序的语言，它是应用程序和SQL Server数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在access中增加农历支持模块]]></title>
    <link>http://im.vc/web/asp/2011/0822/62271.html</link>
    <description><![CDATA[新建模块,复制下面两个函数. glgetnl(),strnl() 在查询中使用: select glgetnl(born) as nlborn from empolyee where glgetnl(born)05012 order by glgetnl(born) 上面的查询返回农历生日大于五月十二员工列表,并按]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Connection对象的应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62270.html</link>
    <description><![CDATA[要建立数据库连接,首先应创建connection对象的实例,常用下面的脚本创建一个Connection对象实例: set conn=Server.CreatObject(ADODB.Connection) Dbpath=Server.MapPath(用户.mdb) conn.opendriver={Microsoft access]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将Recordset作为XML保存]]></title>
    <link>http://im.vc/web/asp/2011/0822/62269.html</link>
    <description><![CDATA[微软使得将ActiveX数据对象（ADO）的Recordset作为xml在ADO 2.1里保存成为可能。这对于将Recordset保存在客户计算机上用于脱机使用很有用处。如果你希望通过可扩展样式表语言转换（XSLT）来]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADODB.Stream代替FSO读取文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62268.html</link>
    <description><![CDATA[昨天我问过这个问题,不过没人回答到点上,今天搞定了.贴出来给觉得有用的朋友,希望其他朋友不用走弯路. '文件内容读取. Function LoadFile(ByVal File) Dim objStream On Error Resume Next Set objStream]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看ASP Session 变量的小工具]]></title>
    <link>http://im.vc/web/asp/2011/0822/62267.html</link>
    <description><![CDATA[%@ LANGUAGE=VBSCRipT % % '##################################################### 'Function: ' List server session variable application variable 'Author: Hardy He 'Date: 2003-3-12 23:30 'Memo: Be care for diffrent virtul path show diffrent]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中过滤用户输入 提高安全性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62266.html</link>
    <description><![CDATA[安全对于所有应用程序来说都是十分重要的。一个简单应用程序里的某个失误都会造成对数据库或者其他企业资源未经授权的访问，因此安全尤其重要。一种常用的攻击方法是将命令嵌]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理运行时间长的脚本以及内容大的主页]]></title>
    <link>http://im.vc/web/asp/2011/0822/62265.html</link>
    <description><![CDATA[处理运行时间长的脚本以及内容大的主页 脚本运行时间的最长限制默认值为90秒，这是防止无限次循环的进行，是很有用的防护措施。不过，在一些特殊场合中，你也许面临着脚本运行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP+JMAIL进行邮件群发的新思路]]></title>
    <link>http://im.vc/web/asp/2011/0822/62264.html</link>
    <description><![CDATA[背景： Email地址存于MSSql一用户信息表中，数量上万。 公司自有服务器，集SMTP,POP3,WWW,FTP,MSSql,DNS等多种服务于一身。 jmail 有MailMerge对象，但是免费版不能用 要求： 用asp+JMAIL，利用公司]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进 ASP 应用程序中的字符串处理性能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62263.html</link>
    <description><![CDATA[James Musson Developer Services, Microsoft UK 2003年3月 适用于： Microsoft Active Server Pages Microsoft Visual Basic 摘要： 大多数 Active Server Pages (asp) 应用程序都要通过字符串连接来创建呈现给用户的 HTM]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何写出优秀的ASP应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62262.html</link>
    <description><![CDATA[怎样创建性能棒、正确性、可维护性和性能俱佳的asp应用程序？要做什么？不做什么？本文以提纲的形式，给出了主要的Check-Points(检查点)。 什么是ASP ActiveServerPage，简称ASP，是： □]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XMLHTTP组件正确解析图片地址并将其保存]]></title>
    <link>http://im.vc/web/asp/2011/0822/62261.html</link>
    <description><![CDATA[现在基于WEB页的HTML的编辑器在新闻系统，文章系统中用得越来越广，一个网页一粘就可以保持原来的样式，同时图片也可以在这个页中保持。但是在使用过程中，如果所粘贴页中的图片]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈ASP编程的思路与纠错]]></title>
    <link>http://im.vc/web/asp/2011/0822/62260.html</link>
    <description><![CDATA[摘自：软件世界 作者：阿干 对于用asp技术编程的初学者来说，无从下手是第一感觉，笔者曾经有这么一段经历。经过一番磨难以后，你就会找到灵感。现将本人编程中积累的一些经验]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用XMLHTTP 从其他页面获取数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62259.html</link>
    <description><![CDATA[我们在编写asp代码的时候，大家都知道可以通过post或者get获得form表单的数据，那么我们如何直接获得其他页面上的数据呢？这就要借助xmlhttp协议了。xmlhttp是xmldom技术的一部分。 下面]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用事务控制]]></title>
    <link>http://im.vc/web/asp/2011/0822/62258.html</link>
    <description><![CDATA[julyclyde（原作） 作者系2月份 微软社区之星Microsoft China Community Star 在编程中，经常需要使用事务。所谓事务，就是一系列必须都成功的操作，只要有一步操作失败，所有其他的步骤也必]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程实现快速查找]]></title>
    <link>http://im.vc/web/asp/2011/0822/62257.html</link>
    <description><![CDATA[有一天我突发奇想，要是我每到一个网站，那里都能立刻调出我需要看的信息，那岂非美妙得很。接下来我想更深入地考虑这个问题，坐到椅子上拿一支铅笔，却不知道自己写什么]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何正确处理数据库中的Null]]></title>
    <link>http://im.vc/web/asp/2011/0822/62256.html</link>
    <description><![CDATA[对于初学者, 在处理数据库中的 Null 资料型态是有一点麻烦的事, 在这篇文章文章中我们将谈谈 Null , 你将会了解到如何知道一个值是 Null , 哪些函数可以或不可以处理 Null 首先, 我们必须]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在 Access 中使用“存储过程”]]></title>
    <link>http://im.vc/web/asp/2011/0822/62255.html</link>
    <description><![CDATA[我们已经熟悉在 asp 中通过调用 SQL Server 存储过程来执行数据库操作，不过大家是否知道，在桌面级数据库 access 中，我们也能够创建并使用“存储过程”？ Access + ASP 是开发轻量级 We]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP提速技巧五则]]></title>
    <link>http://im.vc/web/asp/2011/0822/62254.html</link>
    <description><![CDATA[技巧之一：提高使用Request集合的效率 访问一个asp集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问一个局部变量要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将连接数据库的代码隐藏在DLL中]]></title>
    <link>http://im.vc/web/asp/2011/0822/62253.html</link>
    <description><![CDATA[其实，大家在书写asp程序时，最担心的可能就是数据库的连接信息，会被一些人看到，进行一些破坏。下面我们用vb6.0来做一个动态链接库(.dll)来隐藏数据库的连接信息。 启动vb6.0，新]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编译asp应用程序成为exe文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62252.html</link>
    <description><![CDATA[使用 NetBox 可以方便的将 asp 应用编译成为独立运行的执行程序，完全摆脱 iis 的束缚，在几乎所有的 Windows 版本上面直接运行，完全不需要考虑平台兼容性和对 asp 运行环境的要求。下]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp中代码与页面的分离]]></title>
    <link>http://im.vc/web/asp/2011/0822/62251.html</link>
    <description><![CDATA[为了避免asp程序和HTML代码混写造成维护困难的情况，本文介绍了一种方法，利用模板来分离程序和页面，使程序设计更加轻松。 在使用ASP制作一个站点的时候，常常会出现一个ASP文件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP中的VB ActiveX.dll文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62250.html</link>
    <description><![CDATA[没有人会在没有必要的情况下采用更加麻烦的方法来工作，除非是没有选择的余地。所以如果我要告诉你有一种简单的技术可以使你的asp开发更加快速，并且更加高效率，你一定对此特]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[采用XML数据来填充ASP表单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62249.html</link>
    <description><![CDATA[本文作者Brian Schaffner是富士通咨询公司的副主任。他为富士通的技术咨询公司提供架构、设计和开发支持。 在本篇文章里，我们会使用一个简单的Web表单，它会列出某个目录下的一些]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过ASP自动解压RAR文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62248.html</link>
    <description><![CDATA[原作者：冷莫 其实想实现这种功能很简单，首先要上传一个RAR的解压程序，就是RAR自己的解压程序，只需要它的核心 程序RAR.EXE这个文件就可以了。然后就要上传一个执行RAR.EXE的程序]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADO的COMMAND对象实现对WEB数据库动态数据查询的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62247.html</link>
    <description><![CDATA[用ADO的COMMAND对象实现对WEB数据库动态数据查询的方法 ★ 林碧英 众所周知，由于asp技术的出现，使得Intranet的应用更加广泛深入。相当多的企业都建立了企业内部综合查询系统，如何快]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何准确定时运行ASP文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62246.html</link>
    <description><![CDATA[在一定的时候，要定时的运行某个asp文件去执行一个任务，如一个工厂在早上９点钟要采集所有的电表的读数，当然这要通过IN SQL连接到各个电表中，我们现在就是用一个ASP文件把IN]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现批量录入数据的实现]]></title>
    <link>http://im.vc/web/asp/2011/0822/62245.html</link>
    <description><![CDATA[批量录入在数据库的应用中比较广泛的，关于批量录入的方法也有好多种。 下面我就结合我实际中的应用，谈一下儿我是怎么实现的。 主要用到的是form的集合的概念，通过循环取的所]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP处理程序时显示进度]]></title>
    <link>http://im.vc/web/asp/2011/0822/62244.html</link>
    <description><![CDATA[用过软件的朋友都知道，进度条是一个优秀软件的重要组成部分。 它的存在能够使用户及时掌握程序的运行进度，确认应用程序正常工作。可是asp中似乎没有上述标准控件，控制起来也]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP整合的一个SQL语句类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62243.html</link>
    <description><![CDATA[我们在写asp数据库程序的时候，通常都会用到SQL语句，而在增加数据和更新数据的时候，通常会使用一下方式：insert into message (incept,sender,title,content,sendtime,flag,issend) values ('incept(i)',]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何读出图片的高度与长度的总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62242.html</link>
    <description><![CDATA[看到了很多关于如何读出图片的长度的高度的方法，其实都不实用，大多都是通过图片的大小来判断的，图片的种类众多，通过大小来判断难免要制造很多的代码，加重运行负担，我想]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用Oracle数据库技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62241.html</link>
    <description><![CDATA[Oracle是世界上用得最多的数据库之一，活动服务器网页(asp)是一种被广泛用于创建动态网页的功能强大的服务器端脚本语言。许多ASP开发人员一直在考虑，能否在开发互联网应用、电子]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用简单Java类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62240.html</link>
    <description><![CDATA[方式一：把java类注册成ActiveX组件 步骤一： 创建一个Java类，命名为Test.java public class Test { public String getWord() { return Hello World; } } 步骤二： 编译成class文件，并拷贝到系统盘：\WINNT\ja]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用 WSH 作定时工作流程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62239.html</link>
    <description><![CDATA[一个很常见的 asp 问题 : 如何定时工作流程执行网页?, 之所以会问这个问题大部分是因为管理员可能会利用一个 ASP 网页来作数据库维护的动作, 如备份...等, 在 Windows NT 平台有一个方法]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在基于Mozilla的浏览器中使用XMLHttpRequest对象]]></title>
    <link>http://im.vc/web/asp/2011/0822/62238.html</link>
    <description><![CDATA[IE通过允许开发人员在Web页面内部使用安全的ActiveX组件扩展自身的功能。微软在无状态连接方面的产品是xmlHTTP组件。 使用xmlhttp组件，开发人员可以不用从当前的Web页面导航而直接传输]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[借助组件使用asp连接informix全方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62237.html</link>
    <description><![CDATA[注意:本文方案适用于asp通过自开发组件连接所有类型的数据库 现在某些企业的数据库用的是informix,多数开发者对这个数据库操作的比较少， 因为当前该公司已经被IBM吃掉，而IBM主推的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中关于帖子分页显示的基本方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62236.html</link>
    <description><![CDATA[asp中关于帖子分页显示的基本方法 在了解了Recordset对象的以上属性和方法后，我们来考虑一下，如何运用它们来达到我们分页显示的目的。首先，我们可以为PageSize属性设置一个值，从]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用in关键字实现数据的批量删除]]></title>
    <link>http://im.vc/web/asp/2011/0822/62235.html</link>
    <description><![CDATA[巧用in关键字实现数据的批量删除 在WEB编程中经常会碰到数据的批量删除。我们通常的做法是通过循环来实现数据的批量的删除。但是一个程序模块循环用的太多那么这个程序模块的质]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[win2000 server 全部安全补丁]]></title>
    <link>http://im.vc/web/asp/2011/0822/62234.html</link>
    <description><![CDATA[http://www.microsoft.com/windows2000/downloads/critical/default.asp http://www.microsoft.com/windows2000/downloads/security/default.asp http://www.microsoft.com/windows2000/downloads/recommended/default.asp http://www.microsoft.com/windows2]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存储过程使用大全]]></title>
    <link>http://im.vc/web/asp/2011/0822/62233.html</link>
    <description><![CDATA[1，调用没有参数的存储过程 % set conn=server.CreateObject(adodb.connection) set cmd=server.CreateObject(adodb.command) strconn=dsn=pubs;uid=sa;pwd conn.Open strconn set cmd.ActiveConnection=conn cmd.CommandText={call nono} 'set r]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+SQL Server之图象数据处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62232.html</link>
    <description><![CDATA[asp（Active Server Pages）是Microsoft很早就推出的一种WEB应用程序解决方案，也是绝大多数从事网站开发人员很熟悉的一个比较简单的编程环境。通过ASP我们可以创建功能强大的动态的WEB应用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP注册表项目修改]]></title>
    <link>http://im.vc/web/asp/2011/0822/62231.html</link>
    <description><![CDATA[asp注册表项目修改 1)键值路径 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\ASP\Parame ters 2)项和参数 项和参数 描述 ---------------------------------------------------------------- AllowOutOfPRocCmpnts 控制]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp程序和php程序转换要注意的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62230.html</link>
    <description><![CDATA[前一段时间帮一个朋友把他的asp程序全部转为php程序，虽然听说网上有这样的工具，但是朋友的程序有关电子商务的东西，还是自己动手比较保险。一做下来发现很多地方要注意。 1。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个分页存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62229.html</link>
    <description><![CDATA[/*****听以前的同事说asp页面上的分页太慢了（如果数据多了）， 就想了这么个笨办法。有些地方还要考虑----比如select top 22 * from cat_list where T_id not in (select T_id from #change)是否有效率问题]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构造ConnectionString的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62228.html</link>
    <description><![CDATA[1、建立一个扩展名为UDL的文件，双击打开，设置数据库连接参数。 2、用Word或者Windows2000的Notepad等支持Unicode的编辑器打开该文件，将其中第3行复制出来即可使用。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分解质因数（asp 分布递归法）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62227.html</link>
    <description><![CDATA[***start input.asp*** % thenum= request(num) % style type=text/CSS !-- .trees {border-color: black black black #666666; padding-left: 12px; border-style: solid; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; borde]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[组合查询之核心：拼接字符串]]></title>
    <link>http://im.vc/web/asp/2011/0822/62226.html</link>
    <description><![CDATA['组合查询之核心：拼接字符串 '功能：定义查询条件，定义返回集，定义排序方式 '平台：Windows 2000 Server + IIS5.0 + SQL Server 2000 '语言：VBScript '作者：Cheery_Ke '***********Start************ '****]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何避免asp的SQL的执行效率低]]></title>
    <link>http://im.vc/web/asp/2011/0822/62225.html</link>
    <description><![CDATA[方法一、尽量使用复杂的SQL来代替简单的一堆 SQL. 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率。有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(SELECT * FROM Books) w]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[fso的一些特殊功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62224.html</link>
    <description><![CDATA[下面列举一下这些不常用但是却非常酷的功能： 很少被了解的fso功能 GetSpecialFolder Method 返回特定的Windows文件夹的路径: Windows安装目录；Windows系统目录；Windows临时目录 FSO.GetSpecialFold]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[服务器获得客户端时间的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62223.html</link>
    <description><![CDATA[now是获得服务器的时间吗，并不一定，只有在服务器端运行的脚本是获得服务器的时间，在客户端的则是获得客户端的 可以使用任何一个元素，比如span或者input记载服务器的时间,方法]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Jmail中避过smtp验证的一法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62222.html</link>
    <description><![CDATA[现在几乎所有的免费信箱都需要smtp验证，除非发到自己服务器上的，比如21cn.com的邮件只能发到21cn.com。 使用jmail的时候避免无法发送的方法： 我以21cn.com为例， jmail.send=my@21cn.com '这个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中如何创建动态表]]></title>
    <link>http://im.vc/web/asp/2011/0822/62221.html</link>
    <description><![CDATA[/* ----------------------------------- 产生论坛分类目录内容表过程 -----------------------------------*/ CREATE PROCEDURE sp_createnew_bbscontent @tabname varchar(200)='', @boardid int AS declare @tri_inst_name nvarchar(100) dec]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP文件中的安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62220.html</link>
    <description><![CDATA[asp中可能有哪些安全问题？ ASP具有简单、易用、多功能，可扩充性等强大功能，但也存在一些问题。譬如，如果使用ASP的话，可能会导致网络的安全性大大降低了！下面为大家举一个例]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[取出所有的传递参数短方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62219.html</link>
    <description><![CDATA[此方法主要用来掉线后重登陆再返回 out_url1=Request.ServerVariables (SCRipT_NAME) i=0 for each thing in Request.QueryString x= Request.QueryString (thing) if i=0 then out_url1=out_url1?thing=x else out_url1=out_url1thing=x end]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用NextRecordset通过一个Connection输出多个select查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/62218.html</link>
    <description><![CDATA[% dim conn dim strconn dim rs dim strsql dim strsql2 dim strsql3 dim strsql4 dim strsql5 dim strsql6 dim strsql7 dim strsql8 'strconn = Driver={SQL Server};Description=example;SERVER=222.222.1.2;UID=webexample;PWD=;DATABASE=webexample 'Form]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用EOF以加快记录循环]]></title>
    <link>http://im.vc/web/asp/2011/0822/62217.html</link>
    <description><![CDATA[通常我们使用以下的代码进行记录循环： Do while not records.eof combo1.additem records![Full Name] records.movenext loop 结果是每个循环中数据库都要进行一次数据结束测试。在大量的记录的情况下，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提供一种“间接防止另存为”的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62216.html</link>
    <description><![CDATA[提供一种“间接防止另存为”的方法 特点：笨笨的、烦烦的 因为需要用到3个垃圾文件（不过还好，加起来才10来行不太熟悉的代码） 条件：无（客户能保证自己正常浏览就行了） 文件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立三层结构的ASP应用程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62215.html</link>
    <description><![CDATA[本文介绍了三层结构应用程序的概念和优点，并结合一个实例介绍了如何建立三层结构的asp应用程序。 一、两层结构的ASP应用有何缺点 在Browser/Server 应用程序开发领域，微软公司的I]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止重复提交的巧妙方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62214.html</link>
    <description><![CDATA[在document.form1.submit();后加 document.body.innerHtml = center Waiting.../center; //当然这里的html代码就由你发挥了，还可把这段写成函数，这样维护就方便了！ 这一处理，就让用户在等待提交时不会]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ado方便的转化为XML文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62213.html</link>
    <description><![CDATA[!-- #include file=adovbs.inc -- % ' 删除已经存在的文件 Dim objfso Set objFSO = Server.CreateObject(Scripting.FileSystemObject) If objFSO.FileExists(Server.MapPath(db_xml.xml)) Then objFSO.DeleteFile Server.MapPath(db_xml.xml) End I]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的错误处理集锦]]></title>
    <link>http://im.vc/web/asp/2011/0822/62212.html</link>
    <description><![CDATA[简单介绍 asp是非常简单的，以至于许多的开发者不会去思考错误处理。错误处理能够让你的应用程序更加合理。我看到过很多个用ASP编写的商业网站，大多数都忽略了错误处理。 错误]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[到亿位的金额小写转大写JS代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62211.html</link>
    <description><![CDATA[script function DX(n) { var strOutput = ; var strUnit = '千百拾亿千百拾万千百拾元角分'; n += 00; var intPos = n.indexOf('.'); if (intPos = 0) n = n.substring(0, intPos) + n.substr(intPos + 1, 2); strUnit = strUnit.substr(strUn]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS使用10则]]></title>
    <link>http://im.vc/web/asp/2011/0822/62210.html</link>
    <description><![CDATA[1. 自定义错误页 虽然自定义错误页很简单，但只有少数管理员有效地利用了它。管理员可以在MMC中将HTTP错误信息映射到服务器上的绝对URL或是某个文件，更为详细的信息可以在这里找]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中巧用Split()函数生成SQL查询语句]]></title>
    <link>http://im.vc/web/asp/2011/0822/62209.html</link>
    <description><![CDATA[Split 程序代码 %attribs=商场名^^快餐店名^^报停名 names=Split(attribs,^^) i=0 for each name in names response.write names(i)br i=i+1 next% 程序拆分结果： 商场名 快餐店名 报停名 根据 Split 结果生成 SQL 语句]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中通过getrows实现数据库记录分页的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62208.html</link>
    <description><![CDATA[%@ Language = VBSCRipT % % Option Explicit % % rem 在asp中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset iStart = Request(Start) iOffset = Request(Offset) if Not IsNumeric(iStart) or Len(iStart) = 0 then iStar]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Filter与updatebatch混合使用实现批量更新]]></title>
    <link>http://im.vc/web/asp/2011/0822/62207.html</link>
    <description><![CDATA[/*******部分代码*******/ /*******idArr()和codeArr()为两个数组，其中，idArr()为filter数据过滤条件，codeArr()作为更新数据**********/ ....... dim CRs,sql,FStr sql= conn.begintrans set CRs=server.CreateObject(adodb.r]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP打开远端MDB文件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62206.html</link>
    <description><![CDATA[用asp打开远端MDB文件 如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息： Microsoft OLE DB PRovider for ODBC Drivers error ’80004005’ [Microsoft][ODBC Microsoft a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[格式化数字函数FormatNumber]]></title>
    <link>http://im.vc/web/asp/2011/0822/62205.html</link>
    <description><![CDATA[如果有一个数字498.8573945,如何把它格式化成两位小数据呢？用过asp的都知道,在VbScript里我们可以调用FormatNumber,即用FormatNumber(498.8573945,2)就可以输出：498.86。 由于javaScript里没有这个函数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XMLHTTP Post/Get HTML页面时的中文乱码之完全Script解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62204.html</link>
    <description><![CDATA[以前我曾经贴过一篇用xmlHTTP Post Form 的帖子，那里的代码中我Post E文的Value毫无问题，但是后来发现Post含有中文的表单时会出现乱码，原因当然是UTF-8 和GB2312 之间的转换问题了！TNND，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[维护ASP的会话状态]]></title>
    <link>http://im.vc/web/asp/2011/0822/62203.html</link>
    <description><![CDATA[HTTP是一种无状态协议。当客户机向服务器发送一个请求时，服务器并不知道这是客户机的第1个还是第42个请求。这对asp开发来说无异带来了比较严重的问题，因为经常有必要给特定的客]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Js判断输入的时间是否有效]]></title>
    <link>http://im.vc/web/asp/2011/0822/62202.html</link>
    <description><![CDATA[经常在asp里面碰到要求用户输入日期,比如生日,那么如何知道他输入的值是否有效呢?比如输入2月,则肯定没有30,31号;又如她要是输入4月,那么肯定没有31号,等等..... 下面是我碰到时的解决]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于#include的补充说明]]></title>
    <link>http://im.vc/web/asp/2011/0822/62201.html</link>
    <description><![CDATA[许多朋友都在问是否能动态的使用include？这在精华区中已经都有许多的篇幅说明了（关键字：include），在这里我再强调一下，!--#include file=%fileName%--是绝对行不通的，要是使用 %if xxx]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用HTML框架减少服务器流量]]></title>
    <link>http://im.vc/web/asp/2011/0822/62200.html</link>
    <description><![CDATA[在网络开发领域中对是否使用框架这一问题出现了分化，大多数人毫不犹豫的加以反对。网络开发者不喜欢网络框架有好几个原因，其中的一个就是框架导致了寻址（Navigation）特别麻烦]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎么样写一段高效，安全的sql查询代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62199.html</link>
    <description><![CDATA[看一看这段代码，让我们来看看主要存在的问题 //设置SQL语句 insertstr=insert into userinfo(name,passWord,email,phone,mobile,post,address) VALUES(''; insertstr += this._name.Trim() ;+ '',''; insertstr += this._password.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[客户端脚本验证码总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62198.html</link>
    <description><![CDATA[function Jtrim(str)//去空隔函数 { var i = 0; var len = str.length; if ( str == ) return( str ); j = len -1; flagbegin = true; flagend = true; while ( flagbegin == true i len) { if ( str.charAt(i) == ) { i=i+1; flagbegin=true; } else {]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP ActiveX对象的访问ASP区段变量的其他方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62197.html</link>
    <description><![CDATA[几个月以前，一个同事到我这里来，说他有一个客户端javaScript的问题。我不得不向他解释说，活动服务器页面（asp）的区段变量不能从客户端访问，除非它们通过cookie或者隐藏的输入框]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Adodb.Stream的使用说明]]></title>
    <link>http://im.vc/web/asp/2011/0822/62196.html</link>
    <description><![CDATA[组件：Adodb.Stream 有下列方法： Cancel 方法 使用方法如下 Object.Cancel 说明：取消执行挂起的异步 Execute 或 Open 方法的调用。 Close方法 使用方法如下 Object.Close ：关闭对像 CopyTo 方法 使用方]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从 ASP Web 页返回 XML]]></title>
    <link>http://im.vc/web/asp/2011/0822/62195.html</link>
    <description><![CDATA[概要 从ActiveServerPages(asp)Web页返回xml数据是一种常见的编程要求。实现此要求所用的方法因用来托管ASP应用程序的MicrosoftInternet信息服务(IIS)的版本而异。本文中的分步指南带有相关的示]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ServerVariables 对路径的操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/62194.html</link>
    <description><![CDATA[前些天发了好些帖子，想询问关于路径的问题，可也一直都没有回复。其实我对路径的概念一直都比较含糊，后来还是同时介绍了ServerVariables数据集合，才使我解决了那个困惑我很久的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中函数调用对参数的影响]]></title>
    <link>http://im.vc/web/asp/2011/0822/62193.html</link>
    <description><![CDATA[在asp编程中，经常需要自己编写一些函数(或过程)来实现某些特定的功能，这时往往需要向函数(或过程)传递相应的参数 在函数(或过程)中进行数据处理，即有可能需要保留或改变参数的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密处理使密码更安全[CFS编码加密]]]></title>
    <link>http://im.vc/web/asp/2011/0822/62192.html</link>
    <description><![CDATA[你是怎么把密码储存到数据库里？是以纯文字的方式？你可知道这对安全的危险性？当攻击你网站的人能开启数据库浏览，以纯文字方式存在数据库里的密码一览无疑，基于安全上的考]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高IIS的安全性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62191.html</link>
    <description><![CDATA[概要：使用IIS的省缺设置就象把你屋子的钥匙给了别人，本文教你如何把门锁上。（本文不是100%直译，括号中的是讨饭猫的废话） 没有任何系统是100%安全的，系统漏洞会不断地发现，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP错误的几种常规处理方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62190.html</link>
    <description><![CDATA[简单介绍 asp是非常简单的，以至于许多的开发者不会去思考错误处理，正确处理错误能够让你的应用程序更加合理。我看到过很多个用ASP编写的商业网站，大多数都忽略了错误处理。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中优化数据库处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62189.html</link>
    <description><![CDATA[asp是一个Web服务器端的开发环境，它提供了一种简单易学的脚本（VBScript或Jscript），并带有许多内置的对象，从而提供了一条简捷的编程之路。更为重要的是，ASP中提供了ADO对象，让程]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP3.0中的流控制能力(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62188.html</link>
    <description><![CDATA[随着php4.0和jsp技术的推出以及IIS中不断出现的重大的安全问题，MicroSoft的asp的市场仿佛是变的狭窄了，但是MicroSoft是不会轻言放弃的，于是在ASP2.0的基础上推出了ASP3.0，增加了一些新的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[正确处理ASP动态网页中的容错机制]]></title>
    <link>http://im.vc/web/asp/2011/0822/62187.html</link>
    <description><![CDATA[以国内最流行asp为例，我不知道有多少人会在写代码时想到“容错”这个概念，实际上当我遇到这种事时，也是不了了之。为什么呢，想想最初的意思是认为写如下代码就能容错了，见]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[结合XML, ADO, 以及ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62186.html</link>
    <description><![CDATA[这个星期,我们将使用可扩充标记语言(xml)以及在asp中使用ActiveX Data Object(ADO).在最新的互联网信息服务器(IIS 5)和ADO(2.6)版本中,我们现在能够从游标对象中提取数据作为XML直接保存并直接]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP3.0中的流控制能力(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62185.html</link>
    <description><![CDATA[这样就少了一个流程了！也缩短了服务器-客户机-服务器互相访问的时间！但是值得提醒你注意的一点的是Server.transfer中带的地址最好是html文件或asp文件，不要是第三方加载的东西，比]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP程序中执行SQL语句的安全性问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62184.html</link>
    <description><![CDATA[在asp程序中，如果我们的程序设计不当，就有可能面临数据库被别人控制的危险 以下是一个简单的用户更改密码的代码 --------------------- username=request(user_name) pwd=request(pwd) username=re]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP3.0中的流控制能力(3)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62183.html</link>
    <description><![CDATA[###################################################(代码开始) html head metahttp-equiv=Content-Typecontent=text/html;charset=gb2312 METANAME=AuthorCONTENT=蒲俊杰 METANAME=KeyWordsCONTENT=asp,www.aspcn.com titleResponse测试 /head bo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中优化数据库处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62182.html</link>
    <description><![CDATA[来源：中国计算机报 asp是一个Web服务器端的开发环境，它提供了一种简单易学的脚本（VBScript或Jscript），并带有许多内置的对象，从而提供了一条简捷的编程之路。更为重要的是，AS]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于JMAIL如何在收件人处指定多个收件人]]></title>
    <link>http://im.vc/web/asp/2011/0822/62181.html</link>
    <description><![CDATA[以在asp程序中指定，提交到jmail处理的时候 就可发到多个收信人信箱。 如下： JMail.AddRecipient somebody1@somewhere.com JMail.AddRecipient somebody2@somewhere.com JMail.AddRecipient somebody3@somewhere.com 据我所]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用技巧28则]]></title>
    <link>http://im.vc/web/asp/2011/0822/62180.html</link>
    <description><![CDATA[改进性能和样式的25+asp技巧 ------------------------------- LenCardinal-MicrosoftConsultingServices高级顾问 GeorgeV.Reilly-MicrosoftIISPerformance主管 更新时间：2000年4月 根据NancyCluts的文章（英文）改写 Nan]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62179.html</link>
    <description><![CDATA[asp开发人员为了在他们的设计项目中获得更好的性能和可扩展性而不断努力。幸运地是，有许多书籍和站点在这方面提供了很好的建议。但是这些建议的基础都是从ASP平台工作的结构上]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人经验：使用asp尽量减少服务器端的工作量]]></title>
    <link>http://im.vc/web/asp/2011/0822/62178.html</link>
    <description><![CDATA[使用asp尽量减少服务器端的工作量，这样就应该多使用javascript，把所有提交字段使用Javascript或vbscript检测后提交给服务器，这样服务器就不必再作检测，而在提交时可能会有人修改sc]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62177.html</link>
    <description><![CDATA[是否应该开启缓冲器？ 通过脚本程序启动缓冲器 在asp脚本的顶部包含Response.Buffer=True ，IIS就会将页面的内容缓存。 % OPTION EXPLICIT Response.Buffer = true Dim FirstName … /app1/buffer__1.asp的片段]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断Cookies是否处于开启状态]]></title>
    <link>http://im.vc/web/asp/2011/0822/62176.html</link>
    <description><![CDATA[当开发人员使用session变量时必须要求客户端浏览器支持接受cookies，当asp开始一个Session,它将送一个cookies到客户端并带一个标示(SessionID).通过这个标示，ASP以后将可以确认Session并且因此]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[分行模块，自动识别英文和型号数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62175.html</link>
    <description><![CDATA[Function cuttextlen(intext, lens) If Len(intext) = lens Then cuttextlen = intext Else tmptext = intext GetTexts = Do While Not Len(tmptext) = lens GetTexts = GetTexts + Left(tmptext, lens) tmptext = Right(tmptext, Len(tmptext) - lens) Do Wh]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（三）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62174.html</link>
    <description><![CDATA[结论 本文第一部分的重要之处在于许多小事情的累积。为了强调这个问题，我设置了最后一个测试，在其中进行了我们以前曾经测试过的看来无所谓但实际上有坏影响的所有操作。我包]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用IIS+ASP建网站的安全性分析]]></title>
    <link>http://im.vc/web/asp/2011/0822/62173.html</link>
    <description><![CDATA[刘东杰 杨静 （转自《计算机世界》） 随着Internet的发展，Web技术日新月异，人们已经不再满足于静态HTML技术，更多的是要求动态、交互的网络技术。继通用网关接口（CGI）之后，微软]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62172.html</link>
    <description><![CDATA[近来不少网友提到论坛“上一主题”“下一主题”的显示问题，我使用另一种排序方式解决的，写出来，听听高手的意见。 数据库： ID:贴子的id号，自动编号 OrderID:排序基数，以下详细]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（续一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62171.html</link>
    <description><![CDATA[在本文的第一部分中，我回顾了有关asp开发的一些基本问题，介绍了一些性能测试的结果，以理解我们放置在页面中的代码可能对运行性能造成什么样的影响。在这个系列的第二部分，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[迁移到 ASP .NET：需考虑的重要问题(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62170.html</link>
    <description><![CDATA[简介 虽然 Microsoftreg; asp .NET 的设计者在保持 ASP 应用程序的向后兼容性方面做了大量不懈的努力，但在将 Web 应用程序由 ASP 向 ASP .NET 迁移之前，还是应该了解一下几个关键的问题。在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62169.html</link>
    <description><![CDATA[发言：add_massege.asp ------------部分，未经优化整理------------ body bgcolor=#C8C8E6 script language=VBScript Sub GoBack() form1.btn1.value=返回 history.go(-1) end sub /Script % name1=session(Uname) If name1= Then Response.Wr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（三）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62168.html</link>
    <description><![CDATA[显示：（排序)main.asp --------部分，未经优化处理------- % Const adOpenStatic = 3 Const adLockPessimistic = 2 Set conn = Server.CreateObject(ADODB.Connection) Set RS = Server.CreateObject(ADODB.Recordset) DBPath=Server.MapPath]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（续二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62167.html</link>
    <description><![CDATA[当使用一个记录集时，是否应该创建一个单独的Connection对象? 要想正确回答这个问题，需要在两个不同情况下检验测试结果：第一是每页执行一个数据库处理的情况，第二是每页执行多]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[迁移到 ASP .NET：需考虑的重要问题(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62166.html</link>
    <description><![CDATA[与 COM 有关的变化 随着 .NET 框架和 asp .NET 的诞生，COM 实际上没有发生任何变化。但这并不表示在 ASP .NET 中使用 COM 对象时不必担心和考虑他们的行为。有一些基本情况，您必须了解。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ACCESS 2K与ASP的几点想法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62165.html</link>
    <description><![CDATA[1、如果需要对数据库进行写和更新操作，有时候设置数据库的写权限！ 2、对数据库进行更新操作时，最好锁定数据库，以免有其他人同时进行此操作时，发生冲突。 3、为安全起见，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（续三）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62164.html</link>
    <description><![CDATA[引用记录集中域值的最有效方法是什么? 到目前为止，我都是用名字引用记录集中的域值的。这可能是一种效率很低的方法，因为每次调用都需要查找域。为了证明这一点，下面的测试]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft IIS 真的如此「不安全」吗？(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62163.html</link>
    <description><![CDATA[你的Windows 2000 /Internet Information Server （IIS） 5.0 Web 网站已经架设起来，准备开始运作时，却发现它被安全漏洞所困扰着。安全性方面的漏洞当然可以弥补，但那要看你如何去应对。如果]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP页面的执行效率（下）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62162.html</link>
    <description><![CDATA[3.数据库问题 设计好一个数据库结构可以大大提高程序的运行速度，当然怎么设计数据库结构不是本文讨论的问题。我们先假设已经设计好了数据库结构，看看还能做些什么事情来提高]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft IIS 真的如此「不安全」吗？(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62161.html</link>
    <description><![CDATA[很多公司使用以下这两个步骤为它们基于 Windows 2000 的网络服务器来做组态：（1）安装 IIS 5.0、（2）不再理它。如果仅只于此的话，何不来个第三步骤：祈祷。 对于 IIS 5.0，Microsoft 针对]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.Net中程序构架与程序代码的分离]]></title>
    <link>http://im.vc/web/asp/2011/0822/62160.html</link>
    <description><![CDATA[一年前，当本人拿到一个名叫TWIG的php程序时，立即被作者OOP编程思想所折服，很难想像TWIG中所有的功能（行事历、邮件、个性化）均在一个PHP文件(index.php3)中执行完成，这就得益于作]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP性能的最佳选择（续四）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62159.html</link>
    <description><![CDATA[规则的总结 现在我们来重新总结一下这些规则： * 避免包含ADOVBS.inc文件，用其它方法来使用常量。 * 当使用一个单个记录集时，将连接字符串传递到ActiveConnection属性中。 * 在一个页面]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft IIS 真的如此「不安全」吗？(3)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62158.html</link>
    <description><![CDATA[这份 IIS 5.0 清单并没有提及几个其它能够用来保护任何连接到网络上的计算机的措施。这些措施非常基本，却经常被忽略： 至少在连接到网络上的转接器（adapter）上取消「NetBIOS over]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避免asp的SQL的执行效率低]]></title>
    <link>http://im.vc/web/asp/2011/0822/62157.html</link>
    <description><![CDATA[方法一、尽量使用复杂的SQL来代替简单的一堆 SQL. 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率。有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(SELECT * FROM Books) w]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用checkbox做多选删除]]></title>
    <link>http://im.vc/web/asp/2011/0822/62156.html</link>
    <description><![CDATA[form.asp form action=delete_db.asp input type=checkbox name=whois value=1数据库中的记录 input type=checkbox name=whois value=2数据库中的记录 input type=checkbox name=whois value=3数据库中的记录 input type=checkbox name=]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[rs的pagesize属性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62155.html</link>
    <description><![CDATA[在了解了Recordset对象的以上属性和方法后，我们来考虑一下，如何运用它们来达到我们分页显示的目的。首先，我们可以为PageSize属性设置一个值，从而指定从记录组中取出的构成一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft IIS 真的如此「不安全」吗？(4)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62154.html</link>
    <description><![CDATA[修正程序、零件和工具 除了 IIS 5.0 安全清单，Microsoft 还提供很多其它有用的工具，以确保 IIS 安装的安全性。Microsoft 维护了一个已被发现的漏洞修正程序的列表。这个列表很全面，但]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[断开的数据库连接的一个例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/62153.html</link>
    <description><![CDATA[使用断开的Recordset的一个关键条件就是使用客户端临时表，即 指定Rs.CursorLocation=adUseClientor3，下面是一个完整 的例子： demo-1.asp(在线演示：http://www.aspcn.com/demo/demo-1.asp) ------------------]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft IIS 真的如此「不安全」吗？(5)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62152.html</link>
    <description><![CDATA[没有所谓的万灵丹 对网络服务器而言，在通向安全的路上，保护工作通常是必经之路；遭受到试图从最小的安全漏洞中钻进来的骇客的无情打击更是少不了的事。Windows 2000 和 Internet]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于0x80040e14错误]]></title>
    <link>http://im.vc/web/asp/2011/0822/62151.html</link>
    <description><![CDATA[为什么我会得到一个0x80040e14的错误信息？ This error is thrown up by the underlying OLEDB PRovider. The actual error message is: The command contained one or more errors The error message that you see on the screen will vary d]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[英文的服务器不支持中文及中文数据库的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62150.html</link>
    <description><![CDATA[英文的服务器不支持中文及中文数据库的解决办法 方法一： 在翻阅了微软NGWS文档后发现在文档的常见问题部分有提到要添加一个config.web文件到 web目录下，试了一下，中文显示果然O]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种效率极高的分类算法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62149.html</link>
    <description><![CDATA[分类算法要解决的问题 在网站建设中，分类算法的应用非常的普遍。在设计一个电子商店时，要涉及到商品分类；在设计发布系统时，要涉及到栏目或者频道分类；在设计软件下载这样]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断输入是否为中文的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62148.html</link>
    <description><![CDATA[function ischinese(s){ var ret=true; for(var i=0;is.length;i++) ret=ret (s.charCodeAt(i)=10000); return ret; }]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP原码加密工具介绍]]></title>
    <link>http://im.vc/web/asp/2011/0822/62147.html</link>
    <description><![CDATA[总是会有很多方法暴露asp的原程序，造成数据库的密码 路径都可以轻易被其他人搞到，所以对ASP程序实行加密处理是个不错的解决方法。下面来介绍一个工具如果大家感兴趣可以来我主]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的SQL语句执行器]]></title>
    <link>http://im.vc/web/asp/2011/0822/62146.html</link>
    <description><![CDATA[大至分为三个文件：ljmdb.asp(连接库文件)、entice.asp(sql语句执行主界面)、entice2.asp(select记录集) ====================================ljmdb.asp % set conndb=server.createobject(ADODB.CONNECTION) constr=PRovider=mic]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MD5不可逆加密算法的ASP实现实例]]></title>
    <link>http://im.vc/web/asp/2011/0822/62145.html</link>
    <description><![CDATA[% PRivate Const BITS_TO_A_BYTE = 8 Private Const BYTES_TO_A_Word = 4 Private Const BITS_TO_A_WORD = 32 Private m_lOnBits(30) Private m_l2Power(30) Private Function LShift(lValue, iShiftBits) If iShiftBits = 0 Then LShift = lValue Exit Funct]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不刷新页面的情况下调用远程ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62144.html</link>
    <description><![CDATA[function DoGetData(empName) { sql = select * from 雇员 where [名字]=' + empName + '; rst = new ActiveXObject(ADODB.Recordset); rst.CursorLocation = 3; rst.Open(sql, NW); i = 0; strText = ; if (rst.RecordCount == 1) { strText += rst.Fiel]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将半角&amp;amp;quot;转换为中文&amp;amp;quot;的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62143.html</link>
    <description><![CDATA[function new_str(str) if instr(str,chr(34))0 and str then str_split=split(str,chr(34)) i=1 str_s= for j=0 to ubound(str_split)-1 if i mod 2 then str_s=str_sstr_split(j)“str_split(j+1) else str_s=str_sstr_split(j)”str_split(j+1) end if i]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图片循环显现]]></title>
    <link>http://im.vc/web/asp/2011/0822/62142.html</link>
    <description><![CDATA[脚本说明： 第一步:把如下代码加入head区域中: SCRipT LANGUAGE=javaScript !-- Begin var interval = 2.5; // delay between rotating images (in seconds) var random_display = 1; // 0 = no, 1 = yes interval *= 1000; var image_inde]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[谈两种数据库内容HTML格式的输出方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62141.html</link>
    <description><![CDATA[在实际应用VFP编写各类应用系统过程中，用户可能建立了大量的数据信息，这些信息一般都是存贮在各类数据表中，随着网络技术的迅速发展，许多数据信息要求在网上共享使用，如果]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[计算两个时间之差的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62140.html</link>
    <description><![CDATA['****************************** '||Function TimeDiff(sBegin, sEnd) '||本函数计算两个时间的差，可以不用更改直接使用 '||作者：machinecat 2001/10/26 '****************************** '****************************** '注：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样传送更多的数据在表单中]]></title>
    <link>http://im.vc/web/asp/2011/0822/62139.html</link>
    <description><![CDATA[request对象限制102,399 bytes.. When you post a large form field, you may receive the following error message: Error Type: Request object, asp 0107 (0x80004005) The data being PRocessed is over the allowed limit. In Microsoft Internet In]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP限制只能中文输入的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62138.html</link>
    <description><![CDATA[实现函数: function isCharsInBag (s, bag) { var i,c; for (i = 0; i s.length; i++) { c = s.charAt(i);//字符串s中的字符 if (bag.indexOf(c) -1) return c; } return \\; } 检查函数: function ischinese(s) { var errorChar; var badChar]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP页面的执行效率（上）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62137.html</link>
    <description><![CDATA[导言 改善程序性能是一件很微妙的事情。尤其是和INTERNET相关的程序，像asp程序，制约其性能的因素很多，像WEB服务器、TCP/ip网络和数据库服务器等。这些大都是与硬件相关。其实在软]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对ASP脚本源代码进行加密]]></title>
    <link>http://im.vc/web/asp/2011/0822/62136.html</link>
    <description><![CDATA[目前，asp(Acive Server Pages)技术已风靡全球，在Internet上几乎处处都能看到它的身影。它给开发商提供了基于脚本的直观、快速、高效的应用开发手段，极大地提高了开发的效果。应用这种]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP页面的执行效率（中）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62135.html</link>
    <description><![CDATA[2.影响asp的要素 (1).尽量把对象变量转换成本地变量，因为读本地变量比读对象变量要快许多。 比较慢的例子: if Myobj.Value = 0 then Do something elseif Myobj.Value ＞ 0 then Do something elseif Myobj.Va]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查字符串strSource是否为big或big5码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62134.html</link>
    <description><![CDATA[Public Function CheckBIG(strSource As String) As Boolean Dim idx As Long Dim ByteTemp() As Byte CheckBIG = False For idx = 1 To Len(strSource) ByteTemp = StrConv(Mid(strSource, idx, 1), vbFromUnicode) If UBound(ByteTemp) 0 Then If (ByteTemp]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断函数是奇数还是偶数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62133.html</link>
    <description><![CDATA[function Is_odd(num) as boolean n=num mod 2 if n=1 then Is_odd=true else Is_odd=false end if end function 是奇数返回真，是偶数返回假。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL7的image字段的文件下载到客户端]]></title>
    <link>http://im.vc/web/asp/2011/0822/62132.html</link>
    <description><![CDATA[把存储在SQL7的image字段的文件下载到客户端的asp源代码 文 件 名：download.asp 使用方法：download.asp?fid=xxx 说 明：把SQL7的image字段存储的文件下载到客户端 数据库结构：[表名]tabimage {fid]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP提速技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62131.html</link>
    <description><![CDATA[技巧之一：提高使用Request集合的效率 访问一个asp集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问一个局部变量要慢得多。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于页面和代码分离]]></title>
    <link>http://im.vc/web/asp/2011/0822/62129.html</link>
    <description><![CDATA[为了避免asp程序和HTML代码混写造成维护困难的情况，本文介绍了一种方法，利用模板来分离程序和页面，使程序设计更加轻松。 在使用ASP制作一个站点的时候，常常会出现一个ASP文件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中如何访问Novell下的数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62128.html</link>
    <description><![CDATA[第一步：在Novell服务器上 1.新建一个帐号或者使用任何一个已经存在的帐号。 2.把数据库存在目录的Trustee Directory Assignments权限给该帐号。 3.该帐号要有以下权限：新建，删除，浏览文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交合法性检测]]></title>
    <link>http://im.vc/web/asp/2011/0822/62127.html</link>
    <description><![CDATA[如下代码加入HTML的head区： SCRipT LANGUAGE=javaScript function numericCheck(){ nr1=document.myform.content.value; flg=0; str=; spc= arw=; for (var i=0;inr1.length;i++){ cmp=0123456789 tst=nr1.substring(i,i+1) if (cmp.indexOf(tst)0)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样把数据库结构显示出来的源代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62126.html</link>
    <description><![CDATA[通过以上的代码即可显示表的结构，字段类型，长度，自动编号，主健。如果你仔细研究后就可以发现如何远程改变数据库的结构了，祝你好运！ 要查看此演示，需要你建立一个数据源]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP注册表项目修改]]></title>
    <link>http://im.vc/web/asp/2011/0822/62125.html</link>
    <description><![CDATA[asp注册表项目修改 1)键值路径 HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW3SVCASPParame ters 2)项和参数 项和参数 描述 ---------------------------------------------------------------- AllowOutOfPRocCmpnts 控制自动]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交合法性检测]]></title>
    <link>http://im.vc/web/asp/2011/0822/62124.html</link>
    <description><![CDATA[script language=javaScript !-- function CheckForm() { if (document.form.yourname.value == ) { alert (请输入姓名！); return false; } var Letters = ABCDEFGHIJKLMNOPQRSTUVWXYZ for (i=0; i document.form.yourname.value.length; i++) { var C]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[随机访问Recordset的一条记录]]></title>
    <link>http://im.vc/web/asp/2011/0822/62123.html</link>
    <description><![CDATA[假设这个数据表有一个唯一的ID字段，并至少有一条记录。随机存取其中一条记录的方法是非常简单的，可以分为四步： 1、取得记录总数n。 2、把所有的ID号存储到一个数组中 3、产生]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用GetString来提高ASP的速度]]></title>
    <link>http://im.vc/web/asp/2011/0822/62122.html</link>
    <description><![CDATA[许多asp程序员都有过执行数据库查询,然后将查询结果用HTML表格的形式显示出 来的经 历吧. 通常我们是这么做的: % 'Create connection / recordset 'Populate data into recordset object % TABLE % Do While no]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交合法性检测]]></title>
    <link>http://im.vc/web/asp/2011/0822/62121.html</link>
    <description><![CDATA[SCRipT LANGUAGE=javaScript !--// function validate(){ var invalid = ; //非法字符是空格你可以改为其它字符或数字 if (document.submitform.filename.value.indexOf(invalid) -1) { alert(文件名不能含有空格!); return fals]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用http组件实现多引擎搜索功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62120.html</link>
    <description><![CDATA[icroSoft的asp(Active Server Page)技术极大的方便了在网络中对于数据库的访问，而且由于ASP不同于CGI需要那么多的请求（减少了服务器的资源占用），以及ASP同Windows NT、2000的结合使得ASP技术]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改善ASP性能和外观的技巧集锦（上）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62119.html</link>
    <description><![CDATA[技巧 1：将经常使用的数据缓存在 Web 服务器上 典型的 asp 页从后端数据存储中检索数据，然后将结果转换成超文本标记语言 (HTML)。无论数据库的速度如何，从内存中检索数据总要比从]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[返回UPDATE SQL语句所影响的行数的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62118.html</link>
    <description><![CDATA[用如下方法可以直接得到影响的行数： % dim conn dim sql dim lngrecs sql=update table1 set field1='good' set conn=server.createobject(adodb.connection) conn.open dsn conn.execute sql,lngrecs conn.close:set conn=nothing respons]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[String添加trim,ltrim,rtrim]]></title>
    <link>http://im.vc/web/asp/2011/0822/62117.html</link>
    <description><![CDATA[利用javascript中每个对象(Object)的PRototype属性我们可以为Javascript中的内置对象添加我们自己的方法和属性。 以下我们就用这个属性来为String对象添加三个方法：Trim,LTrim,RTrim(作用和VbScr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何使用MYSQL数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62116.html</link>
    <description><![CDATA[MySQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选数据库，但一般都是用php+MYSQL相结合来开发各种动态页面，其实asp也可以使用MYSQL数据库开发动态页面，小弟我也]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP创建EXCHANGE用户的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62115.html</link>
    <description><![CDATA[近日逼不得已必须用asp创建EXCHANGE 2000用户，但以前的相似文章都是关于EXCHANGE 5。5的，而且明确说明不向后兼容，因此在MSDN网站游荡了很久，终于找到一点资料，经过改编，终于能用于]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改善ASP性能和外观的技巧集锦（中）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62114.html</link>
    <description><![CDATA[技巧 9：进程外执行过程以性能换取可靠性 asp 和 MTS/COM+ 两者都有配置选项，可使您兼顾可靠性和性能。当建立和部署应用程序时，应知道如何兼顾两者的性能。ASP 选项可以配置 ASP 应]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安全维护 IIS asp 站点的高级技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62113.html</link>
    <description><![CDATA[一:前言 （仅以此文感谢好友bigeagle。不是他，我可能不用这么担心win2000安全问题的。呵呵！） 人说，一朝被蛇咬，十年怕.....。就是这样。2000年初，当我终于摆脱winnt 4.0 server那可怕的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[测字符串长度函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62112.html</link>
    <description><![CDATA['*************测字符串长度************** Function CheckStringLength(txt) txt=trim(txt) x = len(txt) y = 0 for ii = 1 to x if asc(mid(txt,ii,1)) 0 or asc(mid(txt,ii,1)) 255 then '如果是汉字 y = y + 2 else y = y + 1 end if next Che]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改善ASP性能和外观的技巧集锦（下）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62111.html</link>
    <description><![CDATA[技巧 19: 利用浏览器的验证功能 现今的浏览器对一些高级功能如 xml、DHTML、java 小程序和远程数据服务提供支持。尽可能使用这些功能。所有这些技术都可以执行客户机端验证和数据缓]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Oracle大文本在ASP中存取问题的解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62110.html</link>
    <description><![CDATA[在我开发BS结构程序中，由于经常需要在Oracle中处理一些容量较大的文本数据，所以经过反复测试终于用asp成功解决了大文本数据在ORACLE下存取问题。 一、运行环境： 1、Microsoft Window]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何从ACCESS数据库中读取图形(续)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62109.html</link>
    <description><![CDATA[注意的是你也可以从一个文件中新建一个位图对象，但使用这样 的方式保存在数据库中的图形格式是浏览器不能够识别的。 当你往数据库中保存图象时，你应该知道你需要使用什么格]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP在浏览器上打印输出]]></title>
    <link>http://im.vc/web/asp/2011/0822/62108.html</link>
    <description><![CDATA[利用asp结合javascript或vbscript可以生成动态的web页面。在将这种方法用于实际应用中时，不可避免的要将结果打印输出。我们同样可以将查询结果整理后输出，并用浏览器工具栏上的打印]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[也谈ASP中的RESPONSE属性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62107.html</link>
    <description><![CDATA[在随意去逛的时候，看到《asp中巧用Response属性》这篇文章，想起以前看到的一篇国外相关的文章，不敢独占，拿出来和大家分享。 调试是通过了，但有些用英文原话，还请大家多多包]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交合法性检测]]></title>
    <link>http://im.vc/web/asp/2011/0822/62106.html</link>
    <description><![CDATA[以下代码加入HTML的body区： script language=javascript !-- Begin function chk(email, formname) { invalid = ; if (!email) invalid = 请输入您的Email地址。; else { if ( (email.indexOf(@) == -1) || (email.indexOf(.) == -1) ) inv]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP＋Access的安全隐患及对策]]></title>
    <link>http://im.vc/web/asp/2011/0822/62105.html</link>
    <description><![CDATA[随着Internet的发展，Web技术日新月异。继通用网关接口（CGI）之后，“asp”(Active Server Pages)作为一种典型的服务器端网页设计技术，被广泛地应用在网上银行、电子商务、搜索引擎等各]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网站ASP漏洞小总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62104.html</link>
    <description><![CDATA[1. iis3/pws的漏洞 Win95+pws上运行asp程序，只需在浏览器地址栏内多加一个小数点ASP程序就会被下载下来。 2. iis4的漏洞 iis4一个广为人知的漏洞是:$DATA，就是ASP的URL后多加这几个字符后，代]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP文件实现CPU的使用率始终保持100％]]></title>
    <link>http://im.vc/web/asp/2011/0822/62103.html</link>
    <description><![CDATA[用asp文件实现CPU的使用率始终保持100％ 在ASP的对象中有个Response对象，该对象有个Redirect方法。我们可以 利用这个方法来实现！ Redirect是让网页转到该语句所指的路径。很简单的： '文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于页面缓存清除的方法小结]]></title>
    <link>http://im.vc/web/asp/2011/0822/62102.html</link>
    <description><![CDATA[每次上Chinaasp总有不少的网友问及如何使Asp页面刷新，在IIS4的管理下页面的不刷新问题较IIS5严重得多，而且有时确实加入一些控制页面缓存的语句还是不起什么作用。原因我也不是很清]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用Session变量的优缺点]]></title>
    <link>http://im.vc/web/asp/2011/0822/62101.html</link>
    <description><![CDATA[许多人利用session变量来开发asp（Active Server Pages）。这些变量与任何编程语言中通用的变量非常相似，并且具有和通用变量一样的优点和缺陷。任何命令都需要运行时间和存储空间（甚]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 0115 Error的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/62100.html</link>
    <description><![CDATA[asp 0115是什么错误？ 如果你的ASP报告0115 error，意思是“我不知道是什么原因引起这个错误” 0115 error引起的原因一般是由外部因素引起的。 在下面我列出了一些可能引起报0115 error的东]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何更好更快的debug]]></title>
    <link>http://im.vc/web/asp/2011/0822/62099.html</link>
    <description><![CDATA[有人说web程序员不算是真正的程序员，刚听到这句话的时候很气愤，但仔细想想，这话还是很有道理的。可以说，大部分的web程序员不能算是真正的程序员，因为他们的大部分注意力在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Varchar与char的区别]]></title>
    <link>http://im.vc/web/asp/2011/0822/62098.html</link>
    <description><![CDATA[Varchar 对每个英文(ASCII)字符都占用2个字节，对一个汉字也只占用两个字节 char 对英文(ASCII)字符占用1个字节，对一个汉字占用2个字节Varchar 的类型不以空格填满，比如varchar(100)，但它的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避免asp的SQL的执行效率低]]></title>
    <link>http://im.vc/web/asp/2011/0822/62097.html</link>
    <description><![CDATA[方法一、尽量使用复杂的SQL来代替简单的一堆 SQL. 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率。有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(SELECT * FROM Books) w]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP备份数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62096.html</link>
    <description><![CDATA[文件1：BackupDB.asp %@ Language=VBScript % HTML HEAD META name=VI60_defaultClientScript content=VBScript META NAME=GENERATOR Content=Microsoft FrontPage 4.0 SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript !-- Sub btnbak_onclick if frm]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[探讨一下rs(0)和rs(&amp;amp;quot;fieldname&amp;amp;quot;)的执行效率]]></title>
    <link>http://im.vc/web/asp/2011/0822/62095.html</link>
    <description><![CDATA[事实已证明了用索引数(index number)访问记录集元素要比用字段名称(field name)快出几倍.按字符串查询要比按整数查询花去更多的时间和系统资源. 因此，在遍历数据库时应注意下面的两个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用asp把sqlserver数据转换为execl文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62094.html</link>
    <description><![CDATA[1、asp文件： %@ LANGUAGE=VBSCRipT % %option explicit% % 'EXAMPLE AS：把数据库中一个每天24小时在线人数放到一个Excel文件中去 'AUTHOR：钢铁工人 'EMAIL：hello_hhb@21cn.com 'DATE：2001-3-25 'TEST：在NT4，SP6，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中缓冲的启用及执行速度的影响]]></title>
    <link>http://im.vc/web/asp/2011/0822/62093.html</link>
    <description><![CDATA[asp缓冲的启动方法： 1. IIS中设置缓冲默认状态为启动 - 在IIS点击网站点击网站属性 - 选择主目录，按Alt+G或点击配置按钮 - 选择应用程序选项，选中启用缓冲 如果不设置，Win2K中，IIS的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[连接WEB数据库的ADO性能提高技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62092.html</link>
    <description><![CDATA[ADO（ActiveX Data Object）是asp的重要组件，内置于ASP。ASP用Database access组件与后台数据库进行连接。Database Access 组件通过 ADO 访问存储在数据库或其他表格化数据库结构中的信息。因此，与]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADO STREAM做的无组件上传程序简单介绍]]></title>
    <link>http://im.vc/web/asp/2011/0822/62091.html</link>
    <description><![CDATA[以前，如果要用asp操作文件，比如移动、复制、删除或者创建一个记事本文件，基本上都是通过FILESYSTEMOBJECT对象做的，当然，这个东西很专业，也没说什么不好，它可以提供完善的文件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理二进制数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62090.html</link>
    <description><![CDATA[我们在使用数据库时,有时会用到图像或其它一些二进制数据,这个时候你们就必须使用getchunk这个方法来从表中获得二进制大对象,我们也可以使用AppendChunk来把数据插入到表中. 我们平时]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用cookie收藏网站]]></title>
    <link>http://im.vc/web/asp/2011/0822/62089.html</link>
    <description><![CDATA[不用每次都询问别人是否收藏，烦！ SCRipT LANGUAGE=javaScript !-- Begin var expDays = 100; url = http://softet.6to23.com; title = Come on; function GetCookie (name) { var arg = name + =; var alen = arg.length; var clen = docum]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在主页中控制浏览权限]]></title>
    <link>http://im.vc/web/asp/2011/0822/62088.html</link>
    <description><![CDATA[在平时做主页时，为了控制某主页的浏览权限，就要设置一个密码来控制。假设密码存于服务器端的数据库中。在FrontPage 98 中可结合asp 来一个小程序程序，完成上述功能。具体步骤如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何读出空格]]></title>
    <link>http://im.vc/web/asp/2011/0822/62087.html</link>
    <description><![CDATA[我们在网页中经常要动态显示从文件中取出来的内容，假如你编写了一个聊天室或论坛之类的程序，每一位发表言论者的内容都要先存在文本文件中，然后再显示在网页上。但是我们在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示左边的n个字符(自动识别汉字)函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62086.html</link>
    <description><![CDATA[rem 显示左边的n个字符(自动识别汉字) Function LeftTrue(str,n) If len(str)=n/2 Then LeftTrue=str Else Dim TStr Dim l,t,c Dim i l=len(str) t=l TStr= t=0 for i=1 to l c=asc(mid(str,i,1)) If c0 then c=c+65536 If c255 then t=t+2 Els]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样经由ADO来压缩Microsoft Access数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62085.html</link>
    <description><![CDATA[HOWTO: Compacting Microsoft access Database via ADO -------------------------------------------------------------------------------- The information in this article applies to: ActiveX Data Objects (ADO), versions 2.1, 2.5, 2.6 Microsoft OL]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安全脚本程序的编写 V1.0]]></title>
    <link>http://im.vc/web/asp/2011/0822/62084.html</link>
    <description><![CDATA[基本思路： 为没一个功能写一个独立的程序，程序页 尽可能少的让客户了解你的服务器端信息 不要用客户应该这么写这个思路想问题 尽可能多的想到不可能发生的事情 1.关于交互式动]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用正则表达式写的HTML分离函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62083.html</link>
    <description><![CDATA[存成.asp文件，执行，你用ASPHTTP抓内容的时候用这个很爽，当然自己要改进一下了 % Option Explicit Function stripHTML(strHTML) 'Strips the HTML tags from strHTML Dim objRegExp, strOutput Set objRegExp = New Regexp]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[样设置为使用OLEDB连接我的Access数据库？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62082.html</link>
    <description><![CDATA[Before you begin you should check to make sure that you have MDAC v2.1 SP2 or later installed on yourserver. To get the latest MDAC goto http://www.microsoft.com/data. If you are unsure which version of MDAC you have installed Microsoft PRo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对连串英文自动换行的解决方法 IE5.5]]></title>
    <link>http://im.vc/web/asp/2011/0822/62081.html</link>
    <description><![CDATA[1.显示效果与代码 [代码] table style=TABLE-LAYOUT: fixed width=100% border=0 cellspacing=0 cellpadding=7 bgcolor=#f7f7f7 tr td style=LEFT: 0px; WIDTH: 100%; Word-WRAP: break-wordfont color=#99000051JS.COM51JS.COM51JS.COM51JS.COM51JS]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单递交内容检测脚本]]></title>
    <link>http://im.vc/web/asp/2011/0822/62080.html</link>
    <description><![CDATA[如下代码加入HTML的head区： SCRipT LANGUAGE=javaScript function numericCheck(){ nr1=document.myform.content.value; flg=0; str=; spc= arw=; for (var i=0;inr1.length;i++){ cmp=0123456789 tst=nr1.substring(i,i+1) if (cmp.indexOf(tst)0)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样写你自己的EMAIL组件（原理）]]></title>
    <link>http://im.vc/web/asp/2011/0822/62079.html</link>
    <description><![CDATA[首先我们看看EMAIL组件是干什么的，和怎么干的。我所说的EMAIL组件是用来发 送EMAIL的，不是接受和处理EMAIL的，这点大家一定要明白。而组件本身并不是 SMTP，所以需要一台SMTP服务器。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[获得jpg文件的实际尺寸]]></title>
    <link>http://im.vc/web/asp/2011/0822/62078.html</link>
    <description><![CDATA[bask 把它编译成组件就可以用了，还支持png 'I have released this source code into the public domain.You may use it 'with no strings attached. 'Just call GetImageSize with a string containing the filename, and 'it will return a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使replace方法不区分大小写？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62077.html</link>
    <description><![CDATA[被替换的文本的实际模式是通过 RegExp 对象的 Pattern 属性设置的。 Replace 方法返回 string1 的副本，其中的 RegExp.Pattern 文本已经被替换为 string2。如果没有找到匹配的文本，将返回原来的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中有关timeout超时的体会]]></title>
    <link>http://im.vc/web/asp/2011/0822/62076.html</link>
    <description><![CDATA[最近用asp和MSSQL做了一个数据库应用, 开始一切顺利,但随着数据量的增加, 先后几次查询时出现timeout的问题. 参考Option Pack文档及社区内的文章, 现在问题都已解决(至少没又发现新的). 现]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP乱码的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62075.html</link>
    <description><![CDATA[: 在做内有VBscript的asp homepage时,一个form提交方法为GET, : 当form的表单传给asp处理时,入...asp?name=张三 : 可张三的中文已经乱码,请问如何在asp中用vbscript将乱码恢复成 : 正确的中文. : .....]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在 Web 页上使用条件数值格式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62074.html</link>
    <description><![CDATA[Wade Tai Microsoft Corporation 1999年11月 适用于：Microsoft Excel 2000 摘要：此窍门介绍了在将 Microsoft Excel 工作簿或工作表发布到 Web 页时，如何实现定制数值格式。它说明如何使用 NumberFormat 属]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现从SQL Server导出数据到Access]]></title>
    <link>http://im.vc/web/asp/2011/0822/62073.html</link>
    <description><![CDATA[方法其实很简单：需要在SQL Server连接中嵌套一个access连接，然后逐条 写入就可以了。 %set Conn = Server.CreateObject(ADODB.Connection) Conn.Open driver={SQL server};server=mamaco;uid=linner;pwd=123;dat abase=lin]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Flash和Asp数据库的结合应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62072.html</link>
    <description><![CDATA[在看这个例子之前，先讲讲Flash和asp结合的原理，其实懂一点ASP的朋友都知道ASP是基于HTML的. 其实Flash和Asp接口的原理和纯ASP文件之间交互的原理是一样的,简单地说就是页面之间的数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP向NT域中加一个用户]]></title>
    <link>http://im.vc/web/asp/2011/0822/62071.html</link>
    <description><![CDATA[问题： 在asp中如何添加NT域用户？ 俟名 于1999-03-08 提出 答案： 可以使用微软的活动目录服务接口（ADSI），例如： Set DomainObj=GetObject(WinNT://Domain) Set UserObj=DomainObj.Create(user,white) UserObj]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs的树状算法的补充程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62070.html</link>
    <description><![CDATA[ssql = select gorders，glayer from bbs where gId= gId and goders gorders order by goders rs1.Open sql, conn1, adOpenForwardOnly, adLockOptimistic '查询比父贴 ‘order_value大的order_value If (rs1.EOF And rs1.BOF) Then If gLayer = 8]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中页面限权访问的几种方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62069.html</link>
    <description><![CDATA[在设计网页时，经常遇到某些页面需限权访问的情况。比如，一个公司的某些产品只让某一或某些供应商或客户浏览。那么，我们如何实现这一功能呢？本文，笔者将向读者介绍几种限]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于 aspsmartupload 注册问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62068.html</link>
    <description><![CDATA[aspSMARTUPLOAD : DOCUMENTATION Setup Instructions Last modified: August 1st, 1999 copy; 2000 Advantys. All rights reserved. Overview Configuration required Stage 1 : Extract the downloaded file Stage 2 : Install aspSmartUpload.dll Stage 3 :]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET:访问Excel 电子表格]]></title>
    <link>http://im.vc/web/asp/2011/0822/62067.html</link>
    <description><![CDATA[C# Code --------------------------------------------- %@ Page Language=C# % %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO % script language=C# runat=server PRotected void Page_Load(Object Src, EventArgs E) { string s]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[去除空格的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62066.html</link>
    <description><![CDATA[一个是去左端空格 一个是去右端空格 function ltrim(str) { var _str = +str; var re = /[ ]+([\w|\W]*)/gi; _str.match(re); return RegExp.$1; } function rtrim(str) { var _str = str+ ; var re = /([\w|\W]*[^ ])[ ]+/gi; _str.match(re]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO.NET：ADODataReader类]]></title>
    <link>http://im.vc/web/asp/2011/0822/62065.html</link>
    <description><![CDATA[原码下载地址： http://www.codePRoject.com/dotnet/ADONET_datareader/ADONET_datareader.zip Introduction ADO.NET is the .NET enhanced version of ADO that we all know and love. ADO.NET aims to address some of the deficiencies of traditio]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用XML不离开页面刷新数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62064.html</link>
    <description><![CDATA[开门见山，不离开页面就能刷新页面中的（部分）数据好处多多。主要是不需要写无聊代码维护 state。asp.net （以及其雏形 VI6 SOM）中的 server-side control (VI6 DTC, Script Library) 通过大量hid]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在网页中存取剪贴板中的内容]]></title>
    <link>http://im.vc/web/asp/2011/0822/62063.html</link>
    <description><![CDATA[豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 在做网络追捕的时候，经常遇到这样的问题，是否需要将ip 地址重新输入一次的问题，所以在这里我考虑如何使用剪贴板 的问题 幸好在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ADO STREAM做的无组件上传程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62062.html</link>
    <description><![CDATA[用ADO STREAM做的无组件上传程序，今天我做一下关于它的简单介绍 以前，如果要用asp操作文件，比如移动、复制、删除或者创建一个记事本文件，基本上都是通过FILESYSTEMOBJECT对象做的，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO.NET:使用ADO.NET连接文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62061.html</link>
    <description><![CDATA[try { // create a new ADOConnection to the text file through ODBC and an existing Data Source ADOConnection conn = new ADOConnection(PRovider=MSDASQL;DSN=registrations;); // create a DataSet Command that selects all the records from the reg]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断gif图像尺寸的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62060.html</link>
    <description><![CDATA[这里是我根据gif图像格式想出来的判断gif图像尺寸的方法，请大家给点意见 up.htm html body form action=up.asp ENCTYPE=multipart/form-datamethod=post table border=0 width=100% cellspacing=0 tr td width=30%请选择您]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过地址栏传递参数.通过url传递参数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62059.html</link>
    <description><![CDATA[看看我的方法可以吗？应该可以了吧。（通过地址栏传递参数）（通过url传递参数） script language=javascript var goUrl=index.asp?schooltype=area=; function getType(vl) {var stno,arno,tmpurl; stno=goUrl.indexOf(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[session变量中的数组如何引用]]></title>
    <link>http://im.vc/web/asp/2011/0822/62058.html</link>
    <description><![CDATA[If you store an array in a session object, you should not attempt to alter the elements of the stored array directly. For example, the following script will not work: % Session(StoredArray)(3) = new value % This is because the Session objec]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带日期标注的日历控件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62057.html</link>
    <description><![CDATA[控件名称：Calendar with Date Mark 版本：1.0 类型：HTML Component 运行需求：IE 5（推荐IE5.5或更高版本）、MSxml、asp或asp.net（后台） 费用：免费 支持：不提供支持 源 代 码：XML Scriptlet -------]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用global.asa计划执行程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/62056.html</link>
    <description><![CDATA[其实就是利用文件“global.asa”！许多asp编程新手都想知道这东西是什么？事实上，global.asa就是一个事件驱动程序，其中共包含4个事件处理过程： application_OnStart、Application_OnEnd、sessi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[外源.js的选择调用与一个.htm网站管理初探]]></title>
    <link>http://im.vc/web/asp/2011/0822/62055.html</link>
    <description><![CDATA[javascrpt真是一个好东西，只要利用好script language=Javascript src=xxxx.js/script和document.write('xxx');就可以实现方便的内容更新。所以有了一下的想法： 一个template.htm加无数.js文件构成一个网站]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在config.web中保存数据库连接串]]></title>
    <link>http://im.vc/web/asp/2011/0822/62054.html</link>
    <description><![CDATA[在asp中有多种方法保存数据库连接串，asp+提供了另一种新方式:config.web。quickstart中的许多demo都是直接将连接串写在程序中。这对于demo用途是没有问题，但在实际使用中是不行的。 本文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET连SQL7接口源代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/62053.html</link>
    <description><![CDATA[The following example shows what a simple ADO.NET application that connects to the Northwind database and returns a list of Categories would look like. The example writes the output to the console, or command PRompt. The following example s]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP.NET中使用.NET组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62052.html</link>
    <description><![CDATA[很多人在 @Import 和 @Assembly 页面标识的时候感到困惑，本文将为你解开这些疑问，告诉你如何来使用.NET的组件。 和asp中的类相比较有什么改变？ 如果你以前曾经开发过ASP程序，那你应]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态创建下拉菜单]]></title>
    <link>http://im.vc/web/asp/2011/0822/62051.html</link>
    <description><![CDATA[html head title动态下拉菜单/title style SELECT.smallSel { BACKGROUND-COLOR: white; COLOR: #000080; FONT-SIZE: 9pt } /style script language=javascript !-- hide from old browsers... /*动态下拉菜单 -- written by Taylor Chen (Taylor]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[悠哉悠哉，一个复合查询方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62050.html</link>
    <description><![CDATA[几乎每个完整的应用程序都会需要一个复合查询。建立一个功能强大的复合查询首先必须要能够动态生成查询条件，其次应该能够对查询到的数据进行修改，最后这个复合查询最好能够]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密页面代码生成器]]></title>
    <link>http://im.vc/web/asp/2011/0822/62049.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN !-- saved from url=(0032)http://www.ie-zone.com/index.php -- HTML !-- #BeginTemplate /Templates/Js.dwt -- HEAD !-- #BeginEditable doctitle -- TITLE加密页面代码生成器 /TITLE]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[验证email地址是否合法完整实例]]></title>
    <link>http://im.vc/web/asp/2011/0822/62048.html</link>
    <description><![CDATA[1。//index.html html head titleemail地址是否合法 index.html/title Script language = javaScript src=mail.js/script script language=Javascript !-- function mail_PRocess(stringin) { var num=email_test(stringin); var str=; if (num!=0) {]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何取得所有的Session变量]]></title>
    <link>http://im.vc/web/asp/2011/0822/62047.html</link>
    <description><![CDATA[在程序调试中，有时候需要知道有多少session变量在使用，她们的值如何？由于Session对象提供一个称为Contents的集合(Collection)，我们可以通过For...Each循环来达到目标： Dim strName, iLoop Fo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript动态装入XML数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62046.html</link>
    <description><![CDATA[使用javascript创建Microsoft xml DOM,就可以完成这一工作. // 装入数据. var source = new ActiveXObject(Microsoft.XMLDOM); source.async = false source.load(history.xml); // 装入样式表. var stylesheet = new ActiveXObject(Mi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用Global.asa实现在线人数统计]]></title>
    <link>http://im.vc/web/asp/2011/0822/62045.html</link>
    <description><![CDATA[% 'count online user without using Global.asa 'script by Narong Khotarasakit 'webmaster of ezebox.com 'report bug : info@ezebox.com sessionID = session.SessionID timeout = 5 ' set how long to keep this session in minute you can increase thi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET:处理session]]></title>
    <link>http://im.vc/web/asp/2011/0822/62044.html</link>
    <description><![CDATA[Shivani Introduction Hi When I started working with this technology I faced a PRoblem dealing with session as in any transaction or Database oriented portal this is a must requirement to deal with. Here is a simple example showing the way t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs的树状结构算法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62043.html</link>
    <description><![CDATA[数据库设计中order_value是用来排序的，具体实现是 **注意以下的讨论是对一个主题而言，就是对一棵树而言！ 如果加一新贴那么order_value=0 如果跟贴查比父贴order_value大的order_value 如果有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯猝使用VBScript来实现加密]]></title>
    <link>http://im.vc/web/asp/2011/0822/62042.html</link>
    <description><![CDATA[% '### To encrypt/decrypt include this code in your page '### strMyEncryptedString = EncryptString(strString) '### strMyDecryptedString = DeCryptString(strMyEncryptedString) '### You are free to use this code as long as credits remain in pl]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[输入显示框中循环出现文字]]></title>
    <link>http://im.vc/web/asp/2011/0822/62041.html</link>
    <description><![CDATA[步骤一: 请将下面的原代码插入到body下面 , SCRipT LANGUAGE=javaScript !-- escondamos //texto a mostrarse var mensaje= 欢 迎 你的 光临; mensaje+= 经 常 来 哟; //fraccion a mostrarse var ancho=50; //rutina de mensaje d]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用MYSQL数据库全攻略]]></title>
    <link>http://im.vc/web/asp/2011/0822/62040.html</link>
    <description><![CDATA[MySQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选 数据库，但一般都是用php+MYSQL相结合来开发各种动态页面，其实asp也可以 使用MYSQL数据库开发动态页面，小弟我]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在VC++ 编写的组件中使用 ADO]]></title>
    <link>http://im.vc/web/asp/2011/0822/62039.html</link>
    <description><![CDATA[如何在VC++ 编写的组件中使用 ADO 简介 这篇文章是给那些习惯于用VB开发组件的人想转用VC++时看的。本文用一个简单的例子示范如何使用ADO Recordset 对象。 在VB中，当你想要返回一个AD]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于密码校验]]></title>
    <link>http://im.vc/web/asp/2011/0822/62038.html</link>
    <description><![CDATA[在处理密码校验这种问题的时候我们一般需要检测用户输入的数据，以排除类似单引号、or等特殊字符和单词，这时使用正则表达式是一个非常有效的方法。不过今天在编制论坛的时候]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样用HtmlEncode显示Unicode？]]></title>
    <link>http://im.vc/web/asp/2011/0822/62037.html</link>
    <description><![CDATA[%@ Language=VBScript % HTML HEAD TITLEUNICODE Encoding/TITLE /HEAD BODY % Dim strU dim strNormal strU= ChrW(7913) strNormalANSI= aiN % font face=arial size=+1 PAn ANSI value: %=strNormalANSI% PAn HTMLencoded String: %=Server.HTMLEncode(strU]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBSctipt 5.0中的新特性]]></title>
    <link>http://im.vc/web/asp/2011/0822/62036.html</link>
    <description><![CDATA[VBSctipt 5.0中的新特性 能够在asp中应用的特性包括了那些由脚本引擎所提供的特性，这意味着VBScript的改进也可在ASP中应用。VBScript的改进如下所述： 1、 在脚本中使用类 在VBScript中实现]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Varchar与char的区别]]></title>
    <link>http://im.vc/web/asp/2011/0822/62035.html</link>
    <description><![CDATA[Varchar 对每个英文(ASCII)字符都占用2个字节，对一个汉字也只占用两个字节 char 对英文(ASCII)字符占用1个字节，对一个汉字占用2个字节 Varchar 的类型不以空格填满，比如varchar(100)，但它的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP出错集成处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/62034.html</link>
    <description><![CDATA[有的网友总是把出错页面一个一个做好后，在其它的asp页面中调用出错的页面。比方在一个登陆页面中一般会有两个出错信息，一个是最常见的密码出错，还有一个是用户名未注册。一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET中使用多个runat=server form]]></title>
    <link>http://im.vc/web/asp/2011/0822/62033.html</link>
    <description><![CDATA[asp.net 在同一个页面不支持多个 runat=server forms，要解决这个问题，可以把每个 form 放在一个单独的 panel 控件中，这样用户就可以简单地通过单选按钮在不同 panel 间切换。 代码如下：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯猝使用VBScript来实现加密]]></title>
    <link>http://im.vc/web/asp/2011/0822/62032.html</link>
    <description><![CDATA[% '### To encrypt/decrypt include this code in your page '### strMyEncryptedString = EncryptString(strString) '### strMyDecryptedString = DeCryptString(strMyEncryptedString) '### You are free to use this code as long as credits remain in pl]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET中处理datetime的一些通用函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62031.html</link>
    <description><![CDATA['Uses the Timespan method to subtract a certain number of days Function Date1() Dim NewTime as DateTime NewTime = DateTime.Now.Subtract( New TimeSpan(7, 0, 0, 0) ) NewTime = NewTime.Format(MM/dd/yyyy, DateTimeFormatInfo) response.write(NewT]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET中的XML表单控件]]></title>
    <link>http://im.vc/web/asp/2011/0822/62030.html</link>
    <description><![CDATA[导 读：介绍了有关asp.net中xml控件的使用,有个小BUG:在WEBFORM.ASPX中出现的XML控件,其中的transformsource属性设定了样式表文件路径,可是在文章出处没有找到这个XSL文件.:( 自己解决吧. 在这个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[PerlScript编写ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/62029.html</link>
    <description><![CDATA[现在我们建立第一个asp页 %@Language=PerlScript% HTML TITLE PerlScript Test /TITLE % for($i=0; $i=10; $i+=2) { $Response-Write(); $Response-Write(Hello World! ); } % /HTML 在这里大家一定要注意 $Response-Write();为什么不用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET实现HTTP方式获取功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62028.html</link>
    <description><![CDATA[%@ Assembly Name=System.Net % %@ Import Namespace=System.Net % %@ Import Namespace=System.IO % script language=VB runat=server dim STRtemp as string Sub Page_Load(Src As Object, E As EventArgs) Dim HttpWResp as HTTPWebresponse Dim sr As Str]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何将代码生成的文件设为只读]]></title>
    <link>http://im.vc/web/asp/2011/0822/62026.html</link>
    <description><![CDATA[Attributes PRoperty Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute. object.Attributes [= newattributes] Arguments object Required. Always the name of a File or Folder object. newattri]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS 处理 SEARCH 请求漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0822/62025.html</link>
    <description><![CDATA[涉及程序： IIS 描述： 通过构造特殊的 SEARCH 请求导致 IIS 执行攻击者代码漏洞 详细： 发现 IIS 在处理 SEARCH 请求时存在漏洞，攻击者通过提交构造特殊的 IIS SEARCH 请求能重启与 IIS 相关]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XML数据岛解决用户界面问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62024.html</link>
    <description><![CDATA[把处理过程移到客户端 当Web服务器返回网页后，所有进一步的操作处理都在客户端进行。我原先认为如果向客户端发送一个大的数据集会使程序的速度放慢。但后来我却发现一次性发送]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中巧用存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0822/62023.html</link>
    <description><![CDATA[在许多网页上，用户都可以通过简单地选择列表中的一项来输入一个国家或州的名字，在大多数情况下，我们通常使用asp来生成这个列表，创建生成这个列表的函数并把它们保存在一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用组件实现上载功能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62022.html</link>
    <description><![CDATA['---- file name /upaoad.asp/ % Public Function BuildUploadRequest(strRequestBin) Dim PosBeg, PosEnd, boundary, boundaryPos 'Get the boundary PosBeg = 1 PosEnd = InstrB(PosBeg,strRequestBin,getByteString(chr(13))) boundary = MidB(strRequestB]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XML数据岛解决用户界面问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/62021.html</link>
    <description><![CDATA[把数据库的表数据保存到文件中 我曾答应向你展示如何避免每次请求都要读取数据库和串联成xml字符串的步骤。答案就是把数据库的表数据保存到文件中；这样做有几个好处。读取文件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[拦截表单的另外一种写法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62020.html</link>
    <description><![CDATA[script language=vbs sub send_onclick dim f set f=document.ff photo=trim(f.photo.value) if photo= then msgbox 没有照片，怎么传！,64 ,上传 f.photo.focus exit sub end if f.submit end sub sub retu_onclick history.back end sub /script]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用组件实现上载功能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62019.html</link>
    <description><![CDATA['---- file name /handld_upload.asp % Option Explicit % % Response.Expires=0 Response.Buffer = TRUE Response.Clear Const IMAGE_SIZE = width=200 height=150 Dim UploadRequest Set UploadRequest = Server.CreateObject(Scripting.Dictionary) Dim by]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ASP中堆栈溢出错误的解决]]></title>
    <link>http://im.vc/web/asp/2011/0822/62018.html</link>
    <description><![CDATA[在执行asp程序中出现堆栈溢出等类似字的错误。 症状可能发生出处： 提交表单处，数组内存分配及变量内存分配等 错误产生原因： Win2K中的默认堆栈只有64K，如果ASP程序对堆栈的使用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现OICQ式的信息收发功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62017.html</link>
    <description><![CDATA[应广大好友的提议，本站将会常推出有关程序设计思路的文章。 在asp中实现OICQ式的发信息功能，实现此功能的方法很多，在此我主要介绍以数组存取信息的方式。 在ASP中定义一个数组]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[运用asp结合vbscript模拟股票滚屏]]></title>
    <link>http://im.vc/web/asp/2011/0822/62016.html</link>
    <description><![CDATA[这是一个模拟股票滚屏的看板程序，程序将10个股票的价格和张跌幅信息以每次5组的方式显示，循环交替，不同以往滚屏尾部留有空白的情况。由于代码简单，这里就不对其多加注释了]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在网页中实现OICQ里的头像选择的下拉框]]></title>
    <link>http://im.vc/web/asp/2011/0822/62015.html</link>
    <description><![CDATA[html head title模拟OICQ下拉头像/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script//writed by 钟钟 2001/2/27 var bV=parseInt(navigator.appVersion); var IE4=((document.all)(bV=4))?true:false; var NS4=(documen]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Dom遍历XML的一个例子,结果为树状结构]]></title>
    <link>http://im.vc/web/asp/2011/0822/62014.html</link>
    <description><![CDATA[knowledge.xml文件 ?xml version=1.0 encoding=gb2312? ?xml:stylesheet type=text/xsl href=knowledge.xsl? Ebaihe name=Ebaihe type=gs id=gs000 知识管理 name=知识管理 type=rt id=rt000 目录 name=vc++ type=ml id=ml003/ 目录 name=asp t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[论坛树状记录表的堆栈展开]]></title>
    <link>http://im.vc/web/asp/2011/0822/62013.html</link>
    <description><![CDATA[由于工作原因，涉及到一个树状存放记录的表,要求程序中把树状表全部展开，并输出相应的数据內容。由于涉及到此种操作的地方很多，比如网络上的\\\论坛就是典型的采用树状存放记]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仅用xsl和asp实现分页功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/62012.html</link>
    <description><![CDATA[注意事项： ※本文代码可能有一些多余部分未去掉，请在阅读时忽略。 一些外部include进来的文件这里就不贴上来了。 ※小乙写xsl也不久，很多语句都不会使用，有些地方写得比较罗嗦]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP从远程服务器上接收XML数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/62011.html</link>
    <description><![CDATA[% dim objxml dim objRootElement dim strValue dim strInetURL dim strXML dim item strInetURL =http://pf.inetsolution.com/inetactive2001/inetactive2001news.xml Dim HttPReq set HttpReq = server.CreateObject(MSXML2.xmlhttp) HttpReq.open GET, htt]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[表单填写时用回车代替TAB的实现方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/62010.html</link>
    <description><![CDATA[关键之处在于tabindex，其设计思想是：为每个表单元素设置一个tabindex，其值分别为前一个表单元素的tabindex的值加一，函数的功能就是当用户按下回车键时先将当前tabindex的值加一，而]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用context()方法将数据置入表格(XML)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62009.html</link>
    <description><![CDATA[作者：Belltree singers singerCeline Dion/singer singerBritney Spears/singer singerEnya/singe singerChristina Aguilera/singer singerBackstreet Boys/singer singerSpice Girls/singer /singers 一般我们取出一组数据后都喜欢将数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将数据库里面的内容生成EXCEL]]></title>
    <link>http://im.vc/web/asp/2011/0822/62008.html</link>
    <description><![CDATA[1、asp文件： %@ LANGUAGE=VBSCRipT % %option explicit% % 'EXAMPLE AS：把数据库中一个每天24小时在线人数放到一个Excel文件中去 'AUTHOR：钢铁工人 'EMAIL：hello_hhb@21cn.com 'DATE：2001-3-25 'TEST：在NT4，SP6，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DateDiff的用法]]></title>
    <link>http://im.vc/web/asp/2011/0822/62007.html</link>
    <description><![CDATA[DateDiff 函数 返回 Variant (Long) 的值，表示两个指定日期间的时间间隔数目。 语法 DateDiff(interval, date1, date2[, firstdayofweek][, firstweekofyear]]) DateDiff 函数语法中有下列命名参数： 部分 描述]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进性能和样式的 25+ ASP 技巧(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62006.html</link>
    <description><![CDATA[Len Cardinal - Microsoft Consulting Services 高级顾问 George V. Reilly - Microsoft IIS Performance 主管 更新时间：2000年4月 根据 Nancy Cluts 的文章（英文）改写 Nancy Cluts - 开发人员技术工程师 Microsoft Corp]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在ASP里面创建统计图表]]></title>
    <link>http://im.vc/web/asp/2011/0822/62005.html</link>
    <description><![CDATA[下面给出了一个通用的函数及其用例，请参考。 % REM 首先我们设计一个ShowCart函数，其中 REM aValues 是一个数值数组 REM aLables 是横坐标的标号 REM strTitle是这个统计图的标题 REM strXAxisLa]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加快DHTML的一组技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/62004.html</link>
    <description><![CDATA[Mark Davis Microsoft Corporation 摘要：本文说明了某些 DHTML 功能对性能的重大影响，并提供了一些提高 DHTML 页面性能的技巧。 目录 简介 成批处理 DHTML 更改 使用 innerText 使用 DOM 添加单个元]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进性能和样式的 25+ ASP 技巧(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/62003.html</link>
    <description><![CDATA[技巧 6：妙用 session 对象 在肯定了在 applications 和 Sessions 中缓存的优点之后，我们建议您避免使用 Session 对象。下面将会谈到，当用于忙碌站点时，Sessions 有几个缺点。所谓忙碌，通常]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实用函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/62002.html</link>
    <description><![CDATA[Source Code -------------------------------------------------------------------------------- % '****************************************************************************** ' ********************** DO NOT DELETE **************************]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个不太让人讨厌的自动弹出窗口]]></title>
    <link>http://im.vc/web/asp/2011/0822/62001.html</link>
    <description><![CDATA[一个不太让人讨厌的自动弹出窗口 自动弹出窗口是一个让人讨厌的事情，为什么我们用它来显示我们的调查表呢？ 用弹出窗口来显示调查表，被认为是达到我们收集访问用户信息的最]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密你的Access数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/62000.html</link>
    <description><![CDATA[Secure Your access Database How can you keep unwanted people from downloading your database simply by typing in the url? You can't, it is not possible. BUT you can secure it by adding a passWord to it. Below I will walk you through the step]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进性能和样式的 25+ ASP 技巧(3)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61999.html</link>
    <description><![CDATA[技巧 13：避免重新定义数组 尽量避免 Redim 数组。从关心性能的角度来说，如果计算机受物理内存的限制，最好一开始将数组的维数设置为最差方案 - 而不要将维数设置为最佳方案，再]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用global.asp定时执行ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/61998.html</link>
    <description><![CDATA[Using the global.asa to schedule asp code execution. Have you ever had some asp code that needed to execute every once in a while but, you just didn't know how to do it. There is a solution that doesn't involve running any scheduling or scr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从文本文件中读取信息并存储入数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61997.html</link>
    <description><![CDATA[% dim fso,f1 Const ForReading = 1 set fso=createobject(Scripting.FileSystemObject) ''使用fso对象读取信息。 set f1=fso.OpenTextFile(E:\doit\info2.txt, ForReading) ''打开要读取的文件 dim conn,rst set conn=server.createobject(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进性能和样式的 25+ ASP 技巧(4)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61996.html</link>
    <description><![CDATA[技巧 21：启用浏览器和代理缓存 默认情况下，asp 禁用浏览器和代理中的缓存。这将很有意义，因为 ASP 生来就是动态的，具有潜在地对时间敏感的信息。如果有一个不需要对每次查看进]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密QueryString数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/61995.html</link>
    <description><![CDATA[PRoblem with Query String Method Often time we use query string collection to retrieve an unique record from a table. Notice the following piece of code - Detail.asp?RecordID=200 Here we are passing a query string value called RecordID usin]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面考察“禁用浏览器后退按钮”]]></title>
    <link>http://im.vc/web/asp/2011/0822/61994.html</link>
    <description><![CDATA[浏览器的后退按钮使得我们能够方便地返回以前访问过的页面，它无疑非常有用。但有时候我们不得不关闭这个功能，以防止用户打乱预定的页面访问次序。本文介绍网络上可找到的各]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种理论上最快的Web数据库分页方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61993.html</link>
    <description><![CDATA[上篇我们谈到了关于数据库传统的三种分页方法和他们的利弊，并且提出了一种理论上最佳的分页方法,本篇我们就来详细说说这种最佳的分页方法。 一：构思。 在设计Web数据库时，如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于释放session的两篇文章（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61992.html</link>
    <description><![CDATA[If you are using asp 3.0 (the version of ASP that comes with Windows 2000 / IIS 5) then you can use the following syntax: session.Contents.Remove name where Name is the name of the Session variable you wish to remove. Removing Session varia]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML加ASP实现网页“本地化”]]></title>
    <link>http://im.vc/web/asp/2011/0822/61991.html</link>
    <description><![CDATA[想让你的站点能被来自多个国家的冲浪者看明白吗？无疑，这就需要提供多个语言版本的页面内容，也就是所谓的“本地化”功能。最容易想到的方法就是分别编写多种语言的页面内容]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于分页办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61990.html</link>
    <description><![CDATA[时间关系，没有经过完全测试，这个是大概意思。 CREATE PROCEDURE getnotes @forumID varchar(10), @a_intPageNo int , @a_intPageSize int, @rootID varchar(10) AS declare @m_intRecordNumber int declare @m_intStartRecordint dec]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于释放session的两篇文章（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61989.html</link>
    <description><![CDATA[Deleting a Subset of session Variables When using Sessions to store variables in, I use a naming convention - for example, for all Customer related info I PRefix the session variable with the substring Customer. (so for the CustomerID it wo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现分页的例子]]></title>
    <link>http://im.vc/web/asp/2011/0822/61988.html</link>
    <description><![CDATA[在网上 讨论 如何 实现 分页有很多程序，我在这里向大家介绍一种实现分页的新的方法，使用 存储过程 来实现分页 由于 这段程序写的 比较早，那个时候 还没有 SQL 7,每一个 Varchar 只]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[透过ASP修改NT使用者的密码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61987.html</link>
    <description><![CDATA[使用者登入機制在未來的網頁開發會顯得越來越重要, 很簡單的道理, 因為現在的網站很著急的要做好會員管理, 然後向會員收錢, 其實這是很正常的代誌, 台灣的公司法說的很清楚嘛, 『]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP调用SQL SERVER存储程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61985.html</link>
    <description><![CDATA[调用数据库存储过程 %Set Dataconn = Server.CreateObject(ADODB.Connection) '建立连接对象 Dataconn.Open DSN=SinoTrans;SERVER=APP_SERVER;UID=sa;PWD=;APP=Microsoft(R) Developer Studio;WSID=APP_SERVER;Regional=Yes Set cmdTemp = Ser]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为输入及输出的数据库的资料做造型]]></title>
    <link>http://im.vc/web/asp/2011/0822/61984.html</link>
    <description><![CDATA[在討論區上有許多網友問到按怎處理雙引號的問題, 擱有網友問到由資料庫抓出來的資料無法斷行的問題, 其實在 VBscript 有一支 Replace 函數可以來幫助咱們處理這款問題, 所以今日的文章]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[已调试好的asp程序在VB中转换为组件的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/61983.html</link>
    <description><![CDATA[作者 Heatch 在网易虚拟社区的“VB和Basic区”里有一篇《使用VB编写纯asp程序 [转][Technology] 》，其实我认为最好的方法应该这样： 原文中的定义如下： Dim m_objResponse As Response 其实对于我]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用索引服务器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61982.html</link>
    <description><![CDATA[使用索引服务器的对象 你可以象使用其它数据库一样使用索引服务器，也就是Index Server，它是IIS4中包含的内容索引引擎。你可以对它进行ADO调用并搜索你的站点，它为你提供了一个很]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[清除浏览器历史记录代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61981.html</link>
    <description><![CDATA[Code to clear browser history /* This logout.asp is used to clear the back pages of the browser, /* if the user has logged out. /* if there are no specific vbscripting to be done then you can /* use this file as logout.htm % /* Clear all yo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用TDC建立自己的数据库格式]]></title>
    <link>http://im.vc/web/asp/2011/0822/61980.html</link>
    <description><![CDATA[许多人都可能又自己的asp个人主页，但有数据库权限的不会很多，今天我给一个方法。大家可以自己建 立一个库。不用access或sql server的格式。是自己建一个格式。（听起来很高深奥！]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用索引服务器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61979.html</link>
    <description><![CDATA[创建asp页面 在ASP页面上一切都变得非常酷。你用表单中的值来驱动对索引服务器进行查询的对象。 整个过程是这样的： ◆ 打开记录集。 ◆ 用标准ADO 方法，一步步地走过记录集。 %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样读取一个文本文件的内容?]]></title>
    <link>http://im.vc/web/asp/2011/0822/61978.html</link>
    <description><![CDATA[Ever want to know how to display the contents of a text document using asp. Here is a easy way to read from a text file !--Start of ASP Code---- % 'by James Seymour, http://jamesdot.org Dim write Dim fileSysObj, tf, read ' Read the read.txt]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[较长text型数据无法在Asp页面中取出的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61977.html</link>
    <description><![CDATA[在asp页面中向记录集取长text型数据时，出现如下错误现象时： Microsoft OLE DB PRovider for ODBC Drivers 错误 '80040e21' Errors occurred 可有以下三种解决办法： （一）使用rs.open sql,conn,1,3方式打开记]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据排序及如何动态排序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61976.html</link>
    <description><![CDATA[数据排序及如何动态排序 //Belltree //http://www.lurer.net/ //初学xml,错误之处多多,各路高手多多指正 在xsl:for-each select=//item order-by=text()及xsl:apply-templates select=//item/中都可以看到 order-by属性]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不离开页面刷新数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/61975.html</link>
    <description><![CDATA[开门见山，不离开页面就能刷新页面中的（部分）数据好处多多。主要是不需要写无聊代码维护 state。 asp.net （以及其雏形 VI6 SOM）中的 server-side control (VI6 DTC, Script Library) 通过大量 h]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP控制Flash]]></title>
    <link>http://im.vc/web/asp/2011/0822/61974.html</link>
    <description><![CDATA[Controlling Flash with asp A recent PRoject has required a few things that I haven't done for a while. One is dealing with Flash - which I haven't done since shortly after the release of Flash 3.0. The other is to actually figure some way o]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[得到表中字段属性代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61972.html</link>
    <description><![CDATA[set AdoX = server.createobject(adox.catalog) set fld = server.createobject(adox.column) AdoX.ActiveConnection = conn set fld = AdoX.Tables(sTableName).Columns(sName) lType = fld.Type lSize = fld.DefinedSize]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[计算ASP页面的载入时间]]></title>
    <link>http://im.vc/web/asp/2011/0822/61971.html</link>
    <description><![CDATA[% Dim varInitial_Time varInitial_Time = Timer Response.Write Initial_Time =[ varInitial_Time ]br % % 'Start asp Script Tag For I = 1 to 10 Response.write Hello World Take I br Next 'End ASP Script Tag % !-- Start: HTML--brYou looped %=(I -]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于打印页面的一些经验]]></title>
    <link>http://im.vc/web/asp/2011/0822/61970.html</link>
    <description><![CDATA[大家经常遇到再ie中打印表格时需要隐藏一些不需要打印的对象，比如说按钮，输入框，或者希望莫个表格显示的时候表格线是由颜色的，而打印的时候只需要有粗细之分，其实在CSS中]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在红蜻蜓中实现多房间]]></title>
    <link>http://im.vc/web/asp/2011/0822/61969.html</link>
    <description><![CDATA[在global中完成两件事 新房间在线人员名单的初始化（application_onstart） Dim nameindex(0) useronlinename= onliners=0 Application(hxf_c_onlinelist)=nameindex Application(hxf_c_useronlinename)=useronlinename Application(hx]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面延迟的两个简单方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61968.html</link>
    <description><![CDATA[一、 % Response.Buffer = True % % ' Setup the variables necessary to accomplish the task Dim TimerStart, TimerEnd, TimerNow, TimerWait ' How many seconds do you want them to wait... TimerWait = 5 ' Setup and start the timers TimerNow = Ti]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用vbscript判断email地址的合法性]]></title>
    <link>http://im.vc/web/asp/2011/0822/61967.html</link>
    <description><![CDATA[这里是一断正则表达式的例子 % Function isemail(strng) isemail = false Dim regEx, Match ' Create variables. Set regEx = New RegExp' Create a regular exPRession object (stupid, huh?) regEx.Pattern = ^\w+((-\w+)|(\.\w+))*\@[A-Za-z0]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页面之间传递元素的办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61966.html</link>
    <description><![CDATA[在第三方页面传递参数这个思路倒是的确可以省下一些代码，至少我以前是从没这样子传过。 % 'Pass form objects submitted by a form G 'ET If Request.QueryString.Count0 Then QStr=? For Each x In Request.Query]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP生成的内容写入响应流中最有效的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61965.html</link>
    <description><![CDATA[刚开始学asp时，照书里HTML中包含ASP 后来，用Response.Write 输出HTML 可现在看了这一篇文章，难道真的要把Response.Write写成一句( _？ 你说说？ ------- （转http://www.ccidnet.com/html//tech/web/2000/1]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以近视替代remote script的代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61964.html</link>
    <description><![CDATA[这个资料是以前收集的，希望能对你有所帮助。 1、page1.htm html head /head body form id=scr_Data First Name: input type=text id=s_FName value=none br Last Name: input type=text id=s_LName value=none brbr input type=hidden]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[转换文本为超联和Email格式的代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61963.html</link>
    <description><![CDATA[如果用户输入了http://aaa.bbb.ccc 下面这个代码将把他的输入转换成http://aaa.bbb.ccc 大家看看正则表达式有多厉害，呵呵。 % '调用这个函数来显示成超联结 Response.Write to_html(s_message) % % Fun]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用MSCHART画图的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61962.html</link>
    <description><![CDATA[!-- Here we are calling the LPK file.This LPK file was created using the same method explained in the article-- object CLASSID=clsid:5220cb21-c88d-11cf-b347-00aa00a28331 id=Microsoft_Licensed_Class_Manager_1_0 param NAME=LPKPath VALUE=mscha]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用asp创建dsn?]]></title>
    <link>http://im.vc/web/asp/2011/0822/61961.html</link>
    <description><![CDATA[HTML HEAD META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=iso-8859-1 TITLEODBC SQL Server @softwing.com/TITLE /HEAD BODY BGCOLOR=#FFFFFF % Set xObj = Server.CreateObject(Softwing.OdbcRegTool) strDriver = SQL Server strDSN = DSN=New]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vbscript和javascript互相调用]]></title>
    <link>http://im.vc/web/asp/2011/0822/61960.html</link>
    <description><![CDATA[asp具备管理不同语言脚本程序的能力，能够自动调用合适的脚本引擎以解释脚本代码和执行内置函数。ASP开发环境提供了两种脚本引擎，即VBScript（缺省）和JScript。不过，开发者并没有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一下GETROWS的用法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61959.html</link>
    <description><![CDATA[HTML HEAD TITLEPlace Document Title Here/TITLE /HEAD BODY BGColor=ffffff Text=000000 % Set cn = Server.CreateObject(ADODB.Connection) cn.Open application(guestDSN) sql = SELECT * FROM authors Set RS = cn.Execute(sql) ary = rs.GetRows(10) rs]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中巧用Response属性]]></title>
    <link>http://im.vc/web/asp/2011/0822/61958.html</link>
    <description><![CDATA[asp中巧用Response属性 ---- 我在用ASP为某单位制作网页时遇到这样一个问题，单位以前的MIS系统中将 一些Word文件以字节流的形式保存在数据库中，现在用户要求我用ASP将这些Word文件数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ACCESS数据库的纯asp论坛制作心得]]></title>
    <link>http://im.vc/web/asp/2011/0822/61957.html</link>
    <description><![CDATA[感觉做一个论坛不像想象中的那么容易,但也不像想象中的那么复杂:),经过4天的浴血奋战,终于从对论坛制作一无所知到今天的论坛数据结构和组织形势初步确定,中间参考了sunamd,bigeagl]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个在vbscript中读取cookie的程序函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61956.html</link>
    <description><![CDATA[function cookievalue(pcook) lhowlong=len(pcook) lwhereis=instr(document.cookie,pcook) if lwhereis=0 then cookievalue=false else lstartpos=len(document.cookie)-lwhereis-lhowlong lstartstring=right(document.cookie,lstartpos) do lchar=left(lst]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB6创建MTS组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61955.html</link>
    <description><![CDATA[随便贴贴，学过VB的人都应该知道的，不好意思。 '********************************************************************************************** 'MTS VB6 COM Component Template - by Michael Gonzalez '***********************]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用Golobal.asa和session实现在线人数统计]]></title>
    <link>http://im.vc/web/asp/2011/0822/61954.html</link>
    <description><![CDATA[实现在线人数统计最常用的方法就是golobal.asa结合session做,但这种方法有两个不利: 1、每个session要占用12k的服务器内存空间，为了人数+1就要付出12k内存的代价。 2、golobal.asa要放在网站]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用err.raise自定义错误信息]]></title>
    <link>http://im.vc/web/asp/2011/0822/61953.html</link>
    <description><![CDATA[我想大多数的人在编写asp程序的时候，都碰到过类似的错误信息： Error Number - -2147467259 Error Source - Microsoft OLE DB PRovider for ODBC Drivers Error Desc - [Microsoft][ODBC Driver Manager] Data source name not]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[连接各种数据库的代码的总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/61952.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 豆腐技术站 http://www.asp888.net 如转载 请保留完整版权信息 */ 终于有时间在今天发表文章了，由于今年春节豆腐去了 海南旅游，海南迷人的风光让豆腐几乎不想再进]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP里建表]]></title>
    <link>http://im.vc/web/asp/2011/0822/61951.html</link>
    <description><![CDATA[可以看一下BOOK ONLINE里的帮助信息，具体的不多说了，：） 请看代码： % '建立连接 Dim conn Set conn = Server.CreateObject(ADODB.Connection) conn.Open DSN=blah Dim strSQL strSQL = CREATE TABLE test (name varchar(5]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASPMail组件发送数字卡片]]></title>
    <link>http://im.vc/web/asp/2011/0822/61950.html</link>
    <description><![CDATA[Sending Digital PostCards with asp and the free component ASPEmail from Persits software. By Joao Vieira What is a Digital Postcard? A digital postcard is a image a net surfer picks out, along with an accompanying personal message. The net]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一段返回随机记录的代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61949.html</link>
    <description><![CDATA[很久没用access了，只是看到经常碰到有人问如何返回随机记录的问题，所以就贴了上来，随便看看。 !--#include virtual=/adovbs.inc-- % Dim objConn Dim objRst Dim strSQL Dim strConnection Dim str Dim str1 Di]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP也可以连接MYSQL]]></title>
    <link>http://im.vc/web/asp/2011/0822/61948.html</link>
    <description><![CDATA[本文前提是下载MySQLX 地址为http://www.amedea.cz/mysqlx/DownloadFiles/MySQLX.zip 这个工具其实是MYSQL的组件对象模块.同样它也支持Delphi, Visual Basic, Visual C++, C++ Builder等工具的调用.以下是在asp里的调]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[结束ADOVB.INC的办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61947.html</link>
    <description><![CDATA[我在国外看到一篇文章，现转译如下。。。的确很有帮助 asp的一个缺点是当我们在使用一个组件的时候，并不是拿来就可以用了比如你要使用ADO的时候，你得先包含ADOVBS.INC文件或者做]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室关键技术[用户断线]处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/61946.html</link>
    <description><![CDATA[在编聊天室时，处理用户断线是一个刺手的问题，特别是放到免费网站上，如果一味地靠global.asa，什么时候触发session_onend,application_onend，都是一个不确定的数字，在设计时，合理地安]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存储过程分页]]></title>
    <link>http://im.vc/web/asp/2011/0822/61945.html</link>
    <description><![CDATA[if exists(select * from sysobjects where ID = object_id(up_TopicList)) drop PRoc up_TopicList go create proc up_TopicList @a_ForumID int , @a_intDays int , @a_intPageNo int , @a_intPageSize tinyint as declare @m_intRecordNumber int declare]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP文件操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/61944.html</link>
    <description><![CDATA[把以下文件建在同一目录，IIS中确定文件操作组件可用，即可用asp列出文件和目录了，呵呵欢迎光临我的主页 http://skypavilion.yeah.net ----文件folder.inc----- % folderini=c:\ % ----文件index.asp----]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成类似Windows资源管理器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61943.html</link>
    <description><![CDATA[附录：数据结构及测试数据 数据库说明 ID：节点ID NodeName：节点名称 BrotherNode：兄弟节点，当前节点的下一个兄弟节点的ID SonNode：子节点，当前节点的第一个子节点的ID 测试数据 IDNo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[友情连接浏览器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61942.html</link>
    <description><![CDATA[1、拷贝下面的代码到你的html文件的head和/head之间 SCRipT language=javaScript !-- function go_to_station(){ if (document.stationform.stationselect.options[0].selected){ window.location.href = http://202.98.107.86/xutao/defaul]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将站点加入频道栏源代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61941.html</link>
    <description><![CDATA[将站点加入收藏[修改显示的文字、链接、名称] 将以下代码加入HEML的bodybody之间 script language=javaScript function bookmarkit(){window.external.addFavorite('http://andyda.home.sohu.com','人心工作室（网络磁场]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理驱动器和文件夹]]></title>
    <link>http://im.vc/web/asp/2011/0822/61940.html</link>
    <description><![CDATA[使用 FileSystemObject (fso) 对象模式，可以有计划地处理驱动器和文件夹，就像在 Windows 资源管理器中交互式地处理它们一样。可以复制和移动文件夹，获取有关驱动器和文件夹的信息，等]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[设计 FileSystemObject]]></title>
    <link>http://im.vc/web/asp/2011/0822/61939.html</link>
    <description><![CDATA[要用 FileSystemObject (fso) 对象模式来编程，则： 1使用 CreateObject 方法来创建 FileSystemObject 对象。 2在新创建的对象上使用适当的方法。 3访问对象的属性。 FSO 对象模式包含在 Scripting 类型]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样使用ASP实现Ping]]></title>
    <link>http://im.vc/web/asp/2011/0822/61938.html</link>
    <description><![CDATA[This article PResents a simple way to ping an address and get the results of the ping using asp. The idea was supplied by Bart Silverstein. First, a .BAT file needs to be created that will be run from the Active Server Page. Let's call this]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在页面上动态的生成 WebForm控件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61937.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 在asp.ne中，我们可以利用程序在编程的时候动态的生成我们需要的WebForms 控件，我们先看看下面的例子]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP读取Windows标准INI格式文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61936.html</link>
    <description><![CDATA[Have you needed to get information dynamically from Standard Formatted Windows INI files? Here's a set of tools to help you with just that. In this tutorial, we are going to discuss specific actions. More details can be obtained by looking]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FileSystemObject处理文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61935.html</link>
    <description><![CDATA[有两种主要的文件处理类型： 创建、添加或删除数据，以及读取文件 移动、复制和删除文件 创建文件 创建空文本文件（有时被叫做“文本流”）有三种方法。 第一种方法是用 Create]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避免表单的重复提交又一方法（js）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61934.html</link>
    <description><![CDATA[以前自己的论坛因为程序源码跟WIN2000的注册表有冲突，帖子发出后会出现无效页面，以致于论坛里有很多无恶意的重复帖子，后来想出了一个办法，用JS避免重复提交，下面是部分源码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ActiveX控件开发网页常见的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61933.html</link>
    <description><![CDATA[1. 什么是ActiveX 控件? Microsoftreg; ActiveX#8482; 控件是由软件提供商开发的可重用的软件组件。使用 ActiveX控件，可以很快地在网址、台式应用程序、以及开发工具中加入特殊的功能。例如，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建弹出式“每日提示”窗口]]></title>
    <link>http://im.vc/web/asp/2011/0822/61932.html</link>
    <description><![CDATA[* 本例程将会用到application对象、数据库、javaScript、以及文件操作。 首先，我们列一下本例程将涉及的内容： 1) 我们将创建一个用于显示“每日提示”的弹出式窗口； 2) 提示将在每天]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[灵活实用的页面广告实例]]></title>
    <link>http://im.vc/web/asp/2011/0822/61931.html</link>
    <description><![CDATA[灵活实用的页面广告实例 目前，许多主页上流行放置一个浮动层的广告图像（通常位于页面右下方），显示在文字层之上，当页面上下滚动时，广告图像并不随页面滚动，它总能在窗口]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[方便购买的电子商务站点设计技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/61930.html</link>
    <description><![CDATA[Nadja Vol Ochs 1998年2月15日 设计电子商务站点应该记住的最重要的事情是使你的顾客购买方便。当我写这篇文章时我正在设计一个电子商务站点，我所学到的一些技巧，可以帮助你在电子]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用JavaScript识别Netscape 6 浏览器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61929.html</link>
    <description><![CDATA[我们以前通常识别浏览器的javascript代码一般如下： SCRIPT LANGUAGE=Javascript !-- if (document.all) { //IE alert(你用的浏览器是 Internet Explorer); } else if (document.layers) { //NS alert(你用的浏览器是 Netsc]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用两行代码在浏览器中实现文件上传]]></title>
    <link>http://im.vc/web/asp/2011/0822/61928.html</link>
    <description><![CDATA[简介 文件上传是将任意的文件从客户机发送到服务器的过程。最简单、最方便的上传方法是使用支持RFC1867的浏览器，如微软的Internet Explorer4.0以上版本，Netscape3.0以上版本，或者带附件]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DHTML来模拟实现下拉菜单]]></title>
    <link>http://im.vc/web/asp/2011/0822/61927.html</link>
    <description><![CDATA[我在许多的网站上看到上面都有下拉菜单的,使得网站更栩栩如生了!象微软的主页,后来我想假如单用div和javascript是否也能实现了,通过几次实验也总于成功了,现在把自己想法告诉大家]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Javascript实现邮箱快速登录的方法!!]]></title>
    <link>http://im.vc/web/asp/2011/0822/61926.html</link>
    <description><![CDATA[第一步:先做一个登录表单，将需要数据发送给javaScript函数。 form name=″mailForm″ action=″Javascript:go()″ Onsubmit=″return check(this)″ method=″post″ pselect name=″mailSelect″ size=″1″ option sel]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+的页面指示标识]]></title>
    <link>http://im.vc/web/asp/2011/0822/61925.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 确切的说，这个名字起得并不是很合适，在asp.net中的这个英文愿单词是:Page Directives. 页面指示标识 的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[javascript做的数据校验（校验IP地址等）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61924.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 meta name=GENERATOR content=Microsoft FrontPage 4.0 meta name=PRogId content=FrontPage.Editor.Document titleNew Page 1/title /head body script language = 'javascript']]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+文件上传增强实例]]></title>
    <link>http://im.vc/web/asp/2011/0822/61923.html</link>
    <description><![CDATA[按实际上传时的文件名称保存（不在是test.jpg了）图片可以改大小，图上写字（可选字体，我设的全是中文，^_^。大小），没有解决字体颜色问题。 %@ Page Language=c# Debug=true Trace=true% %@]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何从数据库得到一个列表表单]]></title>
    <link>http://im.vc/web/asp/2011/0822/61922.html</link>
    <description><![CDATA[HEAD TITLEaspHole - Fill List Box Example/TITLE /HEAD BODY FORM METHOD=POST Country: SELECT NAME=Country % ' Construct path to database sPath = Request.ServerVariables(Path_Translated) sPath = Left(sPath,InStrRev(sPath,\)) Countries.mdb ' ']]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过网络域名得到这台主机的IP地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/61921.html</link>
    <description><![CDATA[在Windows编程环境中，我们有一个可以调用的API 函数GetHostByName ，以前在asp中我们必须通过组件来实现 类似的功能，比如AspDNS等等,现在MS在asp.net上给我们提供了新的编程接口，让我们可]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ODBC Drivers错误'80004005'的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61920.html</link>
    <description><![CDATA[此错误具体信息如下: Microsoft OLE DB PRovider for ODBC Drivers 错误 '80004005' [Microsoft][ODBC Microsoft access Driver] The Microsoft Jet database engine stopped the process because you and another user are attempting to change]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Cookie来跟踪用户]]></title>
    <link>http://im.vc/web/asp/2011/0822/61919.html</link>
    <description><![CDATA[Source Code: % '*** Keeping track of how many times '*** a user visits a web page, by '*** reading and writing cookies. '*** In this example asphole will be '*** the name of our cookie, and '*** totalvisit will be the 'key' '*** value we ke]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页之定时器详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/61918.html</link>
    <description><![CDATA[今天我带给大家的是网页定时器之详解。 在网页的特效制作中，经常要用到定时器，比如：间隔一定时间后页面自动跳转，或者间隔一定时间出现某种效果，像网页上的飞雪连天，或者]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP方式实现动态伸缩形式列表主页]]></title>
    <link>http://im.vc/web/asp/2011/0822/61917.html</link>
    <description><![CDATA[微软公司推出的IE4.X，使得按照HTML4标准制作的网页一时成为时尚，这类网页在动态功能方面有了非常大的提高。特别是可以通过页面内嵌的Script语句，使页面中的任意一段文字可以在需]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网上追捕(很多实用的port)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61916.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 我们可以在asp.net中通过使用Sockets Class 来对InterNet 上的主机进行远程的控制和探测（不要搞破坏呀！）]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在网页中存取剪贴板中的内容]]></title>
    <link>http://im.vc/web/asp/2011/0822/61915.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 在做网络追捕的时候，经常遇到这样的问题，是否需要将ip 地址重新输入一次的问题，所以在这里我考]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用js制作完善的日，月组合下拉框.]]></title>
    <link>http://im.vc/web/asp/2011/0822/61914.html</link>
    <description><![CDATA[先建两个下拉选框(单选,SELECT),分别为select_month和select_day,在select_month被改变时触发change_it()函数，(select_month.onchange=change_it;)下面是该函数的源码: function change_it() { get_select=select_month.se]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使ASP程序暂停指定的时间后再继续执行]]></title>
    <link>http://im.vc/web/asp/2011/0822/61913.html</link>
    <description><![CDATA[可以用waitfor组件. 下面是国外的一名asp作者的语句: Developer's often need to have their apps wait a specified number of seconds, detect if a file exists within a particular timeout or wait for exclusive file access within a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在不支持数据库的asp主页上运用ado]]></title>
    <link>http://im.vc/web/asp/2011/0822/61912.html</link>
    <description><![CDATA[许多人都可能又自己的asp个人主页，但有数据库权限的不会很多，今天我给一个方法。大家可以自己建立一个库。不用access或sql server的格式。是自己建一个格式。（听起来很高深奥！以]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB页面实现淡入淡出菜单]]></title>
    <link>http://im.vc/web/asp/2011/0822/61911.html</link>
    <description><![CDATA[（本文适合菜级网页制作者或初级WEB编程者阅读参考） 下面的程序还是简单的测试版。需要编程的整个思路和具体分析步骤的请Email到i-key@263.net。 html head meta http-equiv=Content-Type content]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP和Word进行服务器端拼写检查]]></title>
    <link>http://im.vc/web/asp/2011/0822/61910.html</link>
    <description><![CDATA[编译 甘冀平(2000-09-26) 本文讨论的问题与下列方面相关： Microsoft Word 97 for Windows Microsoft Visual InterDev, version 6.0 Microsoft Internet Information Server version 4.0 概要 本文描述了如何使用Microsoft Wo]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把ASP编写成DLL]]></title>
    <link>http://im.vc/web/asp/2011/0822/61909.html</link>
    <description><![CDATA[主题 这篇文章主要是为想将自己的asp水平提高的人写的! 把ASP代码变成组件,开发者不仅是加快了ASP的速度,而且也能保护自己的代码.这篇文章写出来,也是为了给想开发组件网友上一堂入]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个不太让人讨厌的自动弹出窗口]]></title>
    <link>http://im.vc/web/asp/2011/0822/61908.html</link>
    <description><![CDATA[一个不太让人讨厌的自动弹出窗口 (原文：http://www.siteexperts.com/tips/backend/ts15/page1.asp) 自动弹出窗口是一个让人讨厌的事情，为什么我们用它来显示我们的调查表呢？ 用弹出窗口来显示]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文本中首字母全改为大写]]></title>
    <link>http://im.vc/web/asp/2011/0822/61907.html</link>
    <description><![CDATA[脚本说明: 第一步:把如下代码加入head区域中 SCRipT LANGUAGE=javaScript !-- Begin function changeCase(frmObj) { var index; var tmpStr; var tmpChar; var PReString; var postString; var strlen; tmpStr = frmObj.value.toLowerCase()]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用组件来实现StrCat函数的功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61906.html</link>
    <description><![CDATA[really really slow by nature. This sample code uses classes to speed up the PRocess by ten times. Someone recentally came up with a DLL to do this but not all of us can install a DLL on our ISP's web servers so I wrote this easy to use VB C]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Javascript隐藏超级链接的真实地址]]></title>
    <link>http://im.vc/web/asp/2011/0822/61905.html</link>
    <description><![CDATA[用javascript可以隐藏超级链接的真实地址： 代码如下： a href=# onclick=Javascript:window.open('sample.htm?ID=11','newwin','width=350,height=510,scrollbars=0,toolbar=0,resizable=0')打开窗口/a (请把它拷贝至body和/]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检测整数和长整数的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61904.html</link>
    <description><![CDATA[经常见到cint和clng的溢出出错，如果有检测函数就不会出这个问题，下面这两个函数是应朋友要求写的，看一下吧 '检测字符串是否是整数 function Is_Int(a_str) if not isnumeric(a_str) or len(str)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用java的垂直滚动看板]]></title>
    <link>http://im.vc/web/asp/2011/0822/61903.html</link>
    <description><![CDATA[次看板是采用javacript语言和DHTML的层，不需要固定在form框里或者表格里，它用的是div/div，你可以把这段代码放在HTML代码里的任何地方，都不会影响它出现的位置，这是一个用处很大的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让 Asp 与 XML 交互]]></title>
    <link>http://im.vc/web/asp/2011/0822/61902.html</link>
    <description><![CDATA[xml 是标准扩展语言，是 未来Web编程的标准,asp 是现在广为流传的web编程语言之一,能不能让他们 两个联合起来发挥作用呢？豆腐 在 这里 给大家 提供一个 很简单的 例子 关于XML 和 XSL]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[20种看asp源码的方法及工具]]></title>
    <link>http://im.vc/web/asp/2011/0822/61901.html</link>
    <description><![CDATA[众所周知windows平台漏洞百出，补丁一个接一个，但总是补也补不净。我把我所知道的20种看asp源码的方法总结了一下，并且用c#写了个应用程序来扫描这些漏洞，发现虽然大部分的方法]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用Server.scripttimeout来减少ASP意外错误而使务器瘫痪]]></title>
    <link>http://im.vc/web/asp/2011/0822/61900.html</link>
    <description><![CDATA[我们在执行一些程序时, 比如论坛的递归, asp程序常常会在意外之外执行出错. 此类意外发生率极少, 但一旦发生, 则会使ASP代码产生不计其数的html或占用大量的服务器资源, 从而导致服务]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[两个获取http页面的c#函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61899.html</link>
    <description><![CDATA[埋头苦干一天终于搞定！一个用C#写的windows应用程序，作用嘛，就是对asp程序已知的20种漏洞进行扫描，显示源程序。在这个应用程序中用到两种获得http页面的方法，一种是直接用htt]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[给浏览器的滚动条加上颜色]]></title>
    <link>http://im.vc/web/asp/2011/0822/61898.html</link>
    <description><![CDATA[豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 我们知道可以使用样式表来控制页面的很多的属性,比如我们可以通过这样的CSS 来改变Button的背景颜色 input.colorbutton { font-size:9pt; backgr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[谈谈如何在不支持数据库的asp主页上运用ado]]></title>
    <link>http://im.vc/web/asp/2011/0822/61897.html</link>
    <description><![CDATA[许多人都可能又自己的asp个人主页，但有数据库权限的不会很多，今天我给一个方法。大家可以自己建立一个库。不用access或sql server的格式。是自己建一个格式。（听起来很高深奥！以]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将html源代码规范化，转换成XSL代码的asp工具]]></title>
    <link>http://im.vc/web/asp/2011/0822/61896.html</link>
    <description><![CDATA[将下面的四个文件存在同一级目录下，再在同目录下建立一个文件txt.txt。当要处理html代码时，先将源代码拷入txt.txt，再进入index_transform.asp， 即可看到处理完的代码。 写这个东西的本]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+中是如何连接数据库ado+的]]></title>
    <link>http://im.vc/web/asp/2011/0822/61895.html</link>
    <description><![CDATA[豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 前面我们讲过很多的用asp.net 联结SQL Server 的例子，主要使用了SQLConnection,很多网友就此提出了很多的意见 认为应该多使用ADO+来讲解一些]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[已调试好的asp程序在VB中转换为组件的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/61894.html</link>
    <description><![CDATA[作者 Heatch 在网易虚拟社区的“VB和Basic区”里有一篇《使用VB编写纯asp程序 [转][Technology] 》，其实我认为最好的方法应该这样： 原文中的定义如下： Dim m_objResponse As Response 其实对于我]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在多行文本框中显示读取信息]]></title>
    <link>http://im.vc/web/asp/2011/0822/61893.html</link>
    <description><![CDATA[在实际的编程中，很多时候我们需要在多行的文本框中显示读取的信息，但是使用 一般的方法是不行的，比如 %=rs(字段名)%，结果就会不能按者您的要求输出正 确的结果，在这个时候，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个对图形进行动态处理的dhtml代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61892.html</link>
    <description><![CDATA[1）html head script language=javaScript function setHeight() { var x=document.images x[0].height=250 } /script /head body img src=../images/compman.gif width=107 height=98 / form input type=button onclick=setHeight() value=Change height /f]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何动态地在同一页面实现两个&amp;amp;lt;select&amp;amp;gt;互传]]></title>
    <link>http://im.vc/web/asp/2011/0822/61891.html</link>
    <description><![CDATA[关于如何动态地在同一页面实现两个select互传(s1 == s2) （jaklin ) hello! 先祝大家中秋节快乐！ 我们常常会碰到这样一个问题： 如何将在同一页面上的一个select或listbox的值传到另一个sel]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成一个不重复的随即数字]]></title>
    <link>http://im.vc/web/asp/2011/0822/61890.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 写这个文章绝对是偶然的偶然的机会，前年等一回的 元旦节，和 老婆上街 溜达，猛然想起买上一张福]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP重启服务器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61889.html</link>
    <description><![CDATA[大家知道直接使用asp是不能够重启服务器的，这时我们需要制作一个组件来实现功能，ASP通过这个组件调用系统API，然 后按照不同的重启和关机方式进行操作！ 下面先说COM的制作，在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中FSO对象对IIS WEB服务器数据安全的威胁及对策]]></title>
    <link>http://im.vc/web/asp/2011/0822/61888.html</link>
    <description><![CDATA[scripting.filesystemobject 对象是由 scrrun.dll提供的许多供 vbscript/jscript 控制的 com 对象之一。scripting.filesystemobject 提供了非常便利的文本文件和文件目录的访问，但是同时也对 iis web 服务器数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于图片与文本同存在数据库中的具体思路]]></title>
    <link>http://im.vc/web/asp/2011/0822/61887.html</link>
    <description><![CDATA[首先，你的表单的类型设为 FORM ENCTYPE=multipart/form-data ACTION=uploadresult.asp METHOD=POST Please choose a picture to upload: INPUT NAME=picture TYPE=FILE ACCEPT=image/* input name=text1 type=text /form 然后在下一页，用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用模板建立动态ASP页]]></title>
    <link>http://im.vc/web/asp/2011/0822/61886.html</link>
    <description><![CDATA[对于模板，我想大家可能都有一些概念，在Word中很多模板，设计好了大概的版面，你只要用你自己的话填充那些占位字符就好了。这儿的模板大概也就是这个意思，页面中相对稳定的部]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现多语言支持]]></title>
    <link>http://im.vc/web/asp/2011/0822/61885.html</link>
    <description><![CDATA[纲 要 : 让 我 们 设 想 你 使 用 Active Server Pages 设 计 了 一 个 成 功 的 站 点 ， 而 你 的 客 户 纷 纷 要 求 将 此 站 点 国 际 化 以 提 供 多 种 语 言 版 本 。这 时 候 你 该 怎 么 办？]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP访问数据库的几种常见方式]]></title>
    <link>http://im.vc/web/asp/2011/0822/61884.html</link>
    <description><![CDATA[用asp访问数据库的几种常见方式 ActiveX Data Objects (ADO) 是一项容易使用并且可扩展的将数据库访问添加到 Web 页的技术。可以使用 ADO 去编写紧凑简明的脚本以便连接到 Open Database Connect]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP将一大段文字中的HTML的标识去掉]]></title>
    <link>http://im.vc/web/asp/2011/0822/61883.html</link>
    <description><![CDATA[% Function FilterHTML(strToFilter) Dim strTemp strTemp = strToFilter While Instr(1,strTemp,) AND Instr(1, strTemp, ) strTemp = Left(strTemp, Instr(1, strTemp, )-1) Right(strTemp, Len(strTemp)-Instr(1,strTemp, )) WEnd FilterHTML = strTemp En]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让使用者可以看到你的ASP的原代码]]></title>
    <link>http://im.vc/web/asp/2011/0822/61882.html</link>
    <description><![CDATA[假如你写了一个asp的程序,希望让你的使用者看到ASP的原始代码,你可以利用FileSystemObject这个对象送出程序原始代码. %@ Language=VBScript % %Option Explicit % % Dim strURL strURL = Request.QueryString(URL)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[session的用法具体解说]]></title>
    <link>http://im.vc/web/asp/2011/0822/61881.html</link>
    <description><![CDATA[session 对象 可以使用 Session 对象存储特定用户会话所需的信息。这样，当用户在应用程序的 Web 页之间跳转时，存储在 Session 对象中的变量将不会丢失，而是在整个用户会话中一直存在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中文本文件与数据库文件的数据交换]]></title>
    <link>http://im.vc/web/asp/2011/0822/61880.html</link>
    <description><![CDATA[asp中文本文件与数据库文件的数据交换 网络数据库的应用是WWW上一个很重要的组成部分，可以这样说，如果缺少了数据库，网络也就失去了灵魂。大家可以想象一下，如果没有象YAHOO，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现在特定的时段或对特定访问者开放]]></title>
    <link>http://im.vc/web/asp/2011/0822/61879.html</link>
    <description><![CDATA[在某些情况下，你有可能想要将自己的主页或某一页面只在特定的时段下开放，或者只对特定的访问者开放，这时利用asp技术可以轻松搞定。不信？？？且听我一一到来。 首先，将你要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Session对象在各浏览器中的有效范围]]></title>
    <link>http://im.vc/web/asp/2011/0822/61878.html</link>
    <description><![CDATA[IE中: 有效的窗品包括 1.session对象只在建立Session对象的窗口中有效。 2.在建立Session对象的窗口中新开链接的窗口 无效的窗口包括 1.直接启动IE浏览器的窗口 2.不是在建立Session对象的窗]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一种效率极高的分类算法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61877.html</link>
    <description><![CDATA[在网站建设中，分类算法的应用非常的普遍。在设计一个电子商店时，要涉及到商品分类；在设计发布系统时，要涉及到栏目或者频道分类；在设计软件下载这样的程序时，要涉及到软]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP建立图表]]></title>
    <link>http://im.vc/web/asp/2011/0822/61876.html</link>
    <description><![CDATA[现在我们针对Excel举另外一个例子，大家都询问如何用asp建立图表的问题，以下就是解决方案 First we set the type of script 首先设定脚本类型 %@ LANGUAGE=VBSCRIPT % Make the object, and set the object t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server如何解决加密问题？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61875.html</link>
    <description><![CDATA[SQL Server的6.0和6.5版本中，16位和32位客户软件在使用多协议网络库时设置加密选项可以进行数据在线加密。 SQL Server依靠Microsoft Windows NT RPC 应用程序接口来完成网络数据加密。 Windows N]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中判断SQL语句是否执行成功]]></title>
    <link>http://im.vc/web/asp/2011/0822/61874.html</link>
    <description><![CDATA[利用err对象: sql=insert into table(f1,f2) values('v1','v2') conn.execute sql if err.number0 then response.write 出错了： err.description err.clear else response.write OK end if]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ASP中通过ODBC调用Excel中的数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/61873.html</link>
    <description><![CDATA[在asp中通过ODBC调用Excel中的数据方式和普通的通过ODBC调用数据库的方式有一些不同的地方。下面将介绍如何通过ODBC在ASP中使用Excel的数据。 在使用的过程中，要注意的是你需要使用的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ASP中使用类]]></title>
    <link>http://im.vc/web/asp/2011/0822/61872.html</link>
    <description><![CDATA[VBScript5中增加了许多新功能，最振奋人心的当属类和正则表达式的出现。以下是本人写的一个解析html代码的类。我是学php的，语法有不习惯的地方，请大家多包含。 % Class HTMLParse ' 设置]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不刷新页面改变下拉菜单内容]]></title>
    <link>http://im.vc/web/asp/2011/0822/61871.html</link>
    <description><![CDATA[在设计数据库查询页面时，下拉菜单是经常使用的元素。很多时候你会希望选择了下拉菜单的一项后，相应的另一下拉菜单的内容会随之改变。这种功能可以通过刷新页面来实现，但界]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL Server中单引号的两种处理技巧]]></title>
    <link>http://im.vc/web/asp/2011/0822/61870.html</link>
    <description><![CDATA[和数据库打交道要频繁地用到SQL语句，除非你是全部用控件绑定的方式，但采用控件绑定的方式存在着灵活性差、效率低、功能弱等等缺点。因此，大多数的程序员极少或较少用这种绑]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[直接显示&amp;amp;quot;Monday&amp;amp;quot;等星期的ASP语句]]></title>
    <link>http://im.vc/web/asp/2011/0822/61869.html</link>
    <description><![CDATA[%=WeekDayName(DatePart(w,Now))%]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用组件搜索]]></title>
    <link>http://im.vc/web/asp/2011/0822/61868.html</link>
    <description><![CDATA[MicroSoft的asp(ActiveServerPage)技术极大的方便了在网络中对于数据库的访问，而且由于ASP不同于CGI需要那么多的请求（减少了服务器的资源占用），以及ASP同WindowsNT、2000的结合使得ASP技术被]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Display data From database into 2 Column]]></title>
    <link>http://im.vc/web/asp/2011/0822/61867.html</link>
    <description><![CDATA[% Conn_String = DRIVER={Microsoft access Driver (*.mdb)};DBQ= Server.MapPath(link.mdb) Set Conn=Server.CreateObject(ADODB.Connection) Conn.Open Conn_String sql = select * from cat order by ID set rs = Conn.Execute (sql) 'Connect to database]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[LINE 的计数器源程序（附源代码）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61866.html</link>
    <description><![CDATA[% bUseImages = CBool(Request.QueryString(images)) strCountFileName = Server.MapPath(Request.ServerVariables(SCRipT_NAME) .dat) Set objfso = Server.CreateObject(Scripting.FileSystemObject) ' Open the file as a text stream (1 = ForReading, Tr]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查sql字符串中是否有单引号,有则进行转化.]]></title>
    <link>http://im.vc/web/asp/2011/0822/61865.html</link>
    <description><![CDATA[% rem 检查sql字符串中是否有单引号，有则进行转化 function CheckStr(str) dim tstr,l,i,ch l=len(str) for i=1 to l ch=mid(str,i,1) if ch=' then tstr=tstr+' end if tstr=tstr+ch next CheckStr=tstr end function %]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存储过程对页面访问速度的影响]]></title>
    <link>http://im.vc/web/asp/2011/0822/61864.html</link>
    <description><![CDATA[当所执行的SQL语句中有大量重用语句时，即页面A和页面B所执行的SQL语句 有大量重复操作，存在一个交集时，存储过程是可以提高网页浏览速度的。 一、如果是如此，在编写过程中，尽]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp+中的若干问题及解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0822/61863.html</link>
    <description><![CDATA[综述： 在这篇文章里 豆腐 简单扼要的讲了一下在asp+编程中我们可能要遇到的问题以及遇到这些问题的解决方法，相信大家 在 看完这篇文章以后，对于asp+的编程就会觉得是非常的 简]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断文章中文字符数量]]></title>
    <link>http://im.vc/web/asp/2011/0822/61862.html</link>
    <description><![CDATA[dim WINNT_CHINESE WINNT_CHINESE = (len(论坛)=2) function strLength(str) ON ERROR RESUME NEXT if WINNT_CHINESE then dim l,t,c dim i l=len(str) t=l for i=1 to l c=asc(mid(str,i,1)) if c0 then c=c+65536 if c255 then t=t+1 end if next strLeng]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于图片与文本同存在数据库中的具体思路]]></title>
    <link>http://im.vc/web/asp/2011/0822/61861.html</link>
    <description><![CDATA[首先，你的表单的类型设为 FORM ENCTYPE=multipart/form-data ACTION=uploadresult.asp METHOD=POST Please choose a picture to upload: INPUT NAME=picture TYPE=FILE ACCEPT=image/* input name=text1 type=text /form 然后在下一页，用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Asp中不借助第三方组件抓取别的站点的页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/61860.html</link>
    <description><![CDATA[微软在asp中给我们提供了一种使用ActiveX的来做页面的方法，我们就用一个简单的抓取页面的例子来实际讲解一下这种方法,在本站的专栏的php版面中，我曾经讲过如何使用php来抓取别的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[转换html代码子程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61859.html</link>
    <description><![CDATA[function htmlencode(str) on error resume next dim result dim l if isnull(str) then htmlencode= exit function end if l=len(str) result= dim i for i = 1 to l select case mid(str,i,1) case result=result+lt; case result=result+gt; case chr(34)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用类]]></title>
    <link>http://im.vc/web/asp/2011/0822/61858.html</link>
    <description><![CDATA[VBScript5中增加了许多新功能，最振奋人心的当属类和正则表达式的出现。以下是本人写的一个解析html代码的类。我是 学php的，语法有不习惯的地方，请大家多包含。 % Class HTMLParse ' 设]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在网页中变化图象(速度无延迟)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61857.html</link>
    <description><![CDATA[有的朋友看到这个标题，可能不以为然，这还不简单吗？只要用JS 替换 img的 src 就可以了，不错，确实很简单，可是这样的话，在替换图形的时候，图形需要下载，如果图形很大或者网]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单的检查输入email是否合法程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61856.html</link>
    <description><![CDATA[function chkEmail(email) on error resume next dim i,l,pos1,pos2 chkEmail=true if isnull(email) then chkEmail=false:exit function pos1= instr(email,@) pos2=instrRev(email,.) if not(pos10) or not (pos20) or pos1pos2 then chkEmail=false end if]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[域名登记查询(whois)很复杂吗]]></title>
    <link>http://im.vc/web/asp/2011/0822/61855.html</link>
    <description><![CDATA[voodoo发表于 2000-06-03 22:42:07%@ Language=VBScript % HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 /HEAD BODY form action=whois.asp method=post 域名：wwwB./B INPUT size=8 name=domainname value=% =request(domainna]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用OWC服务器端组件动态生成图表]]></title>
    <link>http://im.vc/web/asp/2011/0822/61854.html</link>
    <description><![CDATA[以前在这里也曾经有一些文章谈到了在asp中生成动态图表的问题，但那些文章中所谈到的一些方法都有某些方面的限制，如需要在客户端安装office2000或安装OWC，有些则可能在Intranet中使]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查来访IP是否合法的实际应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/61853.html</link>
    <description><![CDATA[sub chkip(boardid) dim rsIP dim ipArr dim ignored dim i dim ip dim sql ip=Request.ServerVariables(REMOTE_ADDR) ignored=false if not isempty(boardid) then sql=select ignoreip from board where boardid=cstr(boardid) set rsIP=conn.execute(sql)]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP创建多栏选项列表]]></title>
    <link>http://im.vc/web/asp/2011/0822/61852.html</link>
    <description><![CDATA[首先，我们需要着重介绍一些概念，以给你提供一些使这个“奇迹”得以发生的组成部分。太轻易地泄露伏笔对于讲故事来说不是个好的形式，所以那些不愿意在一开始就看到就结局的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用asp创建dsn]]></title>
    <link>http://im.vc/web/asp/2011/0822/61850.html</link>
    <description><![CDATA[bigeagle】 于 2000-11-9 10:47:22 加贴在 Joy asp ↑： HTML HEAD META HTTP-EQUIV=Content-Type CONTENT=text/html; charset=iso-8859-1 TITLEODBC SQL Server @softwing.com/TITLE /HEAD BODY BGCOLOR=#FFFFFF % Set xObj = Server.CreateObject(So]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中的一个奇怪的函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61849.html</link>
    <description><![CDATA[asp中有很多的文章在研究如何提高asp程序的执行效率,我们 得出结论 在% 和 % 之间的代码执行的速度要高于 在这个 标签之外的代码,我们有没有想过 如何重复的利用这些在标签之外的代]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现聊天室在线人员无刷新所需要的JavaScript技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/61848.html</link>
    <description><![CDATA[~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~``` asp精品屋 此只为实现无刷新的javaScript客户端所需要的相似技术 具体要跟程序结合起来。 by 探索者 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用asp进行base64加密]]></title>
    <link>http://im.vc/web/asp/2011/0822/61847.html</link>
    <description><![CDATA[% OPTION EXPLICIT const BASE_64_MAP_INIT = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ dim nl ' zero based arrays dim Base64EncMap(63) dim Base64DecMap(127) ' must be called before using anything else PUBLIC SUB initCod]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[瞒天过海html文件技术一瞥]]></title>
    <link>http://im.vc/web/asp/2011/0822/61846.html</link>
    <description><![CDATA[很多的站点的后缀都是html文件，甚至有的站点竟然有这样的文件后缀html?url=asp888.net,有的 朋友可能就会非常的迷惑，难道html 文件也可以向 asp 文件一样编程吗？其实 大家都被欺骗了]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现聊天室在线人员无刷新所需要的JavaScript技术]]></title>
    <link>http://im.vc/web/asp/2011/0822/61845.html</link>
    <description><![CDATA[~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~``` asp精品屋 此只为实现无刷新的javaScript客户端所需要的相似技术 具体要跟程序结合起来。 by 探索者 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP+中使用Cookie]]></title>
    <link>http://im.vc/web/asp/2011/0822/61844.html</link>
    <description><![CDATA[%@ Page Language=VB % script language=VB runat=server Const COOKIE_NAMEAs String = test-cookie-name Const COOKIE_VALUE As String = test-cookie-value ' Declare our cookie object Dim objCookieObject As HttpCookie Sub btnSetCookie_OnClick(Send]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在服务器上保存一定时间的信息]]></title>
    <link>http://im.vc/web/asp/2011/0822/61843.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ %@import namespace=system.data.SQL% %@OutputCache Duration = 3600% /* 这个 OutputCache 的前缀的意思是 这个页面在 serve]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/61842.html</link>
    <description><![CDATA[html headlink rel=stylesheet href=FORUM.CSS meta http-equiv=Content-Type content=text/html; charset=gb2312 title精彩asp-镜象站点速度测试/title /head body bgcolor=#006699 text=#FFFFFF link=#FFFFFF vlink=#FFFFFF alink=#FFFFFF p alig]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP发 WAP MAIL(=)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61841.html</link>
    <description><![CDATA[mail.asp % Response.Buffer = True Response.ContentType = text/vnd.wap.wml Response.Write ?xml version=1.0 % % Set Mail = Server.CreateObject(Persits.MailSender) '--------------------------------------------------------- ' 你可以修改ISP的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+ 如何跨站抓取页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/61840.html</link>
    <description><![CDATA[如何用 php 和 asp 跨站抓取别的站点的页面，今天我们来测试一下 asp+ 是怎么实现 跨站抓取 别的站点的页面 Code Listing %@ Assembly Name=System.Net % %@ Import Namespace=System.Net % %@ Import Namespace=Sy]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Cookie使用指南]]></title>
    <link>http://im.vc/web/asp/2011/0822/61839.html</link>
    <description><![CDATA[我自己曾想写一篇关于Cookie的文章，特别是Client端Script同Server端asp通过Cookie交互的问题可能会困扰大家。其实是如果你对Cookie有深入的理解，特别是对域和路径的概念比较清晰的话，就]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在JSP、ASP和PHP网站网页中使用XHTML]]></title>
    <link>http://im.vc/web/asp/2011/0822/61838.html</link>
    <description><![CDATA[Overview A wise PRogrammer once said, The one constant in computing is change. There couldn't be a truer statement. This article is about such change, specifically moving from HTML to the next generation, XHTML (Extensible Hypertext Markup]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP获得图象的实际尺寸的示例]]></title>
    <link>http://im.vc/web/asp/2011/0822/61837.html</link>
    <description><![CDATA[!--#include virtual=/learn/test/lib_graphicdetect.asp-- htmlhead TITLEdbtable.asp/TITLE /head body bgcolor=#FFFFFF % graphic=images/learnaspiconmain.gif HW = ReadImg(graphic) Response.Write graphic Dimensions: HW(0) x HW(1) br response.writ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP和WML来实现数据库查询]]></title>
    <link>http://im.vc/web/asp/2011/0822/61836.html</link>
    <description><![CDATA[Shows how to perform a search with a WAP page and use asp on the server to do the database query and then display the results. %Response.ContentType = text/vnd.wap.wml% ?xml version=1.0?!DOCTYPE wml PUBLIC -//WAPFORUM//DTD WML 1.1//EN http:]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB6读写数据库中的图片]]></title>
    <link>http://im.vc/web/asp/2011/0822/61835.html</link>
    <description><![CDATA[很多兄弟在这里问关于VB6读写数据库中的图片的问题，在此有一例，希有所启发。 1，以人名和相关图片为例说明，数据库为access，有如下字段：Name char,picture OLE object,FileLength Number。当]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[域名登记查询(whois)很复杂吗]]></title>
    <link>http://im.vc/web/asp/2011/0822/61834.html</link>
    <description><![CDATA[jjx原创，转载必须注明出处 要复制代码，请使用论坛的“复制“功能完成 chinaasp的域名查询要卖1000元，网友提了意见，却被吕科一句（你把他封装成组件试试？）给挡了回去。域名登]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一种效率极高的分类算法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61833.html</link>
    <description><![CDATA[在网站建设中，分类算法的应用非常的普遍。在设计一个电子商店时，要涉及到商品分类；在设计发布系统时，要涉 及到栏目或者频道分类；在设计软件下载这样的程序时，要涉及到软]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现多语言支持]]></title>
    <link>http://im.vc/web/asp/2011/0822/61832.html</link>
    <description><![CDATA[纲 要 : 让 我 们 设 想 你 使 用 Active Server Pages 设 计 了 一 个 成 功 的 站 点 ， 而 你 的 客 户 纷 纷 要 求 将 此 站 点 国 际 化 以 提 供 多 种 语 言 版 本 。这 时 候 你 该 怎 么 办？]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp处理access数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61831.html</link>
    <description><![CDATA[dim appaccess, db, atable set appaccess=createobject(access.application) set db=appaccess.dbengine.opendatabase(server.mappath(northwind.mdb)) for each atable in db.tabledefs if instr(atable.name,Sys)=0 then response.write atable.name + br]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NT 下虚拟域名的实现]]></title>
    <link>http://im.vc/web/asp/2011/0822/61830.html</link>
    <description><![CDATA[虚拟域名实际上是虚拟主机的一种。 虚拟主机的出现是为了节省硬件的投资。如果 ISP 为每个申请了域名的用户都使用一台单独的机器，显然费用会很 高，而且对于访问不是很频繁的站]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VisualInterDev6.0七种实现分页显示的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61829.html</link>
    <description><![CDATA[MS Visual InterDev6.0中七种实现分页显示的方法 我们在编制与数据库有关的Web网页时，由于要显示的数据量巨大，常常面临一个数据记录分页显示的问题。 在微软的asp编程体系中，ADO对象]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用速度更快的OLEDB取代ODBC连结]]></title>
    <link>http://im.vc/web/asp/2011/0822/61828.html</link>
    <description><![CDATA[仍旧在使用ODBC系统或文件DSN连接数据库吗？请用速度更快的OLEDB提供者技术取代DSN连接数据库，不必再恳求你的ISP（或你的数据库管理员/Web管理员）为你创建系统DSN，也不必因为移动文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp使用activex组件实例一]]></title>
    <link>http://im.vc/web/asp/2011/0822/61827.html</link>
    <description><![CDATA[test.asp[code]!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN htmlhead titleactivex组件应用例子一/title/head % '--------------------------------------------------------- 'activex组件应用例子一 '读取sql server 7 pu]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Recordset对象方法详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/61826.html</link>
    <description><![CDATA[Recordset对象方法 Open方法 recordset.Open Source,ActiveConnection,CursorType,LockType,Options Source Recordset对象可以通过Source属性来连接Command对象。Source参数可以是一个Command对象名称、一段SQL命令、一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO+管理器功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61825.html</link>
    <description><![CDATA[In the past, data access was done using a two-tiered, connected model. With the increased development of multi-tiered applications, the need for a disconnected model has arisen. The ADO+ managed PRoviders give us this model. Managed provide]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为ASP开发者介绍ColdFusion]]></title>
    <link>http://im.vc/web/asp/2011/0822/61824.html</link>
    <description><![CDATA[ColdFusion是一个稳定、可靠的Web应用服务平台。自从1995年Allaire公司第一次发布ColdFusion以来，它已经成功地证 明了自己优秀的可伸缩性、跨平台能力，成为Web应用开发领域的主流力量之]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对Query字段进行Encode操作的一点看法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61823.html</link>
    <description><![CDATA[对Query字段进行Encode操作： 利用一个Query字段在不同主页间传递信息时必须进行Encode操作（注意是在进行不同页面传递），因为如果不这样做，你很可能使得接受信息的那边接受到一些]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中文本文件与数据库文件的数据交换]]></title>
    <link>http://im.vc/web/asp/2011/0822/61822.html</link>
    <description><![CDATA[asp中文本文件与数据库文件的数据交换 网络数据库的应用是WWW上一个很重要的组成部分，可以这样说，如果缺少了数据库，网络也就失去了灵魂。大家可以想象 一下，如果没有象YAHO]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何设置二级域名？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61821.html</link>
    <description><![CDATA[如果你域名为 domain.com 那么你的正常解析内容应是： ;Domain Mail Handlers ; domain.com.INMX0mail domain.com.INMX10mail ; ; ; hosts in order ; domain.com.INAip地址 wwwINAIP地址 mailINCNAMEwww popINCNAMEwww ftpINCNAMEwww]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP原码加密工具介绍]]></title>
    <link>http://im.vc/web/asp/2011/0822/61820.html</link>
    <description><![CDATA[总是会有很多方法暴露asp的原程序，造成数据库的密码 路径都可以轻易被其他人搞到，所以对ASP程序实行加密处理是个不错的解决方法。下面来介绍一个工具如果大家感兴趣可以来我主]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[复杂表单的动态生成与动态验证]]></title>
    <link>http://im.vc/web/asp/2011/0822/61819.html</link>
    <description><![CDATA[这里所谓的复杂表单，是指表单中包含多种不同的输入类型，比如下拉列表框、单行文本、多行文本、数值等。在经常需要更换这类表单的场合，需要有一个表单的动态生成程序。本文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[5个实用的ASP网站功能（GIB5）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61818.html</link>
    <description><![CDATA[如果喜欢我就继续，如不喜欢就删掉吧。 5個實用網站功能速成 刊登於RUN!PC 1999/2月號 作者 喬篷科技 周世雄 本文重點 在前幾期的IIS 4.0專欄當中，我們看到了威力強大的IIS（Internet In]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立自己的WEB平台]]></title>
    <link>http://im.vc/web/asp/2011/0822/61817.html</link>
    <description><![CDATA[平时野猫很少自己写文章，只因工作太忙，还要做叶子……今天终于有点空了！制作网页也有一年的多的时间了，在这里 把野猫的一些经验拿来和大家交流一下！ 1、制作工具的选择：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈session_onend的调试]]></title>
    <link>http://im.vc/web/asp/2011/0822/61816.html</link>
    <description><![CDATA[session_onend是比较难调试的，这是因为： 一、没有出错信息提示(这也难怪，是没有地方提示的，根本不知道要将出错提示信息放到什么地方去)。 二、大多数情况下，也不能使用session]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对数据库连接问题的一点总结]]></title>
    <link>http://im.vc/web/asp/2011/0822/61815.html</link>
    <description><![CDATA[1.odbc,oledb,ado,adox的关系： odbc:曾经的数据库通信标准 oledb: 在一切对象化的趋势下,ms打算用它取代odbc. oledb分两种：直接的oledb和面向odbc的oledb,后者架构在odbc上，这 样没有自己的oledb提]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页加速之图形处理篇]]></title>
    <link>http://im.vc/web/asp/2011/0822/61814.html</link>
    <description><![CDATA[在维护网站的过程用，可能遇到过这样的情况：辛辛苦苦做出来的页面，但图片过多，网页结构、表格结构复杂，程序冗 长，使得加载速度很慢！网页总是不能完全的展现在浏览者面前]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ＡＳＰ中用集合成批操作数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61813.html</link>
    <description><![CDATA[在ＡＳＰ中用集合成批操作数据库 我们知道，一般的关系数据库（如SQL Server、Oracle、access等）中的查询操作是支持集合操作的， 例如可以用“Update ATable Set Field1 = AValue where Field2 in (]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简易ASP+注册系统]]></title>
    <link>http://im.vc/web/asp/2011/0822/61812.html</link>
    <description><![CDATA[%@ Page Language=C# % %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.SQL % html headtitleasp+注册/title link rel=stylesheet type=text/CSS href=main.css Script Language=C# RunAt=Server void btnSubmit_Click(Object Src,Eve]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页加速之网页结构篇]]></title>
    <link>http://im.vc/web/asp/2011/0822/61811.html</link>
    <description><![CDATA[今天就网页结构进行一下讨论。 一个网页的结构的好坏，对网页的加载速度有着很大的影响！ 1、关于框架结构 一般情况下，应尽量避免使用框架结构，因为浏览器必须对框架中的每个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用纯ＡＳＰ代码实现图片上传并存入数据库中]]></title>
    <link>http://im.vc/web/asp/2011/0822/61810.html</link>
    <description><![CDATA[用纯ＡＳＰ代码实现图片上传并存入数据库中 用ＡＳＰ编写网站应用程序时间长了，难免会遇到各式各样的问题，其中 关于如何上传文件到服务器恐怕是遇见最多的问题了，尤其是上]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[页边距的设定技巧(HTML)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61809.html</link>
    <description><![CDATA[插入表格，如何使表格緊貼網頁的上面邊緣，不留空位？ 在页面的风格设定内加入下面的定义 STYLE TYPE=text/CSS BODY {margin: 0px} /STYLE 又或者在BODY中直接加入 BODY STYLE=margin: 0px 原始的方法为]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在Web页面中集成文件上传功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61808.html</link>
    <description><![CDATA[当前，个人主页制作非常流行。当用户开发好自己的页面时，需要将文件传输到服务器上，解决这个问题的方法之一 是运行FTP服务器并将每个用户的FTP默认目录设为用户的Web主目录，这]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用鼠标控制滚动的菜单条！(JavaScript)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61807.html</link>
    <description><![CDATA[第一步，将下面的代码加head与/head之间 style body{background-color:#FFFFFF} A{color:Navy; text-decoration:none} A:hover{color:red} A:visited:{color:#808080} TD{font-family:arial,helvetica; font-size:10pt} #divBg{position:absolu]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp管理sql server数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61806.html</link>
    <description><![CDATA[安装有sql server的主机有一个ole对象:sqlole, 可以实现对sql server数据库的管理. 下面的简单的例子,列出所有数据库的名字. 具体使用参看sql server手册. % Set OServer = Server.CreateObject(sqlole.sqls]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发连接远程SQL Server 的ASP程序应注意的问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61805.html</link>
    <description><![CDATA[Microsoft SQL Server7.0是一种大型、分布式数据库系统，也可被认为是一种大型、分布式数据仓库。由于其与 Windows NT和BackOffice以及Visual Studio具有紧密的配合，已被越来越多的网络应用系统]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Cookie使用指南]]></title>
    <link>http://im.vc/web/asp/2011/0822/61804.html</link>
    <description><![CDATA[我自己曾想写一篇关于Cookie的文章，特别是Client端Script同Server端asp通过Cookie交互的问题可能会困扰大家。其实是如 果你对Cookie有深入的理解，特别是对域和路径的概念比较清晰的话，就]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP定时组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61803.html</link>
    <description><![CDATA[在asp中我们为完成某些特定功能时，需要延迟输出，让脚本运行更长的时间，比如说聊天室程序，我们知道更新对话内容有两种方法，一是 客户端自动刷新，每隔一段时间向服务器查询]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP服务器组件编程心得]]></title>
    <link>http://im.vc/web/asp/2011/0822/61802.html</link>
    <description><![CDATA[使用asp编程的一大优点是可以使用众多的服务器组件（ActiveX Server Components)。这些组件提供诸如广告轮显 （Ad Rotator）、浏览器兼容（Browser Capabilities）、数据库存取（Database access）、文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp动态生成wbmp图片的程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61801.html</link>
    <description><![CDATA[%@ Language=VBScript % % '函数1： '将字符串转换成二进制 Function StoB(varstr) str2bin = For i = 1 To Len(varstr) varchar = Mid(varstr, i, 1) str2bin = str2bin ChrB(AscB(varchar)) Next StoB = str2bin End Function '函数2： '将每]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页加速处理]]></title>
    <link>http://im.vc/web/asp/2011/0822/61800.html</link>
    <description><![CDATA[在asp中我们为完成说到页面的减肥就要先说说HTML语言了，这是一种解释性的角本语言，那怎样可以“减肥”呢，因 为在HTML语言里本来是不用换行，不用大量的空格的，但各种用编辑器]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[配置ＩＩＳ４实现应用程序隔离]]></title>
    <link>http://im.vc/web/asp/2011/0822/61799.html</link>
    <description><![CDATA[如果不对ＩＩＳ４进行应用程序的隔离，那么我们运行asp程序时将可能发生奇怪的现象，两个应用程序，比如说聊天 室，在不同的聊天室里的朋友竟可以相互对话，这就是因为没有进行]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安全技巧：配置 IIS 4.0 证书鉴定]]></title>
    <link>http://im.vc/web/asp/2011/0822/61798.html</link>
    <description><![CDATA[配置 IIS 4.0 证书鉴定 Ramon Ali Windows NT杂志 - 1999 年2月 使用证书服务器1.0(Certificate Server 1.0)来作为证书权威 如果你能赋予可信用户透明地访问加密网站的权限，岂不是很好？这样的话，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个查看ASP的JavaScript程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61797.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 titleasp源程序查看器/title style.f{font-size:9pt}/style script //程序作者：虹雨 chy.126.com var autotop=new Array() autotop[1]= autotop[2]= autotop[3]= au]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何新增修改刪除数据库的资料呢？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61796.html</link>
    <description><![CDATA[ADO如何新增/修改/刪除資料庫的資料呢？ 新增資料庫的資料 首先使用ado連結到access資料庫ntopsamp.mdb，下SQL指令開啟資料表「產品」的資料，將結果傳回到rs1的recordset當中，asp程式碼如下]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP制作模似动态生长的表单?]]></title>
    <link>http://im.vc/web/asp/2011/0822/61795.html</link>
    <description><![CDATA[FILE: DYNAFORM.asp %@ language = vbscript% % Response.Expires = 0 % HTML HEAD TITLEDynamically Growing Form/TITLE /HEAD BODY % If Request(Action) = Submit the List Then ' Show what was entered. Response.Write BHere are the Items submitted:/]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在网站上连接ORACLE数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61794.html</link>
    <description><![CDATA[我们要建立处理数据库连接的asp程序，首先要建立用户端输入界面，在这个输入界面中需要有数据库名称、用户名称与用 户密码等三个字段。 然后建立数据库的连接的ASP程序，首先要]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人主页的数据库解决方案ASP]]></title>
    <link>http://im.vc/web/asp/2011/0822/61793.html</link>
    <description><![CDATA[eNet学院 如今，CGI日渐衰落，asp大行其道，大有取而代之之势。对个人主页制作者而言，CGI也确实太复杂了，尤其是在数据库的操 作上，繁复无比让人望而生畏。相较而言， ASP则简单得]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何善用Response.Buffer增进浏览速度？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61792.html</link>
    <description><![CDATA[利用 Response.Buffer=True，Response.Flush 可以增进浏览速度，如果一个页面 Response.Buffer=False，有30个资料转输，若有 100 人浏览此页面，则有 3000 个来回传输，严重影响效率；若在起始得设定]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加快图片显示(JavaScript)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61791.html</link>
    <description><![CDATA[预先读取图片的方法是比较简单的，用javascript这样实现。 将如下的类似代码放在HTML的head区： SCRIPT LANGUAGE=Javascript !-- Image1= new Image(100,50) Image1.src = image1.gif Image2 = new Image(100,50) Image2.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跨站Script攻击（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61790.html</link>
    <description><![CDATA[跨站Script攻击（一） 每当我们想到黑客的时候，黑客往往是这样一幅画像：一个孤独的人，悄悄进入别人的服务器中，进行破坏或者窃取别人的秘 密资料。也许他会更改我们的主页，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用 Meta Tag 来增加文件属性]]></title>
    <link>http://im.vc/web/asp/2011/0822/61789.html</link>
    <description><![CDATA[META NAME=Update CONTENT=2000/9/7 META NAME=Author CONTENT=Jerry META NAME=KeyWords CONTENT=asp META NAME=Description CONTENT=VID/ASP FAQ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何使用Update语法呢？（BIG5）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61788.html</link>
    <description><![CDATA[Update Update陳述式，用來更新資料表中欄位的資料值，可以使用WHERE設定特定的條件運算式，符合條件運算式的記錄才會被更新。 語法如下： UPDATE 資料表 SET 欄位新值 WHERE 條件運算式]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跨站Script攻击（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61787.html</link>
    <description><![CDATA[跨站Script攻击（二） 二、 用E-Mail进行跨站Script攻击 跨站script攻击用在列表服务器，usenet服务器和邮件服务器来得特别容易。下面还是以MyNiceSite.com网站为例进行说 明。由于你经常浏览]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[要如何使用 ASP Error 组件？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61786.html</link>
    <description><![CDATA[首先由Set objaspError=Server.GetLastError 取得错误信息，接着由 ASPError 物件的属生取得相关信息： objASPError.ASPCode：传回IIS产生的错误码 objASPError.Number：传回COM标准错误码，如 0x800A03FC objAS]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何取得资料表栏位资讯（BIG5）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61785.html</link>
    <description><![CDATA[ADO如何取得資料表欄位資訊？ 若要取得資料表欄位資訊，由以下RecordSet物件的屬性可得知： ActualSize屬性：此筆資料的欄位實際大小。 DefinedSize屬性：此筆資料的所定義的欄位大小。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跨站Script攻击（三）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61784.html</link>
    <description><![CDATA[跨站Script攻击（三） 第二部分：跨站Script攻击的防犯 一、如何避免服务器受到跨站Script的攻击 值得庆幸的是，防止跨站Script攻击的技术正趋于完善。目前可采取这几种方式来防止跨站]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Server.Execute和#include相异之处]]></title>
    <link>http://im.vc/web/asp/2011/0822/61783.html</link>
    <description><![CDATA[Execute Method 是个呼叫一个.asp 程序并执行它，比较类似一般程式语言的 PRocedure call；而 #include 则仅將所包含的程序插入原程序当中。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP建立Http组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61782.html</link>
    <description><![CDATA[如何生成自己的aspHttp组件: 使用Winsock控件，下面将介绍怎么来建立一个简单的HTTP组件。 记住先选择mswinsck.ocx控件,下面的代码是在VB6中编译的。 代码如下： PRivate WithEvents objWinSock As]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft 脚本编码器Script Encoder介绍（4）全中文]]></title>
    <link>http://im.vc/web/asp/2011/0822/61781.html</link>
    <description><![CDATA[编码示例 如下是一个包含需要保护的 JScript 代码的简短示例： HTML HEAD TITLE脚本编码器示例页/TITLE SCRIPT LANGUAGE=JScript !--// //Copyrightcopy; 1998 Microsoft Corporation. All Rights Reserved. //**开始编码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何建立修改刪除资料表呢？（BIG5）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61780.html</link>
    <description><![CDATA[可以使用asp於程式當中直接建立修改刪除資料表呢？ 與資料表有關的SQL語法如下： 建立一個資料表：CREATE TABLE陳述式。 修改一個資料表：ALTER TABLE陳述式。 刪除一個資料表：DROP TABL]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何提供异动功能？（BIG5）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61779.html</link>
    <description><![CDATA[BeginTrans/CommitTrans/Rollback方法 當您必須更新多個資料表中的資料欄位時，並確保在所有的資料表中所作的改變都被完成（確認Commit）、或者不變（撤銷復原Rollback）時，您可以使用異動（]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(4)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61778.html</link>
    <description><![CDATA[2000-08-14· 编译：甘冀平·Yesky 技巧16：在任何可能时使用Server.Transfer，而不要用Response.Redirect Response.Redirect告诉浏览器请求另一个不同的页面，这常常用于引导用户到登录页面或者出错处]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何安裝 IIS 5.0 ？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61777.html</link>
    <description><![CDATA[如 果發現系統並未安裝 IIS 5.0 ，而事後要安裝 IIS 5.0 環境，請點選「開始→設定→控制台→新增/移除程式」，再選擇 「新增/移除Windows元件」，按一下右上角「元件」按鈕，接著請在]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何善用RecordSet组件呢？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61776.html</link>
    <description><![CDATA[為了善用RecordSet物件，RecordSet物件還有許多有用的屬性和方法，讓我們再學學： Filter屬性：於ReecordSet設定搜尋過濾的條件，只顯示合乎條件的資料。 Clone方法：複製一份RecordSet。 Cac]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp生成wml]]></title>
    <link>http://im.vc/web/asp/2011/0822/61775.html</link>
    <description><![CDATA[第一个asp页面。 Note Pad输入下面的程序。 %@ Language=VBScript % % Response.ContentType=text/vnd.wap.wml %?xml version=1.0? !DOCTYPE wml PUBLIC -//WAPFORUM//DTD WML 1.1//EN http://www.wapforum.org/DTD/wml_1.1.xml wml card id=ma]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在您的网站中加入互动功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61774.html</link>
    <description><![CDATA[如何在您的网站中加入互动功能(TRANSACTION)呢？ IIS(Internet Information Server)与MTS(Mircrosoft Transaction Server)紧密配 合，数据库的更改有同生共死的互动(TRANSACTION)功能。 当asp程序中所有的数据]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web网站的错误控制]]></title>
    <link>http://im.vc/web/asp/2011/0822/61773.html</link>
    <description><![CDATA[编译如下： “脚本错误……是否调试脚本……？”或“类型错误……”这类提示是Web开发者每日生活的一部分。要预先考虑到所有可能 遇到的错误并加以处理以免用户看到这些对他们]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP随机产生随机数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61771.html</link>
    <description><![CDATA[各位好今天我要告诉大家的是如何用asp产生随机数。大家都知道大多数网站注册后 提供用户名和一个随机密码，但这个密码是如何产生的，现在我就向大家来介绍一下 请看下面的例子]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件图片与文本同步存入数据库的最简单的办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61770.html</link>
    <description><![CDATA[一:前言 首先，没有料到图片与文本的上传会引起这么大的注意。上一篇贴子(Id=435906)贴出后，有不少人来信说看不懂。或 是仍然不能实现。我就以一种完全简单的手法。完成无组件的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[产生随机滚动信息]]></title>
    <link>http://im.vc/web/asp/2011/0822/61769.html</link>
    <description><![CDATA[产生随机滚动信息 (Charles Carroll/蜘蛛精 译) Random Advice / Rotating Information by Charles Carroll 本页演示了通过产生随机数的方式实现出现随机滚动信息的方法 RND函数 INT函数 SELECT CASE 代码rand]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP代码移植为VB COM组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61768.html</link>
    <description><![CDATA[当你编写可以节省时间的asp代码时，如果要移植代码的话，有许多事情需要做。跟随以下步骤，你会 发现移植代码没有什么麻烦的。 声明变量类型 Visual Basic 和VBScript 的最大缺点是它允]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP打开远端MDB文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61767.html</link>
    <description><![CDATA[如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息： Microsoft OLE DB PRovider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft access Driver] The Microsoft Jet]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在WAP网站上建立反馈表单]]></title>
    <link>http://im.vc/web/asp/2011/0822/61766.html</link>
    <description><![CDATA[For any one person to create a web site and then think it is perfect, is ridiculous. It is important to allow the visitors of our web sites to comment on what we have developed so that we can learn from the end- user, our mistakes and not t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP代码移植为VB COM组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61765.html</link>
    <description><![CDATA[一个快速回答的问题：为什么关于asp的书中，讨论使用子程序和函数的代码的那么少？ 虽然一行一行地写ASP代码要更加简单，但是以程序的形式来编码却有许多益处。 首先，非程序化]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序密码验证问题 (MS,缺陷)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61764.html</link>
    <description><![CDATA[涉及程序： MS IIS 描述 国内一大学生发现的NT网站的asp程序密码验证漏洞 详细 来自: benjurry@263.net 原文如下： 很早就发现很多国内程序员对密码验证不注意，今天去了陈水扁(www.abian.n]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61763.html</link>
    <description><![CDATA[性能是一个很重要的特征。你需要事先设计好性能指标，否则日后就要为此重新编写程序。就是说：要设想好怎样最佳化地执行asp程序？ 本文提出了一些优化ASP应用和VBScript的技巧，许]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP代码移植为VB COM组件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61762.html</link>
    <description><![CDATA[这个例子中的第一站是asp页。这个ASP页用ADO与Northwind 数据库连接。为了保持良好的编码习惯，我 使用了Option Explicit 并明确地声明了所有变量。这个ASP页的第一个草稿使用了内联代码。]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP语言实现对SQL SERVER 数据库的操作]]></title>
    <link>http://im.vc/web/asp/2011/0822/61761.html</link>
    <description><![CDATA[目前管理信息系统已从传统的客户机/服务器（C/S）模式转向了浏览器/服务器（B/S）模式，特别是微软公司推出它的新产品asp语言之后，这种转变更加迅猛。管理信息系统的核心是对数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP常见问题解答]]></title>
    <link>http://im.vc/web/asp/2011/0822/61760.html</link>
    <description><![CDATA[问题：如何保护自己的asp源代码不泄露？ 答：下载微软的Windows Script Encoder，对ASP的脚本和客户端javaScript、VBScript脚本进行加密。客户端脚本加 密后，只有IE5以上的版本才能执行，服务]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61759.html</link>
    <description><![CDATA[技巧6：聪明地使用session对象 Session在繁忙站点上使用时有几个缺陷。繁忙的意思是：站点上每秒有上百的页面被请求，或者同时有上千的访问用户。这个技巧对于那些要求水平扩展强的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft SQL Server 7.0 备份及恢复相关问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61758.html</link>
    <description><![CDATA[SQL Server 6.5的SQL语句能否转储（Dump）和加载（Load）SQL server 7.0？ 可以进行备份（Backup）和恢复（Restore）。 恢复数据库时出现下列信息如何解决？SQL-DMO Error: Could not obtain exclusive lock o]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库聊天室的“无刷新”技术要点]]></title>
    <link>http://im.vc/web/asp/2011/0822/61757.html</link>
    <description><![CDATA[聊天室是网络实时交互的最常应用之一。聊天室的制作要解决好以下问题。 1、谁在发言 2、讲给谁听 3、讲些什么 与ICQ不同，ICQ 的数据流是一对一的关系。只要解决好上面三个问题就]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(3)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61756.html</link>
    <description><![CDATA[技巧11：使用Response Buffering 通过打开“response buffering”可以缓冲一个值得输出的整个页面内容，这将最小化输出到浏览器的数据量，从而提高了整体性能。每一次输出都耗费许多，所以]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft SQL Server 7.0数据库升级转换问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61755.html</link>
    <description><![CDATA[数据库升级转换所需时间？ 影响数据库升级转换所需时间的因素很多， 除了硬件的因素外，由于需要重新创建每个SQL Server 6.X的对象，数据库复杂与否也会有影响，一般来说大致的速度]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把ASP移植到ASP+]]></title>
    <link>http://im.vc/web/asp/2011/0822/61754.html</link>
    <description><![CDATA[Before embarking on the inevitable—and not painless—migration to asp+, it's best to know what compatibility issues you'll have to deal with by Chris Kinsman Microsoft is set to release an exciting upgrade to ASP later in 2000. This is a]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft SQL Server 7.0安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61753.html</link>
    <description><![CDATA[【「Microsoft SQL Server 7.0」以下简称「SQL Server 7.0」】 SQL Server 7.0 有哪几种安全模式? 两种：SQL Server和Windows NT（混合）及Windows NT only。SQL Server 和Windows NT相当于SQL Server 6.5版本的混合模式]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用XQI？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61752.html</link>
    <description><![CDATA[作为通讯媒体，XQI(Extensible Query Interface)是一种允许使用xml远程查询和插入数据库的服务。 XQI允许远程查询和插入使用搜索引擎，但不需要CGI应用（数据可以通过其他应用传递）。 例子]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(4)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61751.html</link>
    <description><![CDATA[技巧16：在任何可能时使用Server.Transfer，而不要用Response.Redirect Response.Redirect告诉浏览器请求另一个不同的页面，这常常用于引导用户到登录页面或者出错处理页面。由于重定向强迫了一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最优化ASP程序性能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61750.html</link>
    <description><![CDATA[Active Server Pages可以让动态页面很快地执行，但是，在代码中和数据库的连接上加入一些技巧，就能让程序更 快地执行。这是一篇关于如何精制脚本程序以及asp特征来达到最大速度的文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个普通的数据库例子源源程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61749.html</link>
    <description><![CDATA[To assist in interfacing with databases. This script can format variables and return SQL formats. Such as double quoting apposterphies and surrounding strings with quotes, Returning NULL for invalid data types, trimming strings so they do n]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于在浏览器中执行*.exe文件的深入探讨!]]></title>
    <link>http://im.vc/web/asp/2011/0822/61748.html</link>
    <description><![CDATA[一：真的能在浏览器中执行命令文件吗？ 答案是肯定的。（哇，酷耶！可以......）不过先别高兴，只能执行服务器端的，而且是必须经过授权的。否则服务 器想黑你就太容易了。谁敢]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access数据库操作中出现的怪现象]]></title>
    <link>http://im.vc/web/asp/2011/0822/61747.html</link>
    <description><![CDATA[我用的数据库是access2000的，系统为Win2000 Advance Server.今天在程序调试中遇到了以下几个怪现象： 1.如果Access程序把调试的程序处于打开状态时（不一定是改表或表结构的界面），程序中]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Global.asa文件的深入研究与session变量失效提示的具体方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61746.html</link>
    <description><![CDATA[一：Global.asa文件的释疑！从字面上讲！Global就是全局的，全球的意思！ 我们都知道！浏览器中的变量存活期十分短暂！只有几十秒！也就是一个页面的下载时间。那么我们怎样从生命]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让Session对象在不同域名下实现共享]]></title>
    <link>http://im.vc/web/asp/2011/0822/61745.html</link>
    <description><![CDATA[There is a general belief among developers that session state maintenance is always against one domain / site. And therefore one can not maintain session state across different domains. Usually there is no such requirement to maintain sessi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用RecordSet实现分页(by Daniel Adrian)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61744.html</link>
    <description><![CDATA[Paging through a recordset by Daniel Adrian Skill level: Beginner First posted: Monday, October 09, 2000 Paging through a recordset When I want to develop an application with a lot of records to show, I make pages so I can easily navigate t]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数 据 库 设 计 经 验 谈]]></title>
    <link>http://im.vc/web/asp/2011/0822/61743.html</link>
    <description><![CDATA[数据库模型的设计是否合理会极大影响系统的使用性能。笔者依据多年来设计和使用数据库的经验，提出以下一些设 计原则，供同仁们参考。 慎用游标（Cursor） 游标提供了对特定集合]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从数据库中动态选取下拉列表的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61742.html</link>
    <description><![CDATA[有一页填表的页面，其中有几个下拉表单是通过一个表的某个字段动态生成，比如省下面的城市名，希望选择某一个 省即可自动在另一下拉表单内生成城市名，.....然后提交给asp处理加]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ADO批量更新记录（源代码）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61741.html</link>
    <description><![CDATA['************************************** ' Name: Batch Update using ADO ' Description:ADO has a great batch upda 'te feature that not many people take adv 'antage of. You can use it to update many 'records at once without making multiple 'ro]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现在web中显示电子表格数据（二）生成HTML表格]]></title>
    <link>http://im.vc/web/asp/2011/0822/61740.html</link>
    <description><![CDATA[过程的最后一步是格式化数据并显示，就是建立一个HTML输出，步骤如下： 依次循环记录集（Recordset）中每一个字段（Field），写标题 依次循环记录集和每一个字段，写数值 例程代码将]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL实现分布式数据复制]]></title>
    <link>http://im.vc/web/asp/2011/0822/61739.html</link>
    <description><![CDATA[复制的概念 复制作为一个重要并且强大的技术，为分布式数据的存储和处理提供了有力支持。微软公司的SQL Server可以生成数 据的拷贝，并能把这些数据的拷贝分发到不同的地方，自动]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自己动手，结合javascript和dhtml做一个ubb编辑器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61738.html</link>
    <description><![CDATA[看到chinaasp论坛的abc code editor了吗？是不是觉得很cool? 说真的，刚见到我还以为是用别的什么语言做的控件呢， 后来才发现没有那么神秘的。前几天做一个商品bbs，客户要求支持ubb，同]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现在web中显示电子表格数据（三）创建数据表列表和名字范围]]></title>
    <link>http://im.vc/web/asp/2011/0822/61737.html</link>
    <description><![CDATA[除了“读取Excel数据形成HTML表格”的技术外，你可能有兴趣想了解怎样用程序实现电子数据表和名字范围的下拉菜单列表。 除了单元格的内容，用ADO还能知道更多的信息－－－在上面，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NT4的ODBC与SQL7相连，不支持中文？]]></title>
    <link>http://im.vc/web/asp/2011/0822/61736.html</link>
    <description><![CDATA[这可能是因为您使用SQL Server ODBC 3.70.06.23版的Driver。请不要设定Perform translation for character data，并且升级SQL Server ODBC 版本至3.70.06.90。 附注：SQL server 7.0附的是3.70.06.23 ，SQL server 7.0 SP1 附]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查Email地址的比较完善的正则表达式函数]]></title>
    <link>http://im.vc/web/asp/2011/0822/61735.html</link>
    <description><![CDATA[下面的函数可以对Email地址格式进行检查，只有形如： abc@abc.abc，abc@abc.abc.abc和abc@abc.abc.abc.abc状的串才能通过检查， 如下面这些非法地址都通不过： @abc@163.net，abc@163..net，abc@163.net.，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现在web中显示电子表格数据（四）创建文件选择列表]]></title>
    <link>http://im.vc/web/asp/2011/0822/61734.html</link>
    <description><![CDATA[最后介绍创建文件选择列表的代码，在这里使用内建的FileSystem对象获得文件和文件夹的信息。 为简单起见，例程假设电子数据表文件和asp文件位于同一个目录下。通过vServerFolder= Serv]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大部分ADO的错误码对应的含义]]></title>
    <link>http://im.vc/web/asp/2011/0822/61733.html</link>
    <description><![CDATA[除了在 Error 对象和 Errors 集合中说明的提供者错误之外，ADO 本身也将错误返回到运行时环境的异常处理机制之中。 使用编 程语言的错误捕获机制（如 Microsoftreg; Visual Basicreg; 中的 On]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从Access数据库恢复BMP图像并显示在WEB页面(microsoft)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61732.html</link>
    <description><![CDATA[HOWTO: Retrieving Bitmap from access and Displaying In Web Page -------------------------------------------------------------------------------- The information in this article applies to: Active Server Pages Microsoft Visual Basic PRofessi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Carello Web 使 ASP 源码暴露 (APP,缺陷)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61731.html</link>
    <description><![CDATA[涉及程序： Carello Web on NT running IIS 描述： Carello Web 使 asp 源码暴露 详细： Carello Web 是一个支持网络购物的软件。 Carello Web 存在一个安全问题使远程攻击者能在系统上建立一个文件，如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+中取代ASP的RS(Remote Scripting)技术的Framework]]></title>
    <link>http://im.vc/web/asp/2011/0822/61730.html</link>
    <description><![CDATA[asp+中取代ASP的RS(Remote Scripting)技术的Framework Batman 在上面的文章里面我提到了Page.IsPostBack属性的一个应用，可以用来保存用户输入的 信息，下面我将介绍它的另外一个用处，那就是取代]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS IIS虚拟主机ASP源码泄露 (MS,缺陷)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61728.html</link>
    <description><![CDATA[涉及程序： MS windows NT/IIS 描述： 共享目录导致asp程序源码泄露 详细： 如果一个虚拟主机的根目录是映射到一网络共享目录，通过在ASP或者HTR扩展名后增加某些特殊字符，IIS服务器将反]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Page.IsPostBack属性保持用户输入的Framework]]></title>
    <link>http://im.vc/web/asp/2011/0822/61727.html</link>
    <description><![CDATA[利用Page.IsPostBack属性保持用户输入的Framework Batman 在大型应用中考虑到用户在进行大量输入工作时候，有可能要遇到下面这种情况。 例如用户输入的信息中的某几项信息检测失败，服务]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ASP中使用mySQL]]></title>
    <link>http://im.vc/web/asp/2011/0822/61726.html</link>
    <description><![CDATA[Using A MySQL Databases by Ben O'Neill Databases are the best way to keep your web site up-to-date and dynamic. Databases are used these days by thousands of web sites. They are used for storing news and general information. Web sites like]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二十八条改善 ASP 性能和外观的技巧(8]]></title>
    <link>http://im.vc/web/asp/2011/0822/61725.html</link>
    <description><![CDATA[技巧 8：迟一点获得资源，早一点释放资源 技巧 9：进程外执行过程以性能换取可靠性 技巧 10：使用显式选项 技巧 11：在子例程和函数中使用局部变量 技巧 12：将经常使用的数据复制]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[虚拟web目录容易泄露ASP源代码 (MS,缺陷)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61724.html</link>
    <description><![CDATA[涉及程序： Microsoft Internet Information Server/Index Server 描述： 震撼安全发现:新的漏洞允许查看web服务器上任何文件包括asp源码 详细： IIS4.0上有一个应用程序映射htw---webhits.dll，这是用于]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程中15个非常有用的例子（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61723.html</link>
    <description><![CDATA[asp编程中15个非常有用的例子 enet学院 1.如何用Asp判断你的网站的虚拟物理路径 答 使用Mappath方法 p align=centerfont size=4 face=Arialb The Physical path to this virtual website is: /b/font font color=#FF0000 s]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS IIS server的ASP安全缺陷 (MS,缺陷)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61722.html</link>
    <description><![CDATA[涉及程序： Microsoft IIS server 描述： IIS使有权上传和使用asp程序的用户能更改任何文件 详细： 这是IIS的一个非常严重的漏洞,即使是IIS4.0,仍然没有补上这个漏洞: 你建立 如http://www.cnns]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二十八条改善 ASP 性能和外观的技巧(15]]></title>
    <link>http://im.vc/web/asp/2011/0822/61721.html</link>
    <description><![CDATA[技巧 15：批处理内嵌脚本和 Response.Write 语句 技巧 16：如果页面需要很长时间才能完成，那么执行前使用 Response.IsClientConnected 技巧 17：使用 OBJECT 标记例示对象 技巧 18：对于 ADO 和其它]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用WinSock设计Chat程序(转)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61720.html</link>
    <description><![CDATA[摘要 随着Internet的蓬勃发展，网络界面的交流使我们能够即时收到各地所发生的各项信息。我们在使用各种Browser浏览各网点时，只要Server能提供Chat（闲聊）的服务项目，我们就可以通]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二十八条改善 ASP 性能和外观的技巧(22]]></title>
    <link>http://im.vc/web/asp/2011/0822/61719.html</link>
    <description><![CDATA[技巧 22：尽可能使用 Server.Transfer 代替 Response.Redirect 技巧 23：在目录 URL 中使用后斜杠 技巧 24：避免使用服务器变量 技巧 25：升级到最新和最出色的 技巧 26：优化 Web 服务器 技巧 27：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程中15个非常有用的例子 （二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61718.html</link>
    <description><![CDATA[asp编程中15个非常有用的例子 enet学院 8.强迫输入密码对话框 答把这句话放载页面的开头 % response.status=401 not Authorized response.end % 9 如何传递变量从一页到另一页 答 用HIDDEN类型来传递变]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[isNull(str), isEmpty(str)和 str = &amp;amp;quot;&amp;amp;quot;的区别]]></title>
    <link>http://im.vc/web/asp/2011/0822/61717.html</link>
    <description><![CDATA[1。isnull（） Null 值指出变量不包含有效数据。Null 与 Empty 不同，后者指出变量未经初始化。Null 与零长度字符串 () 也不同，零长度字符串往往指的是空串。 重点 使用 IsNull 函数可以判]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP与JSP的比较(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61716.html</link>
    <description><![CDATA[asp与jsp的比较(一) 从微软推出了ASP(ActiveServerPage)后，它以其强大的功能，简单易学的特点而受到广大WEB开发人员的喜欢。但是它却有微软产品的通病,只能在Windows平台下使用，虽然它可]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现在web中显示电子表格数据（一）显示数据表格的应用]]></title>
    <link>http://im.vc/web/asp/2011/0822/61715.html</link>
    <description><![CDATA[在用asp语言开发的Web数据库应用程序中，ADO (ActiveX Data Objects) 已经成为非常流行的工具，而且对于真正的关系型数据库，比如Oracle、SQL Server，它都不会有局限性。ADO能够存取多种不同的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈session_onend的调试]]></title>
    <link>http://im.vc/web/asp/2011/0822/61714.html</link>
    <description><![CDATA[session_onend是比较难调试的，这是因为： 一、没有出错信息提示(这也难怪，是没有地方提示的，根本不知道要将出错提示信息放到什么地方去)。 二、大多数情况下，也不能使用session]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP与JSP的比较(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61713.html</link>
    <description><![CDATA[asp与jsp的比较(二) 五、ServerSideIncludes 在服务器端引用上ASP和JSP有着相同之处。ASP和JSP都可以支持此功能的服务器(IIS,APACHE)上实现服务器端包含虚文件。但JSP是将动态页面的结果包含进来]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（原理）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61712.html</link>
    <description><![CDATA[实现原理：以一排序字段（字符型实现排序），该字段的实际长度即为回复深度（用一位字符代表一层深度时）。 所受限制：回复深度只受排序串定义长度的限制（有点象空间换深度）]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中五种连接数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61711.html</link>
    <description><![CDATA[asp中五种连接数据库的方法 eNet学院 第一种 - 这种方法用在access中最多 strconn = DRIVER=Microsoft Access Driver (*.mdb);DBQ= Server.MapPath(aspfree.mdb) set conn = server.createobject(adodb.connection) conn.open strco]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61710.html</link>
    <description><![CDATA[如何增强asp程序性能(1) 2000-08-10· 甘冀平·Yesky 简介 性能是一个很重要的特征。你需要事先设计好性能指标，否则日后就要为此重新编写程序。就是说：要设想好怎样最佳化地执行ASP程]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从ASP调用SQL中的图像]]></title>
    <link>http://im.vc/web/asp/2011/0822/61709.html</link>
    <description><![CDATA[从asp调用SQL中的图像 eNet学院 关键词：Sql Server, ADO 如何处理ASP中的图象 在用ASP编程中，很多时侯要用到图象。对于单纯从数据库中处理一个图象，方法大家讲了很多，也不难， 可以看]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61708.html</link>
    <description><![CDATA[文档: 远程执行服务器脚本 复杂的 Web 应用程序既调用客户脚本又调用服务器脚本。客户脚本经常用于对应用程序的用户接口进行编程──例如，为了动态改变 Web 页文本，对用户动作，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61707.html</link>
    <description><![CDATA[如何增强asp程序性能(2) 2000-08-11· 编译：甘冀平·Yesky 技巧6：聪明地使用session对象 Session在繁忙站点上使用时有几个缺陷。繁忙的意思是：站点上每秒有上百的页面被请求，或者同时有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——连接字串）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61706.html</link>
    <description><![CDATA[程序名称：lybcon.inc 程序功能：数据库连接字符串 % lybstr=PRovider=SQLOLEDB.1;PassWord=密码;Persist Security Info=True;User ID=sa;Initial Catalog=数据库 名;Data Source=数据库服务器名;Connect Timeout=15 % 注意：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61705.html</link>
    <description><![CDATA[文档: 使 Remote Scripting 在客户页中有效 在您能使用 remote scripting 来调用服务器脚本之前，必须将 remote scripting 能力添加到用户的客户页中。使用来自于客户脚本的 remote scripting 所需的例]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何增强ASP程序性能(3)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61704.html</link>
    <description><![CDATA[技巧11：使用Response Buffering 通过打开“response buffering”可以缓冲一个值得输出的整个页面内容，这将最小化输出到浏览器的数据量，从而提高了整体性能。每一次输出都耗费许多，所以]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——删除贴子）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61703.html</link>
    <description><![CDATA[程序名称：delrec.asp 程序功能：删除贴子（剪枝） !-- #include file=lybcon.inc -- % flag=request(flag) keyid=request(keyid) pageno=request(pageno) passWord=request.form(password) if flag=1 then if password=你的管理密码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(三)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61702.html</link>
    <description><![CDATA[文档: 使 Remote Scripting 在服务器页中有效 除了对客户页进行配置以便于调用远程脚本外，您还必须对自己的服务器页进行配置，以便于对它们进行接收。其做法包括下面这些步骤： 包含]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——保存贴子内容）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61701.html</link>
    <description><![CDATA[程序名称：savelyb.asp 程序功能：保存贴子内容 !-- #include file=lybcon.inc -- % posttype=request(posttype) pageno=request(pageno) keyid=request(keyid) if keyid= then keyid=0 emailpost=request(emailpost) guestitle=trim(request]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft 脚本编码器Script Encoder介绍（1）全中文]]></title>
    <link>http://im.vc/web/asp/2011/0822/61700.html</link>
    <description><![CDATA[脚本编码器是一种简单的命令行工具，它使脚本设计者可以对最终的脚本进行编码，从而使 Web 主机和 Web 客户不能查看或修改它们的源代码。注意，这种编码只能防止别人在无意中查看]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(四)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61699.html</link>
    <description><![CDATA[文档: 引用 asp 页作为对象 为了使得用 remote scripting 调用 ASP 页上的方法更方便一些，您可以在客户脚本中创建一个包含服务器方法页的对象引用。这使得用户可以使用标准 object.method]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——回复表单）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61698.html</link>
    <description><![CDATA[程序名称：revert.asp 程序功能：回复表单 !-- #include file=lybcon.inc -- % pageno=request(pageno) keyid=request(keyid) posttype=request(type) if posttype=revert then set guestconn=Server.CreateObject(ADODB.connection) guestconn]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft 脚本编码器Script Encoder介绍（2）全中文]]></title>
    <link>http://im.vc/web/asp/2011/0822/61697.html</link>
    <description><![CDATA[使用脚本编码器 脚本编码器只对脚本代码进行编码，文件的其他内容不动且以普通文本形式显示。要使用脚本编码器，以通常方法对文本进行开发和调试，然后使用该实用程序对最终的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(五)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61696.html</link>
    <description><![CDATA[文档: 调用 Remote Scripting 方法同步 在对某个客户页和某个服务器页上的 remote scripting 进行配置后，您就可以从自己的客户脚本调用该服务器页的方法了。缺省的情况是，当用户调用某个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——显示贴子内容）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61695.html</link>
    <description><![CDATA[程序：disPRec.asp 功能：显示贴子具体内容 !-- #include file=lybcon.inc -- % keyid=request(keyid) rootid=request(rootid) pageno=request(pageno) if rootid=0 then rootid=keyid set guestconn=Server.CreateObject(ADODB.connection) gu]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(六)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61694.html</link>
    <description><![CDATA[文档: 调用 Remote Scripting 方法异步 Remote scripting 向您提供了异步调用服务器方法的选择 ──当执行服务器方法时，用户的客户脚本继续运行。异步调用 remote scripting 方法使得您可以避免]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft 脚本编码器Script Encoder介绍（3）全中文]]></title>
    <link>http://im.vc/web/asp/2011/0822/61693.html</link>
    <description><![CDATA[脚本编码器语法 描述 对脚本编写源代码进行编码，使其不会轻易地被用户查看或修改。 语法 SCRENC [/s] [/f] [/xl] [/l defLanguage ] [/e defExtension] inputfile outputfile 脚本编码器语法的组成部分如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（例程——显示树）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61692.html</link>
    <description><![CDATA[程序index.asp 功能：显示目录树 !-- #include file=lybcon.inc --% pageno=request(pageno) searchtype=request(searchtype) searchnr=rtrim(request(searchnr)) set guestconn=Server.CreateObject(ADODB.connection) guestconn.Open lybstr set]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP在自己的网站建立投票机制（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61691.html</link>
    <description><![CDATA[Batman 翻译整理 一个很不错的建立自己的投票系统的asp程序大家仔细读读，只要能够理解中间的关键技术，就能够在自己的网站上建立自己的投票站了。文件整理得很仓促，希望大家谅]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（存储过程）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61690.html</link>
    <description><![CDATA[加贴存储过程： if exists (select * from sysobjects where id = object_id(lybsave)) drop PRoc lybsave CREATE PROCEDURE [lybsave] @keyid int=0,@guestname varchar(20),@guestitle varchar(100),@guestcomm text,@guestemail varchar(50)='',@em]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(七)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61689.html</link>
    <description><![CDATA[文档: 检查错误 当您在服务器脚本中用 remote scripting 调用方法时，可能会遇到多种错误，包括语法错误和运行时间错误，以及调用 remote scripting 方法时的错误。remote scripting 调用机制向]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP在自己的网站建立投票机制（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61688.html</link>
    <description><![CDATA[Batman 翻译整理 4、文件default.asp % ID = Request(ID) If ID = Then ID = 30 End If Title = Polls (Create your own poll) % html headlink rel=STYLESHEET type=text/CSS href=style.css titleASP Polls/title script language=javaScript functi]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用排序串字段实现树状结构（库结构）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61687.html</link>
    <description><![CDATA[以下是建立库结构的Sql语句（以一个简单的树状留言薄为例）： if exists(select * from sysobjects where ID = object_id(guestbook)) drop table guestbook go drop table guestbook create table guestbook( lybid int identity]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(八)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61686.html</link>
    <description><![CDATA[文档: 调用对象属性和方法 当您调用一个服务器方法时，该方法不返回单个值。而是创建一个调用对象，该对象包含被调用过程的返回值和状态信息。下表列出了调用对象的属性。 属性]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61685.html</link>
    <description><![CDATA[建立数据库结构: ' bbs ' 序号 INT NOT NULL IDENTITY ' 作者 VARCHAR(80) ' 题目 VARCHAR(255) ' 回复 INT NOT NULL DEFAULT 0 ' 点击 INT NOT NULL DEFAULT 0 ' 时间 DATETIME DEFAULT GETDATE() ' 内容 TEXT ' 邮件通知 BIT DEFA]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[组件对象开发Web应用的实例分析]]></title>
    <link>http://im.vc/web/asp/2011/0822/61684.html</link>
    <description><![CDATA[（转载计算机世界） 夏长虹 童亮 陈文博 一． 应用实例的分析与开发 ---- 我们以学籍管理系统为背景，基于Windows DNA的思想，开发了一套应用系统。在该系统中，有关教务学籍的事务逻]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[remote script文档(转载自微软)(九)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61683.html</link>
    <description><![CDATA[文档: 等待方法 终止当前正执行的客户脚本，直到指定调用对象的异步 remote scripting 调用完成。 语法 co.wait() 参数 co 执行 remote scripting 调用而生成的调用对象。 说明 调用该方法将把一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61682.html</link>
    <description><![CDATA[' 打开数据库 Set Con = Server.CreateObject(ADODB.Connection) Con.Open asp , application(ConASP_RuntimeUserName) , Application(ConASP_RuntimePassWord) Set RecBBS = Server.CreateObject(ADODB.RecordSet) Set RecReply = Server.CreateObject(]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何实现动态添加Html文档中Form项]]></title>
    <link>http://im.vc/web/asp/2011/0822/61681.html</link>
    <description><![CDATA[大家好，今天和大家谈谈如何用asp来实现动态的添加Html文档中Form项的问题。如果你对Html比较熟悉的话肯定知道有个form/form的HTML标记。在form与/form之间有诸如类型(type)为Text、PassWord、]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP3.0给我们带来的新技术之一]]></title>
    <link>http://im.vc/web/asp/2011/0822/61680.html</link>
    <description><![CDATA[Data shaping（又可以被称为分层记录集） 如果你对access非常熟悉的话，它就类似与其中的子表。在你使用VB 进行数据库开发的时候是你的最佳选择。 这种技术有很强大的运用场合，特别]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （一）（推荐）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61679.html</link>
    <description><![CDATA[邮件列表（Mailing List）是当前最受欢迎的网络服务之一。本文通过一个示例系统的建设，介绍在asp环境下邮件列表功能的实现方法。 ChinaByte网络学院的《java Mail API及其应用》一文介绍]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(三)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61677.html</link>
    <description><![CDATA[先要给出一个表单，能够让网友输入注册信息，这些是HTML的内容，且放在一边，我们来仔细看看具体实现注册的asp脚本。 ' 将数据中的单引号改成两个单引号，并且在前后加上单引号]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(四)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61676.html</link>
    <description><![CDATA['============================== Case Write '============================== ' 发表文章 % TABLE align=center border=0 cellPadding=7 cellSpacing=0 width=650 TR TD class=menu PA href=/飞林庄/A-gt;A href=%= asp_FILE_NAME %经验交流/A/P]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （二）（推荐）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61675.html</link>
    <description><![CDATA[为最终用户提供的功能主要由一个HTML文件和两个asp文件提供，它们负责接受用户的订阅申请以及退出邮件列表申请。 用户的个人信息在图1所示的登记表单中输入，其实现文件是homepa]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(四)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61674.html</link>
    <description><![CDATA[文章显示模块 前面说过，一片具体的文章是分属在看板和主体之下的。因此显示文章也要经过看板列表和主体列表这两页面后，才能得到特定主题下文章的列表。 下面先来看看看板列]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(五)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61673.html</link>
    <description><![CDATA['================================= Case Modify '================================ ' 修改文章 Which = Request(Which) WhichID = GetID( Which ) If Left( Which , 1 ) = E Then Table = bbs Else Table = bbsreply WrongMsg = If Request(Modify) =]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （三）（推荐）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61672.html</link>
    <description><![CDATA[在访问管理页面之前必须经过身份验证。本实现中我们用图3所示的secure.htm页面供管理员输入身份识别码，若用户输入值非空则用Cookies来保存它。执行管理任务的页面是admin.asp，每当用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(五)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61671.html</link>
    <description><![CDATA[qBoard.asp列出了某个版面下的所有的主题，在点击了主题名称后就会进入相应的主题文章列表。这个列表的是由qTopic.asp这个ASP脚本来实现的。Qtopic.asp的代码在本质上几乎和qBoard.asp没有区]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （四）（推荐）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61670.html</link>
    <description><![CDATA[最后要实现的功能是邮件的编辑和发送。这部分功能由Email_List.asp文件提供，其界面如图6所示。接下来我们就来分析这个文件。 Email_List.asp的内部工作过程和edit_record.asp很类似。管理员]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(六)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61669.html</link>
    <description><![CDATA[文章发表模块只有两个页面，一个是前面提到的用来提供输入表单的submit.asp，还有一个是用来处理表单输入的subresult.asp。前面的那个页面很简单，基本上就是一个HTML表单，没有什么好]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(六)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61668.html</link>
    <description><![CDATA[% '===================================== Case Adduser '===================================== ' 添加用户 '============== Userid = Trim(Request(Userid)) PassWord = Trim(Request(Password)) Confirm = Trim(Request(Confirm)) Email = Trim(Requ]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(七)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61667.html</link>
    <description><![CDATA[这儿或许是我们这个论坛的核心之所在，但它实现起来也没有什么特别的地方。还是那些老东西：表单处理，数据库查询，在用asp把他们有机的结合起来。 当进入了文章审阅模式（前面]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中如何限制同一表单被多次提交！！！！好东西]]></title>
    <link>http://im.vc/web/asp/2011/0822/61666.html</link>
    <description><![CDATA[在Internet上我们每天都会遇到数不清的表单，也看到其中大部分并没有限制用户多次提交同一个表单。缺乏这种限制有时候会产生某些预料不到的结果，如重复订阅邮件服务或重复投票]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过asp入侵web server,窃取文件毁坏系统]]></title>
    <link>http://im.vc/web/asp/2011/0822/61665.html</link>
    <description><![CDATA[本文主要叙及有关asp/iis的安全性问题及其相应对策，不提倡网友使用本文提及的 方法进行任何破坏，否则带来的后果自负 通过asp入侵web server,窃取文件毁坏系统，这决非耸人听闻...]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(八)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61664.html</link>
    <description><![CDATA[使用session来保持对斑竹的身份验证，这必须要求客户端浏览器的cookie被打开了。因为Session是通过cookie来实现的。在这儿，把看板ID赋给Session变量beenthere，表明斑竹已经通过了身份验证]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[了解MSMQ，控制ASP进程 （一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61663.html</link>
    <description><![CDATA[我们在使用 asp 程序时常常会遇到这些情况：某个进程花费了过长的时间而导致在客户端过期、访问者已经放弃了对你的网站的访问而离开去了别的网站、或你的服务器上阻塞了大量的]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软dvwssr.dll后门]]></title>
    <link>http://im.vc/web/asp/2011/0822/61662.html</link>
    <description><![CDATA[涉及程序： MS IIS server/Frontpage Ext Server 描述 微软开发的两个动态库存在后门允许用户查看asp文件源程序和下载整个网站 详细 随IIS和Frontpage Extention server而来的动态库程序，存在后门，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[了解MSMQ，控制ASP进程 （二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61661.html</link>
    <description><![CDATA[在运用程序中 MSMQ 可以有很多的运用，但是最普遍的运用是卸载另一个线程中的进程。 ( 例如和 MSMQ 在同一台机器上的 IIS) 或则是另外一台机器上的 IIS. 通过卸载这些阻塞的进程，就能]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理二进制数据]]></title>
    <link>http://im.vc/web/asp/2011/0822/61660.html</link>
    <description><![CDATA[我们在使用数据库时,有时会用到图像或其它一些二进制数据,这个时候你们就必须使用getchunk这个方法来从表中获得二进制大对象,我们也可以使用AppendChunk来把数据插入到表中. 我们平时]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP加密算法加密你的数据（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61659.html</link>
    <description><![CDATA[简介 首先简单介绍一下有关加密的背景。由于美国禁止几种密码算法的对外出口的 加密位数（例如SSL的40位加密限制），本文将介绍一种asp可以使用的简单字符加密算法， 而不是那些]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(一)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61658.html</link>
    <description><![CDATA[现在网上的论坛遍地都是，但可能你对一些论坛的内容感到很厌烦，大家好像都有在论坛上聊天的毛病。往往需要在无数的垃圾中来寻找想要的内容，确实是费时费力，到后来，就都不]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用数据源打开数据库（DSNless connection)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61657.html</link>
    <description><![CDATA[每一个需要联结数据库的程序，首先必须在服务器上打开它。这里有许多的办法！ 使用系统数据源（DSN） 这个就必须在服务器上设置。这是数据访问最好最快的方法。因为它只需在服]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP加密算法加密你的数据（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61656.html</link>
    <description><![CDATA[在第一部分，讨论了如何生成密钥，下面将介绍如何使用这个密钥来加密和解密一个 字符串。 下面的代码就是能够同时实现这个功能的函数 Crypt.asp文件 % Dim g_Key Const g_CryptThis = Now is]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技术在论坛中的运用(二)（吐血推荐！！！！）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61655.html</link>
    <description><![CDATA[对于论坛或者留言板，实现起来有一般两种方法：用文件或者数据库。相对而言，用数据库要简单高效一些，能够对论坛进行更好的控制，也能够对数据提供一些验证和保护。 这儿使用]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室实现私聊(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61654.html</link>
    <description><![CDATA[作者:网络之门 几个要好的网友在聊天室里闲聊的时侯，总会遇上有些话题是不想同一聊天室内别的聊友看见的，那么聊天室支持悄悄话功能将是什分有必要的了，实现悄悄话的方法很]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Recordset对象方法详解]]></title>
    <link>http://im.vc/web/asp/2011/0822/61653.html</link>
    <description><![CDATA[Recordset对象方法 Open方法 recordset.Open Source,ActiveConnection,CursorType,LockType,Options Source Recordset对象可以通过Source属性来连接Command对象。Source参数可以是一个Command对象名称、一段SQL命令、一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大部分的ADO的错误码对应的含义]]></title>
    <link>http://im.vc/web/asp/2011/0822/61652.html</link>
    <description><![CDATA[除了在 Error 对象和 Errors 集合中说明的提供者错误之外，ADO 本身也将错误返回到运行时环境的异常处理机制之中。使用编程语言的错误捕获机制（如 Microsoft#174; Visual Basic#174; 中的 On]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[好东西，翻页程序，大家可以参考]]></title>
    <link>http://im.vc/web/asp/2011/0822/61651.html</link>
    <description><![CDATA[%language=vbscript set conn=server.createobject(adodb.connection) conn.open driver={sql server};server=luo;uid=sa;pwd=;database=zszl set rs=server.createobject(adodb.recordset)% %pgsize=5 page=request.querystring(page) sql=select * from tes]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不能ASP图像组件来生成图像的ASP计数器程序(三)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61650.html</link>
    <description><![CDATA[data1(3,6,0)=0 data1(3,6,1)=0 data1(3,6,2)=0 data1(3,6,3)=0 data1(3,6,4)=0 data1(3,6,5)=0 data1(3,6,6)=0 data1(3,6,7)=1 data1(3,5,0)=0 data1(3,5,1)=0 data1(3,5,2)=0 data1(3,5,3)=0 data1(3,5,4)=0 data1(3,5,5)=0 data1(3,5,6)=0 data1(3,5,7)=1]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室实现私聊(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61649.html</link>
    <description><![CDATA[作者：网络之门 聊天室程序是一个application和session对象结合性很强的asp程序。首先，它比较具有实时性，聊天速度太慢，那么没有人会喜欢的，而且在多人同时发言的时侯，如果程序处]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP产生象安装向导的主页]]></title>
    <link>http://im.vc/web/asp/2011/0822/61648.html</link>
    <description><![CDATA[如何使用asp产生象安装向导的主页 面临的主要问题何在： 1。界面和一个Windows Wizard完全一样，有Next和Back按钮 2。用户可以使用Back按钮回到以前的任何一步，并且能够改变以前任何一步]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61647.html</link>
    <description><![CDATA[这个功能要装上WINDOWS NT OPTON PACK 的SMTP SERVICE。 首先 Set mail = Server.CreateObject(CDONTS.NewMail)以呼叫SMTP Service的元件，然后设定： mail.To = 收件者E-Mail地址 mail.From = 寄件者的E-Mail地址 mail.Su]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室实现私聊(三)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61646.html</link>
    <description><![CDATA[作者:网络之门 上两节介绍了如何处理聊天室内的谈话内容以及悄悄话的特殊处理，至此。我们去看看谈话内容是如何在客户端显示出来的。请先看看我们的显示对话文件(top.asp) ＊top]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何取得数据库中表的字段信息之一]]></title>
    <link>http://im.vc/web/asp/2011/0822/61645.html</link>
    <description><![CDATA[若要取得数据库中表的字段信息，由以下RecordSet对象的属性可得知： ActualSize属性：字段的实际大小。 DefinedSize属性：定义字段的大小。 Type属性：字段类型，使用以下数字代表之： 文]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP进行网络打印功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61644.html</link>
    <description><![CDATA[%@ Language=VBScript % % Option Explicit Dim strSubmit 'Form中用来保存提交按钮的值 Dim strPRinterPath 'Form中保存网络打印机路径的值 Dim strUsername 'Form中用户名的值 Dim strPassWord 'Form中密码的值 Dim strM]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何取得数据库中表的字段信息之二]]></title>
    <link>http://im.vc/web/asp/2011/0822/61643.html</link>
    <description><![CDATA[接前一个例子： Connection 对象的Attributes属性：代表数据库连线的状态，由以下值相加，预设值为0： H00020000：正在呼叫CommitTrans。 H00020000：正在呼叫RollbackTrans。 State属性：显示对象的状]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室实现私聊(四)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61642.html</link>
    <description><![CDATA[群言 sense 我曾经做过一个比较复杂的聊天室，几乎拥有BBS聊天室的所有功能，但因为是用application做的，所以比较浪费资源。我觉得用数据库做更可靠，更简单。 可以设定这样的一个数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页计数器的程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61641.html</link>
    <description><![CDATA[网页计数器DIY 随着网络大行其道，网页计数器也流行起来。事实上大多数网站均有网页计数器，用以反映该网站的访问量。计数器的来源很广，Frontpage等网页编辑器自带了网页计数器，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现号码转换]]></title>
    <link>http://im.vc/web/asp/2011/0822/61640.html</link>
    <description><![CDATA[% '***** BEGIN FUNCTION AREA ***** ' Formats a given 10 digit number into a nice looking phone number ' Example: given strNumber of 8005551212 you get (800) 555-1212 Function FormatPhoneNumber(strNumber) Dim strInput ' String to hold our en]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页在线人数统计的做法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61639.html</link>
    <description><![CDATA[网络之门 在浏览网页的时侯，常常可以看见一些“当前网站上的人数是ＸＸＸ人”的在线人数同计。如何用ＡＳＰ来做一个呢？首先，分析一下它的做法，一般来说，这些线上人数统计]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP检索网站指定目录文件的算法与应用方向]]></title>
    <link>http://im.vc/web/asp/2011/0822/61638.html</link>
    <description><![CDATA[在我们许多网站中存在这样一个问题，就是链接的维护更新，这是一项工作量很大的工作，若不是的专门工作人员进行维护的大型网站，普通站点的站点更新维护工作基本上都成了一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP创建日志文件]]></title>
    <link>http://im.vc/web/asp/2011/0822/61637.html</link>
    <description><![CDATA[你是否有时想知道什么人访问你的站点，什么时间，ip地址等。下面我就这个问题向大家来阐述一下。这个例子使用文本文件来写入用户的信息创建一个logfile.asp放在每一个asp的页面的顶]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现网页BBS]]></title>
    <link>http://im.vc/web/asp/2011/0822/61636.html</link>
    <description><![CDATA[传统的网页BBS大多是采用CGI模式实现的，它的实现要求编程者既要掌握编程语言如Perl或C等，又要了解关于CGI模式的各项技术内容，因此要制作自己的网页BBS确实困难不小。asp（Active]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二十八条改善 ASP 性能和外观的技巧(1]]></title>
    <link>http://im.vc/web/asp/2011/0822/61635.html</link>
    <description><![CDATA[二十八条改善 asp 性能和外观的技巧 Len Cardinal，高级顾问，Microsoft Consulting Services George V. Reilly Microsoft IIS Performance Lead 改编自Nancy Cluts 的文章 开发人员技术工程师 Microsoft Corporation 200]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实验Recordset.Movenext,Recordset.Previous,Recorset...等移动记录]]></title>
    <link>http://im.vc/web/asp/2011/0822/61634.html</link>
    <description><![CDATA[我在实验Recordset.Movenext,Recordset.PRevious,Recorset.......等移动记录的时候遇到了困难. 我用access做后台数据库,通过一个查询条件查询得一个记录集,我想用一个表格实现记录的逐条浏览(不是一]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ＡＳＰ中用集合成批操作数据库]]></title>
    <link>http://im.vc/web/asp/2011/0822/61633.html</link>
    <description><![CDATA[我们知道，一般的关系数据库（如SQL Server、Oracle、access等）中的查询操作是支持集合操作的， 例如可以用“Update ATable Set Field1 = AValue where Field2 in (Value21,Value22)”来完成对数据 库的成批]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP主件中的安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61632.html</link>
    <description><![CDATA[Microsoft推出的asp以简单，易用，多功能，可扩充性等强大功能得到了网友和大多数网管的青睐，大有完全替代cgi的趋势，但是在这里也存在一些问题，如果在使用asp的话，你网络的安全]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO存取数据时如何实现留言记录的分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0822/61631.html</link>
    <description><![CDATA[我们知道：对于一个留言簿，如果我们只让上网者能看到自己的留言而看不到其他人的留言，那么这类留言簿也就只能适用于某些特殊的地方（例如“客户意见返馈表”或“投诉留言”]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不能ASP图像组件来生成图像的ASP计数器程序(一)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61630.html</link>
    <description><![CDATA[不能asp图像组件来生成图像的ASP计数器程序 这是我去年编的一个ASP程序，那时用惯了C语言，所以对Basic反而忘了，但由于觉得ASP很热门，所以试着编了这个程序，程序没经过优化，代码]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP建立站内搜索]]></title>
    <link>http://im.vc/web/asp/2011/0822/61629.html</link>
    <description><![CDATA[假如你拥有一个庞大的网站，内容又多，那么来访者往往很难找到自己所需要的东东，这时候你就需要一个站内搜索来帮助来访者更快的找到索要的资料了！现在你就可以用asp轻易的实]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中常见的错误80004005信息和解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61628.html</link>
    <description><![CDATA[作者：BatMan 错误信息（错误信息我不用翻译成中文了吧，呵呵，大家谅解） Microsoft OLE DB PRovider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft access 97 Driver] The Microsoft Jet database engine]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不能ASP图像组件来生成图像的ASP计数器程序(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61627.html</link>
    <description><![CDATA[-----------------------counter.asp--------------------- %user=request.querystring(user)% !--#include file=header-- % set fsFilesys=CreateObject(Scripting.FileSystemObject) set myText=fsFilesys.OpenTextFile(Server.MapPath(/explorer/)/counter]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP规划聊天室]]></title>
    <link>http://im.vc/web/asp/2011/0822/61626.html</link>
    <description><![CDATA[合肥 程双明 经 常 在Internet 上 冲 浪 的 网 友 恐 怕 很 少 有 人 没 有 去 过 聊 天 室 胡乱神聊。 你 只 要 稍 微 留 意 一 下 就会 发 现 这 些 聊 天 室 大 多 是 用CGI 程 序 或 者 用ja]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现一个真正的注册页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/61625.html</link>
    <description><![CDATA[沙滩小子 （一），设定注册页面的外观： 在这个例子中涉及了五个页面，其中有三幅是一般的htm文件，另外的两幅是asp文件，在这里制作利用的工具是frontpage98，但是大部分的asp代码还]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Internet/Intranet编程常见问题]]></title>
    <link>http://im.vc/web/asp/2011/0822/61624.html</link>
    <description><![CDATA[基于asp技术开发Internet/Intranet上的MIS系统是非常方便的，首先是它借用了ADO技术和概念，同时通过ODBC访问数据库，达到了充分的灵活性和多平台性，另外，由于ASP利用VBS和JS脚本语言，]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现网页保密的两种方法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61623.html</link>
    <description><![CDATA[作者：胡舜良 本 人 在 维 护 公 司 内 部 网 站 时 碰 到 一 个 实 际 问 题 — —MIS 主 管 要 求 将 一 些 技 术 文 件 放 在 网 页 上， 且 只 能 让MIS 的 员 工 浏 览。 这 就 涉 及 到 如]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单聊天室的建立.(供学习参考)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61622.html</link>
    <description><![CDATA[沙滩小子 经过一个阶段的asp学习,下面我们结合所学过的内容建立一个最简单的聊天室,虽然很简单,但是大家可以通过他来掌握一个聊天室建立的基本过程,并且可以不断的完善其功能.]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之一]]></title>
    <link>http://im.vc/web/asp/2011/0822/61621.html</link>
    <description><![CDATA[更新每天新闻内容，对webmaster们来说是一件很头痛的事，首先，收集了大量的新闻资料后，还必须制作大量的网页，每天大大小小的国际新闻，国内新闻，ＩＴ新闻，可真够你累的。最]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0 新特色先睹为快（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61620.html</link>
    <description><![CDATA[如果你现在正在使用Win2000和IIS5.0的话，那么就可以体会到asp 3.0 带来的新改变了。。。 ASP 3.0相对于ASP 2.0(就是IIS 4.0中的asp版本)并没有特别大的改动。 但是它也带来了一些很有特色的加]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp画的五星红旗（bmp格式）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61619.html</link>
    <description><![CDATA[程序代码 % Option Explicit Class FiveStarredFlag PRivate Width Private Height Private Filler Private SizeImage Private FileSize Private BitMap() Private Sub Class_Initialize Height = 200 Width = 300 Filler = (32 - Width Mod 32) Mod 32 S]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之二]]></title>
    <link>http://im.vc/web/asp/2011/0822/61618.html</link>
    <description><![CDATA[（二）添加和管理每天的新闻内容 当进行了新闻提交后，则交由一个名为addnew.asp的asp程序来对新闻内容进行处理，以便分类和保存，为了显示清析，我们每提交一条新闻，下面的那个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0 新特色先睹为快（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61617.html</link>
    <description><![CDATA[本文中将介绍asp 3.0中的一个全新的内置对象ASPError对象. ASPError Object 这个新增的，内置与ASP 3.0中的对象提供了一个以往版本中没有的 专门用来处理错误的对象，这样，我们来操纵错误]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松打造ASP计数器]]></title>
    <link>http://im.vc/web/asp/2011/0822/61616.html</link>
    <description><![CDATA[以下介绍用数据库实现简单计数器 '下面存为count.asp % Set conn=Server.CreateObject(ADODB.Connection) conn.Open driver={Microsoft access Driver (*.mdb)};dbq= Server.MapPath(count.mdb) % %on error resume next% %sql=upd]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS5 + ADO 2.5新先睹为快技术（一）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61615.html</link>
    <description><![CDATA[在IIS5(就是安装了Win2000)中自带了新的ADO 2.5版本尤其 增加了对xml技术的支持，并且带入了许多崭新的技术，这些技术可以 帮助我们实现以前必须要依靠组件或者其它技术才能够实现的功]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之三]]></title>
    <link>http://im.vc/web/asp/2011/0822/61614.html</link>
    <description><![CDATA[（三）把新闻代码插入你的页面 最好的新闻发布，当然是为网站本身定做的，那样才能与主页风格一致，但如此一来，新闻发布系统有缺乏了通用性了，不能移值到别的网站上使用，有]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS5 + ADO 2.5新先睹为快技术（二）]]></title>
    <link>http://im.vc/web/asp/2011/0822/61612.html</link>
    <description><![CDATA[这里要介绍第二个IIS5 + ADO 2.5的新特点： ADO中新增加了一个Stream对象。。。 顾名思义，Stream对象可以将服务器上的任何文件用流的方式打开来读写。。。 当然读取后的结果是写入一个]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之四]]></title>
    <link>http://im.vc/web/asp/2011/0822/61611.html</link>
    <description><![CDATA[紧接上节，我们的新闻系统已能完成日常的新闻在线添加，删除等的功能，但这还是不足够的，有的用户可能需要查找一下过往某一专题内容的相关新闻条目，而一个比教完善的新闻系]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用 Microsoft Access 和 Active Server Pages 加密你的页面]]></title>
    <link>http://im.vc/web/asp/2011/0822/61609.html</link>
    <description><![CDATA[这是一个非常简单的加密程序，大家自己看看！ % userid = Request(userid) userpass = Request(userpass) Set conn = Server.CreateObject(ADODB.Connection) DBPath = Server.MapPath(userinfo.mdb) conn.Open driver={Microsoft acces]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WINDOWS 2000搭載ASP3.0和IIS5.0]]></title>
    <link>http://im.vc/web/asp/2011/0822/61607.html</link>
    <description><![CDATA[相信大部分的人目前所用的asp版本都是搭載在IIS3.0或IIS4.0中的ASP2.0,伺服器平台也多是NT4.0,隨著WINDOWS 2000 即將在二月十七號問世,由於之前許多雜誌媒體都曾經報導過有關WINDOWS 2000在伺服]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统一]]></title>
    <link>http://im.vc/web/asp/2011/0822/61606.html</link>
    <description><![CDATA[在目前的网站统计系统决大部分都是CGI的，但编写起来特别复杂，而asp学起来简单，更有和数据库结合的优点，所以结合自己曾经做过的网站统计系统，和大家探讨一下ASP编写网站统计]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统二]]></title>
    <link>http://im.vc/web/asp/2011/0822/61604.html</link>
    <description><![CDATA[1。取得用户的操作系统。 在asp中使用如下语句可以得到访问者的http_user_agent字符串。 Dim StrUserAgent StrUserAgent=Request.ServerVariables(HTTP_USER_AGENT) 这个字符串一般是如下格式： Mozilla/4.0 (co]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Agent+ASP技术制作语音聊天室]]></title>
    <link>http://im.vc/web/asp/2011/0822/61603.html</link>
    <description><![CDATA[用Agent+asp技术制作语音聊天室 --------------------以下为程序内容,按文章中出现的顺序分块排序 !--定义AgentControl-- OBJECT classid=clsid:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F codeBase=#VERSION=2,0,0,0 id=Agent /]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS 5.0新功能]]></title>
    <link>http://im.vc/web/asp/2011/0822/61602.html</link>
    <description><![CDATA[Windows 2000的IIS(Internet Information Services) 5.0提供甚麼樣的新功能呢？ IIS 5.0新功能如下： l 安全性上：包括摘要式驗證、整合的Windows驗證、SGC (Server-Gated Cryptography ) 、Microsoft Certificate Ser]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统三]]></title>
    <link>http://im.vc/web/asp/2011/0822/61601.html</link>
    <description><![CDATA[设计表结构是一项极其重要的工作，它的合理与否与程序的编制紧密相关。 一个网站统计系统应该有一个用户表，统计值表。 这个用户表也就是保留注册用户信息的表，统计值表就是]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络开发之编程技巧之一(有效验证用户的登录)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61599.html</link>
    <description><![CDATA[在做网络关键事务的应用开发中，特别是有关有特定面向性的应用开发时，我们需要考虑的问题要比单机编程多得多. 这些因扰主要是来自于几方面: 首先，是所有基于WEB的应用都是建立]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统四]]></title>
    <link>http://im.vc/web/asp/2011/0822/61598.html</link>
    <description><![CDATA[本文只做方法探讨。 ----------------- 能采集数据我们都能采到了，那么我们就开始编制asp的统计页面。 这一页我们叫计数页，counter.asp 这段asp代码我们需要让它按如下的流程进行采集数]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化MICROSOFT ACCESS提高速度]]></title>
    <link>http://im.vc/web/asp/2011/0822/61596.html</link>
    <description><![CDATA[摘要 这篇文章介绍了在设计、编写和实现Microsoft access 数据库应用程序时为保证拥有最高速度而需要注意的几点。 介绍 作为一名数据库程序员，你的主要任务是让你的用户能快速地选]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Error '0115'的一些解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0822/61595.html</link>
    <description><![CDATA[asp Error '0115'的一些解决办法 总的看法： ASP Error 0115意味着你的asp中的一个组件调用失败，并且同时ASP 不能够从这个失败中获取更多的错误信息了。 Error 'ASP 0115' Unexpected error /scripts/f]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(1)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61594.html</link>
    <description><![CDATA[我现在在做asp的安装程序，这样可以方便用户的使用。我使用的InstallShield版本是InstallShield PRofessional—Standard Edition6.3。 我没有用过这个东东，问题如下： 问题一 通过Project Wizard-gener]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DataList控件开发一个简单的留言本程序]]></title>
    <link>http://im.vc/web/asp/2011/0822/61592.html</link>
    <description><![CDATA[%@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO % Html Body BgColor=White H3DataList 控制元件HR/H3 div id=Message runat=server/div Form runat=server table cellspacing=0 cellpadding=0 width=776 border=0 tr td width=]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(4)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61591.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---删除邮件时调用的文件(mail_PRc.asp) %@ Language=VBScript % % '************************************* '这个文件是删除邮件时调用的 '作者：awayeah '邮箱：]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版删除选中的消息deletemessage.asp]]></title>
    <link>http://im.vc/web/asp/2011/0822/61588.html</link>
    <description><![CDATA[% response.buffer=true % html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title删除消息/title/head body % id=request(id) id=split(id,,) page=clng(request(page)) Set conn = Server.CreateObject(ADODB.connection) PR]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个免费的邮件列表源程序(二)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61572.html</link>
    <description><![CDATA[ShowSource.asp %@ Language=javaScript % !--#include file = include/SetGlobals.asp-- % // get the page to display from the URL var sPage = + Request.QueryString ( page ); // make sure it's a page we allow them to view! switch ( sPage ) { cas]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现对Web搜索引擎Index Server的访问]]></title>
    <link>http://im.vc/web/asp/2011/0822/61568.html</link>
    <description><![CDATA[摘要：IndexServer是专门为企业Web网站设计的专业搜索引擎，传统的访问方法HTML/IDQ/HTX由于固有的特性，缺乏灵活性。本文介绍用asp实现对IndexServer访问的两种方法，以及如何实现复杂查询]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(三)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61566.html</link>
    <description><![CDATA['============================= Case Content '============================= ' 显示内容 If Request(KeyWord) Then KeyWord = Request(Keyword) Else KeyWord = % TABLE align=center border=0 cellPadding=1 cellSpacing=0 width=650 TR TD class=men]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全文本检索的应用(2)]]></title>
    <link>http://im.vc/web/asp/2011/0822/61564.html</link>
    <description><![CDATA[CONTAINS 语法 我们通常在 WHERE 子句中使用 CONTAINS ，就象这样：SELECT * FROM table_name WHERE CONTAINS(fullText_column,'search contents')。 我们通过例子来学习，假设有表 students，其中的 address 是全文本]]></description>
    <pubDate>2011-08-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp实现的代码批量修改程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61562.html</link>
    <description><![CDATA[是因工作需要做的一个批量修改代码的小东西，拿出来与大家分享 目前可以处理的文件类型：.asp .inc .htm .html 具体类型可自行修改添加 程序实现的功能：将源目录下的文件批量修改后]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件的数据库的备份与还原]]></title>
    <link>http://im.vc/web/asp/2011/0821/61561.html</link>
    <description><![CDATA[看过数据库的备份与还原。大多数都是用组件来完成的。其实可通过sql语句来完成。 由于时间关系，未对参数进行验证和界面美化。代码仅供参考。 共计4个文件：下载地址：http://ad]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASPJPEG组件制作图片的缩略图和加水印]]></title>
    <link>http://im.vc/web/asp/2011/0821/61560.html</link>
    <description><![CDATA[aspJPEG是Persits出品的共享软件，试用期为30天，您可以在这里下载：http://www.persits.com/aspjpeg.exe。最新版本号是1.3 ASPJPEG是一款功能相当强大的图象处理组件，用它可以轻松地做出图片的缩]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[各种存储过程使用指南]]></title>
    <link>http://im.vc/web/asp/2011/0821/61559.html</link>
    <description><![CDATA[%@ Language=VBScript % % '---开始链接数据库 Dim strConnString strConnString = driver={SQL Server};server=songhp;uid=sa;pwd=;database=XVZDemo set Conn = Server.CreateObject(ADODB.Connection) Conn.Open strConnstring '---结束链接数]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Delphi编写组件封装asp代码的基本步骤]]></title>
    <link>http://im.vc/web/asp/2011/0821/61558.html</link>
    <description><![CDATA[如果你想脱离asp爱好者的水平，那么你就应该学会为asp编写组件。我在google上搜索了一下，Delphi编写asp组件的文章一共就几篇，所以今天写了这篇Delphi编写asp组件的基础文章，希望对新]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解密ASP源代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61557.html</link>
    <description><![CDATA[从网上兴致冲冲地下载了asp源代码,准备学习研究的时候.一打开文件,天书般的加密代码.很让人郁闷吧 :( 在网上是找到了解密的方法,得一个文件挨一个文件地打开,复制,粘贴,解密,再复制]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[采用XMLHTTP编写一个天气预报的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61556.html</link>
    <description><![CDATA[本人就职于一个本地门户网站，每天网站上的天气都得更新。久而久之感到相当麻烦，于是写了一个定时的新闻小偷，帖出来大家参考一下系统要求: 支持fso, 服务器UDP TCP/ip 没有屏蔽]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[菜鸟详听ASP中也能解压缩rar文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61555.html</link>
    <description><![CDATA[文/陈程 有没有想过在线解压缩压缩文件呢？呵呵，有时上传一个压缩包以后，利用asp程序解压缩的确很方便，尤其是经常更新网站的站长们，由于文本文件压缩比率大，所以采用压缩]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现多域名同一空间的处理实例]]></title>
    <link>http://im.vc/web/asp/2011/0821/61554.html</link>
    <description><![CDATA[以这两个域名为例： http://www.knowsky.com/ http://code.knowsky.com/ 这两个域名都是绑在同一个空间上，哈，但会跳到不同的目录，不是在IIS设置上实现的，只是一小段asp代码，哈，。。。给出]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XmlHttp异步获取网站数据的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61553.html</link>
    <description><![CDATA[net_lover [原作] 本文放在这里，算作一个备份吧。 script var oDiv var xh function getxml() { oDiv = document.all.m oDiv.innerHTML = 正在装载栏目数据，请稍侯....... oDiv.style.display= xh = new ActiveXObject(]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Flash+ASP实现电子互动地图在线标注功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61552.html</link>
    <description><![CDATA[由于电子互动地图的信息量太大，完全可以通过客户端的广大操作者一同完成海量的标注工作，这样就必须实现在线标注的功能。而这样的功能单独依靠Flash本身是无法实现的。我们可]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp+XmlHttp实现RssReader功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61551.html</link>
    <description><![CDATA[style body {margin:10px;background-color:#ffffff;margin-top:6px;} form{margin:0px;} * {font:12px tahoma;line-height:140%;color:#000000} .title {font-weight:bold;color:red;} .time {font:10px;color:#999999;} a {text-decoration:none;color:blue]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP的收发文管理系统的设计与实现]]></title>
    <link>http://im.vc/web/asp/2011/0821/61550.html</link>
    <description><![CDATA[摘要 网络办公已是现代企业发展的大势所趋。本文主要阐述了基于B/S结构的收发文管理系统的功能模块以及如何使用asp和SQL Server解决一些相关的技术，其中包括系统的安全性问题。 引]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无组件上载,带进度条,多文件上载]]></title>
    <link>http://im.vc/web/asp/2011/0821/61549.html</link>
    <description><![CDATA[Example.asp %@LANGUAGE=VBSCRipT CODEPAGE=65001% !--#include file=SundyUpload.asp-- % '此例子文档编码都是UTF-8,如果是其他编码的系统，请将编码转换为相应的编码，不然表单获取数据可能会乱码 Dim]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯ASP代码之公历转农历实现(含属相)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61548.html</link>
    <description><![CDATA[% 'Option Explicit '*********************************************** ' 类名称：ChinaDay ' 用途： ' 根据输入的日期计算该日期的农历天干地支及当年属相 ' 使用方法： ' 第一个参数为输入参数，不填写默]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP制作张扬个性的调查系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61547.html</link>
    <description><![CDATA[随着网络的普及，网上调查往往能达到较好的效果。在自己的个人站点上放一个趣味问题调查板，着实能为网站添色不少；况且通过调查结果你能更多更准确了解网友对自己站点的看法]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用QuickWAP组件结合ASP建设Wap站点]]></title>
    <link>http://im.vc/web/asp/2011/0821/61546.html</link>
    <description><![CDATA[用QuickWAP组件建设Wap站点教程-准备篇 首先我们要简单了解一下什么是QuickWAP，QuickWAP V1.0精简版是一款基于WAP1.2协议，利用VB6 开发的一个辅助asp+WML语言编写WAP网页的组件。 其次我们要安]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用XMLHTTP制作域名查询系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61545.html</link>
    <description><![CDATA[% On Error Resume Next Server.ScriptTimeOut=9999999 Function getHTTPPage(Path) t = GetBody(Path) getHTTPPage=BytesToBstr(t,GB2312) End function Function GetBody(url) on error resume next Set Retrieval = CreateObject(Microsoft.xmlHTTP) W]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯ASP代码之公历转农历实现(含属相)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61544.html</link>
    <description><![CDATA[!--#include File=clsDay.asp-- % Dim objChinaDay Dim sDay, sWeekDay, sChinaDay, sChinaYear,sChinaAni Set objChinaDay = New ChinaDay Call objChinaDay.Action(,sDay,sWeekDay,sChinaYear,sChinaDay,sChinaAni) Set objChinaDay = Nothing 'Respons]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决ASP导出查询结果到Excel中的身份证号问题]]></title>
    <link>http://im.vc/web/asp/2011/0821/61543.html</link>
    <description><![CDATA[近日在用asp把access数据库的查询结果导出为Excel文件时，出现一点问题，因为有一个字段是身份证号码，在导出的excel文件中，所有身份证号后3位全部变成0了！真是郁闷啊！网上查了一]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解ASP实现抓取网上房产信息]]></title>
    <link>http://im.vc/web/asp/2011/0821/61542.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRipT CODEPAGE=936% !-- #include file=conn.asp -- !-- #include file=inc/function.asp -- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd html head titleUntitled Docum]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据IP地址自动判断转向分站的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61541.html</link>
    <description><![CDATA[Function getipvalue(clientIP) '得到客户端 的IP转换成长整型，返回值getIpvalue On Error Resume Next Dim strIp, array_Ip strIp=0 array_Ip = Split(clientIP,.) If UBound(array_Ip)3 Then getIpvalue=0 Exit Function End If For i=0]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现网站智能分词搜索]]></title>
    <link>http://im.vc/web/asp/2011/0821/61540.html</link>
    <description><![CDATA[用asp实现搜索引擎的功能是一件很方便的事，可是，如何实现类似3721的智能搜索呢？比如，当在搜索条件框内输入“中国人民”时，自动从中提取“中国”、“人民”等关键字并在数据]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web在线代理(Asp版)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61539.html</link>
    <description><![CDATA[asp写Web代理软件，可以用作突破网关限制等，主要是为了配合Ajax使用的(因Firefox存在跨域访问的问题) 版本 0.1 作者 LlinZzi 功能 判断网站编码，支持任何语言 超连接自动转换 附带一个远]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp提供在线文章翻译的功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61538.html</link>
    <description><![CDATA[有时候想为我们的网页提供多语言支持，如果一种语言用一张网页来做实在太麻烦了，幸好Google提供了语言工具功能，下面介绍如何利用它来实现网页多种语言之间的转换。 作者：淘特]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现同网站不同目录帮定不同域名]]></title>
    <link>http://im.vc/web/asp/2011/0821/61536.html</link>
    <description><![CDATA[% select case request.servervariables(http_host) case knowsky.com Server.Execute(index.html) case code.knowsky.com Server.Execute(ut/index.html) case font.knowsky.com Server.Execute(utxiazai/index.html) case moban.knowsky.com]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文分词搜索,asp拆词搜索,asp智能分词搜索]]></title>
    <link>http://im.vc/web/asp/2011/0821/61535.html</link>
    <description><![CDATA[在做一个网站时，老板让实现像百度那样的搜索功能，以前asp实现的都是模糊搜索，匹配查询。没办法。到网上搜搜看，我发现网上提供的方法有这几种，一是建个词库，二是用分词组]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASPImage组件的实现过程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61534.html</link>
    <description><![CDATA[下载本文示例源代码 在阅读这篇文章之前，最好能够接触过以下几项 GDI+ 利用ATL生成组件 STL asp使用组件 aspImage是ServerObjects站点上非常好的一个组件，它可以使我们利用Asp实现很多对于]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP SCRIPT: 计数器(使用GrapShot组件)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61533.html</link>
    <description><![CDATA[这个程序将记数器的数字放在access数据库中,当然你也能用你希望其它的ODBC数据源.这个程序从URL中读取记数信息.如下: IMG src=id=MYTESTseq=defaultcells=7 参数 id 客户网页的标致(即用户名).每]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写图片计数器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61532.html</link>
    <description><![CDATA[在Internet上，用asp编写的计数器到处都是，本人觉得再在这里谈ASP编写计数器已没有多大意义。后来想想还是有必要谈一下，因为这不仅仅只是在谈计数器的编写，而是在向大家介绍A]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp制作显示IP图片]]></title>
    <link>http://im.vc/web/asp/2011/0821/61531.html</link>
    <description><![CDATA[本程序采用动网论坛格式数据库,可从动网论坛的data目录找到 数据库文件为:ipaddress.MDB '------------------------------------ 'File: Ip.asp !--#include file=conn.asp-- !--#include file=inc/config.asp-- %Respons]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp版域名查询的数据库接口]]></title>
    <link>http://im.vc/web/asp/2011/0821/61530.html</link>
    <description><![CDATA[% on error resume next PRivate d_exsit Dim Retrieval Dim Domain Dim TakenHTML Function GetURL(url) Set Retrieval = Server.CreateObject(Microsoft.xmlHTTP) With Retrieval .Open GET, url, False, , .Send GetURL = .ResponseText End With]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP版Google pagerank查询系统(非偷取第三方网站数据)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61529.html</link>
    <description><![CDATA[Google pagerank查询系统（非偷取第三方网站数据）带本程序示例三个页面,其中的远程获取类非常不错. Google pagerank查询页面演示:http://www.knowsky.com/tools/PR/ 三个页面: CLS_asphttp.asp % Class Fly]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现对ORACLE数据库的操作]]></title>
    <link>http://im.vc/web/asp/2011/0821/61528.html</link>
    <description><![CDATA[asp（Active Server Pages）是微软公司为开发互联网应用程序所提出的工具之一，ASP与数据库的联接一般通过ADO（Activex Data Object）来实现的，就象《计算机世界》2000年3月20日的《用ASP对SQL]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[flash结合asp制作出的显ip,版本,登陆时间,访问次数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61527.html</link>
    <description><![CDATA[也不知道算不算原创，反正是没有参照任何东西，自己动手做的。 首先需要2个asp文件，1个文本文件，还有就是1个swf文件了。 -------------------info.asp---------------------------- //这里是显示]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文件写入建立简单的网上调查]]></title>
    <link>http://im.vc/web/asp/2011/0821/61526.html</link>
    <description><![CDATA[相信有个人主页的网友，是不是很想知道访客是 怎么评价自己的作品，从而给自己一个改进方向， 下面的网上调查就是其中一例：） 你需要支持fso的空间，只需两个文件，一是处理]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP随机涵数生成100条8位字母和数字混合密码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61525.html</link>
    <description><![CDATA[%for i = 1 to 100% % Randomize pass= Do While Len(pass)8 '随机密码位数 num1=CStr(Chr((57-48)*rnd+48)) '0~9 num2=CStr(Chr((122-97)*rnd+97)) 'a~z pass=passnum1num2 loop '原创:www.devdao.com % %=pass%br %next%]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用防火墙自动对付CC攻击]]></title>
    <link>http://im.vc/web/asp/2011/0821/61524.html</link>
    <description><![CDATA[CC攻击原理 CC主要是用来攻击页面的.大家都有这样的经历,就是在访问论坛时,如果这个论坛比较大,访问的人比较多,打开页面的速度会比较慢,对不?!一般来说,访问的人越多,论坛的页面越]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中输出Excel文件实例一则]]></title>
    <link>http://im.vc/web/asp/2011/0821/61523.html</link>
    <description><![CDATA[在asp中利用Excel的一个方法是将excel文件作为一个数据库进行链接，然后的操作和对access数据库操作类似。但是这个方法不是总能有用的，应为excel不是关系型的数据库。对于一个固定格]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp调用C#编写的DLL发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61522.html</link>
    <description><![CDATA[一直想写一个asp能用发送邮件的服务器组件，不过用VC太麻烦了，一直都没都手。 前两天看一篇文章，说是asp怎么调用C#写的DLL，一试之下，果然可以，大喜，这下用来写一个发送邮件]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作Excel技术总结]]></title>
    <link>http://im.vc/web/asp/2011/0821/61521.html</link>
    <description><![CDATA[目录 一、 环境配置 二、 asp对Excel的基本操作 三、 ASP操作Excel生成数据表 四、 ASP操作Excel生成Chart图 五、 服务器端Excel文件浏览、下载、删除方案 六、 附录 正文 一、 环境配置 服务]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯Javascript打造的ASP组件|无组件上传，支持多文件及进度条]]></title>
    <link>http://im.vc/web/asp/2011/0821/61520.html</link>
    <description><![CDATA[有组件上传方式请右键FyUpload.sct注册，然后可以使用： Server.CreateObject(Rimifon.Upload) 创建对象。 无组件上传方式请使用 GetObject(script: + 组件地址) 创建对象，组件地址为硬盘绝对路径]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松打造ASP计数器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61519.html</link>
    <description><![CDATA[以下介绍用数据库实现简单计数器 '下面存为count.asp % Set conn=Server.CreateObject(ADODB.Connection) conn.Open driver={Microsoft access Driver (*.mdb)};dbq= Server.MapPath(count.mdb) % %on error resume next% %sql=upd]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP、PHP与javascript根据时段切换CSS皮肤的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61518.html</link>
    <description><![CDATA[asp、php与javascript根据时段切换CSS皮肤的代码 一个网站能切换不同的CSS风格大家应该都了解，像众所周知的腾讯在今年改版时也增加了切换皮肤的功能。根据时间自动调整站点风格是不]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数字、字母验证码（带随机杂点）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61517.html</link>
    <description><![CDATA[% Option Explicit Response.Buffer = True Response.Expires = -1 session.TimeOut=60 Call Com_CreatValidCode(Validatecode) Sub Com_CreatValidCode(pSN) ' 禁止缓存 Response.Expires = -9999 Response.AddHeader PRagma,no-cache Response.Ad]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP日历 实现遍历数据库取出对应的年月日数据]]></title>
    <link>http://im.vc/web/asp/2011/0821/61516.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRipT CODEPAGE=65001% % response.charset = UTF-8 session.codepage = 65001 session.timeout = 1440 server.scripttimeout = 9999 % !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DT]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp生成excel报表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61515.html</link>
    <description><![CDATA[1. 前言 报表打印通常是管理信息系统中的一个重要模块，而Excel凭借它功能强大、应用灵活、通用性强等的优势在报表打印中获得了广泛的应用。 最初的管理信息系统基本上是采用客户]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用纯ASP代码实现图片上传]]></title>
    <link>http://im.vc/web/asp/2011/0821/61514.html</link>
    <description><![CDATA[作者：追风 用asp编写网站应用程序时间长了，难免会遇到各式各样的问题，其中关于如何上传文件到服务器恐怕是遇见最多的问题了，尤其是上传图片，比如你想要在自己的社区里面实]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现远程批量文件改名]]></title>
    <link>http://im.vc/web/asp/2011/0821/61513.html</link>
    <description><![CDATA[对于网站设计者而言，时常处理大批量的文件是难免的，特别是图片和一些文本文本文件，更是经常处理。而由于网站大量文件的关系，对于同类型文件的命名，往往就直接采用带有一]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[“在线访客”的制作方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61512.html</link>
    <description><![CDATA[作者:旭旭(07idea) 时间:2003-01-30 E-Mail:kgd1999@21cn.com ======制作原理====== 方法就是当用户访问网页时将用户的信息添加进数据库里 在添加的同时,检查数据库里是否有该用户的在线记录,如 果]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中DLL的调试环境配置全攻略]]></title>
    <link>http://im.vc/web/asp/2011/0821/61511.html</link>
    <description><![CDATA[现在正在搞三层开发，用asp和VB6.0，但是现在苦于没有找到合适的方法来调试自己写的DLL文件，效率相当低。 我用了几种方法： 1.在IIS中选择卸载，然后用VB重新编译，覆盖掉原来的D]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp画的五星红旗（bmp格式）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61510.html</link>
    <description><![CDATA[程序代码 % Option Explicit Class FiveStarredFlag PRivate Width Private Height Private Filler Private SizeImage Private FileSize Private BitMap() Private Sub Class_Initialize Height = 200 Width = 300 Filler = (32 - Width Mod 32) Mod 32 S]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个实用的FSO]]></title>
    <link>http://im.vc/web/asp/2011/0821/61509.html</link>
    <description><![CDATA[count.asp: %Server.ScriptTimeout=300 id=Trim(Request.QueryString(id)) fc=Trim(Request.QueryString(fc)) if fc= then fc=FFFF00 bg=Trim(Request.QueryString(bg)) if bg= then bg=000000 bc=Trim(Request.QueryString(bc)) if bc= th]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何开发基于ASP的FLASH MX在线图象浏览器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61508.html</link>
    <description><![CDATA[Flash MX(FLASH6)的闪亮登场，又给了闪客们一个晕倒的理由，因为她的新面孔让我们激动不已。 一.先从MX的新功能说起 进入MX开发界面后，点击菜单条的Help=Samples,就会打开一篇网页，叶子]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数自动获取匹配文章标签（Tags）、关键字：ShowTags()]]></title>
    <link>http://im.vc/web/asp/2011/0821/61507.html</link>
    <description><![CDATA[程序代码 %@LANGUAGE=VBSCRipT CODEPAGE=65001% % option explicit response.charset = UTF-8 session.codepage = 65001 session.timeout = 1440 server.scripttimeout = 9999 '---------------------------------------------------- '功能: asp自]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现语音分时问候]]></title>
    <link>http://im.vc/web/asp/2011/0821/61506.html</link>
    <description><![CDATA[bgsound src=wen.mid loop=0 % dim weh If Time =#1:00:00 AM# And Time #6:00:00 PM# Then weh = bgsound src=1.mid loop=0 Else If Time #6:00:00 AM# And Time #9:00:00 PM# weh = bgsound src=2.mid loop=0 Else If Time #9:00:00 AM# An]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件上传图片到数据库中，最完整解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61505.html</link>
    <description><![CDATA[up.htm !--#include file=inc/domin.asp-- !--#include file=conn.asp-- html head title% =webname %/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=main.CSS type=text/css style type=t]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP图形计数器设计详解]]></title>
    <link>http://im.vc/web/asp/2011/0821/61504.html</link>
    <description><![CDATA[这里介绍一种不用CGI而设计出的漂亮的图形计数器。 这里分为三部分：1，建立图形文件。 2，建立数据库。 3，编写代码。 1，建立图形文件。 首先，用做图软件制作10个图形，用于显]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用函数：getpy() 汉字转为拼音]]></title>
    <link>http://im.vc/web/asp/2011/0821/61503.html</link>
    <description><![CDATA[% '取字段数据每个汉字的拼音首字母 Function getpychar(char) tmp = 65536 + Asc(char) If(tmp= 45217 And tmp= 45252) Then getpychar = A ElseIf(tmp= 45253 And tmp= 45760) Then getpychar = B ElseIf(tmp= 47761 And tmp= 46317) Th]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+VML+DB实现投票统计项目]]></title>
    <link>http://im.vc/web/asp/2011/0821/61502.html</link>
    <description><![CDATA[几个月前我看到过一位网友lshdic写的一篇用JS+VML的《使用 Vml 制作立体柱状投票统计图的完整程序》。 我觉得这个方法非常不错，可以不使用图片就生成统计图，现在就让我们一起来用]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP利用prototype和Google的weather api做天气预报]]></title>
    <link>http://im.vc/web/asp/2011/0821/61501.html</link>
    <description><![CDATA[利用PRototype和GOOGLE的weather api做天气预报 想拿prototype练练手，就用prototype做个天气预报吧。 Google Weather API 只支持美国地区使用邮政编码进行查询,例如: http://www.google.com/ig/api?hl=zh-cnwea]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP打造网站论坛DIY]]></title>
    <link>http://im.vc/web/asp/2011/0821/61500.html</link>
    <description><![CDATA[前言：现在网上的论坛到处都有，但不知您是否遇到过这样的情况：在杂乱无章的讨论信息中来寻找自己想要的内容，是一件很费费时费力的事情，到后来，您就都不想去看什么论坛了]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件实现文件上传/下载]]></title>
    <link>http://im.vc/web/asp/2011/0821/61499.html</link>
    <description><![CDATA['================================================================== ' ' 用asp实现无组件上传/下载文件 ' ' 功能简介 ' 将上传的文件数据保存到数据库中,可以处理表单中的多个上传文件的情况 ' 适用于各]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Jmail发信的实例,模块化随时调用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61497.html</link>
    <description><![CDATA[一个用jmail发信的过程，及使用方法. 发信时，直接调用这个过程就行了。 % dim str,HtmlBody HtmlBody=htmlbody bgcolor='red' topmargin='40'p align='center'I Love 2Yup!/p/html str=JmailSend( hello,ILoveYou, true]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个统计当前在线用户的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61496.html</link>
    <description><![CDATA[在做一个在线交流的网站时，有个问题很令我头疼，就是关于实时统计在线用户的问题，客户要求：统计当前在线人数、游客人数、会员人数、在线用户列表，包括游客、会员和管理员]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯ASP(VBscript)写的全球IP地址搜索程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61495.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRipT CODEPAGE=936% html head titleUntitled Document/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head body % dim finishgetip,showip,allip '/////////////////////////////////////////////////////]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用FSO把文本信息导入数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61494.html</link>
    <description><![CDATA[在开发WEB应用程序中，我们经常需要对文件系统中的驱动器、文件夹和文件进行处理，比如收集驱动器的相关信息；创建、添加、移动或删除文件夹和文件等。在VB6中新提供了一套称为]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件上传图片至SQLSERVER数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61493.html</link>
    <description><![CDATA[在无组件上传我刚试成功，所以提供代码给大家一起共享。 /*addemployee.asp */ html head title职工之家/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=../CSS/site]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VB中利用Word宏命令开发ASP组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61492.html</link>
    <description><![CDATA[作者：杨忠勋 专业：计算机软件开发及应用 语言能力：TOFEL633 GRE2140 Email:zhongxunyang@yahoo.com.cn 在Mis系统的实际开发中，我们有时需要将当前页面上报表的数据以Word文档的格式下载到本地]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XML+FSO+JS实现服务器端文件的选择]]></title>
    <link>http://im.vc/web/asp/2011/0821/61491.html</link>
    <description><![CDATA[首先在服务器端先创建一个程序可以生成xml文件，以返回客户端，（getfolder.asp） % 'written by Linzhang Chen ,2003-4-20 ' 转载请注明出处和保留此版权信息 response.write ?xml version=1.0 encoding=]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无刷新随时取得用户当前活动信息]]></title>
    <link>http://im.vc/web/asp/2011/0821/61490.html</link>
    <description><![CDATA[最终显示是这样的： 用户：billy 权限：管理员 时间[2004年1月21日 20:54:08] 停留[0小时0分钟] 空闲[0分钟12秒] 显示的BOTTOM.HTM文件 SCRipT language=javaScript !-- function bar() { var oxmlDoc = new ActiveXO]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数字和字母组合并生成图片的验证码祥解]]></title>
    <link>http://im.vc/web/asp/2011/0821/61489.html</link>
    <description><![CDATA[大家经常在网上登陆的时候经常会看到让你输入验证码，有的是文字的，有的呢是图片，比如chinaren.com校友录中留言的时候，我们就会看到数字图片验证码；网上关于数字文字验证码实]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写一个asp代码执行器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61488.html</link>
    <description><![CDATA[保存为runasp.asp运行。账号密码admin，登陆后输入代码就可执行了！！ % @ LANGUAGE=VBSCRipT % %Option Explicit response.buffer=true dim SpassWord,SUserName SUserName=admin Spassword=admin dim SQLMutiStr dim i dim]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DW+ASP 玩转动态二级菜单]]></title>
    <link>http://im.vc/web/asp/2011/0821/61487.html</link>
    <description><![CDATA[本人比较B，不懂得怎么样用视频来解决，只好用我这个让人糊里糊涂的话来写了。 一般情况下这种情况是来对二级的目录有用，对于现在网站流传的JS好多种，但都无外乎那些令像我这]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件上传图片至SQLSERVER数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61486.html</link>
    <description><![CDATA[在无组件上传我刚试成功，所以提供代码给大家一起共享。 /* addemployee.asp */ html head title职工之家/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=../CSS/sit]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[金额大小写转换的asp完全无错版本]]></title>
    <link>http://im.vc/web/asp/2011/0821/61485.html</link>
    <description><![CDATA[!--#include file=common.asp-- % dim tmpnum '从第一张页面传过来的小写金额 tmpnum=request(page1num) '调用并显示大写金额 response.write rmb(cdbl(tmpnum)) response.end % common.asp % Function rmb(num) num = FormatNumber]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP用JMail、CDO发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61484.html</link>
    <description><![CDATA[前一段时间有发过一个简单的jmail邮件发邮件的代码，今天就把这个代码做一个具体的注解，并增加了另外两个格式的代码，并举几个简单的例子： 首先是jmail.smtpmail的核心代码： % S]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP导出Excel数据的四种方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61483.html</link>
    <description><![CDATA[一、使用OWC 什么是OWC？ OWC是Office Web Compent的缩写，即Microsoft的Office Web组件，它为在Web中绘制图形提供了灵活的同时也是最基本的机制。在一个intranet环境中，如果可以假设客户机上存]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现有管理功能的ASP留言板]]></title>
    <link>http://im.vc/web/asp/2011/0821/61482.html</link>
    <description><![CDATA[今天我们来写一个有管理功能的留言板程序。所谓的管理功能，其实就是每条留言前有一个选择框，点中要删除的留言，或者点“删除所有留言”，就完成了批量删除。通过这一实例，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP学做一个在线调查]]></title>
    <link>http://im.vc/web/asp/2011/0821/61481.html</link>
    <description><![CDATA[关于在线调查大家一定不会陌生吧，给出一个问题和数个答案，让用户填写，然后把结果保存到数据库，自动进行统计，最后给出个统计的图。这期的跟我学做就来做一个在线调查系统]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用XSL和ASP在线编辑XML文档]]></title>
    <link>http://im.vc/web/asp/2011/0821/61480.html</link>
    <description><![CDATA[本文通过一个详细的例子，来阐述了在线编辑xml文档数据的方法。由于Netscape对XML的支持比较弱，因此，要实现跨平台的数据交换，数据的处理必须在服务器端进行。要编辑XML文档，首]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP + Serv]]></title>
    <link>http://im.vc/web/asp/2011/0821/61479.html</link>
    <description><![CDATA[!--#include file=md5.asp-- % '************************************************** '* 作者：awaysrain(绝对零度) * '* 完成时间：2003-10-10 * '* 测试环境：WIN2000SERVER，SERV-U 4.2-beta版 * '********************************]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP应用:用stream读文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61478.html</link>
    <description><![CDATA[前几天要写一个东西里面有用到读文件的。 可是我不想用fso，我怕有的空间不支持。 可是网络上找了半天没有找到一个不是用FSO写的。 还是自己做了一个。 我记得以前在做无组件上传]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp备份与恢复SQL Server 数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61477.html</link>
    <description><![CDATA[51windows（原作） 一个用asp备份与恢复SQL Server数据库的例子代码，希望对一些朋友有用。(注意：数据库使用中可能无法恢复) HTMLHEADTITLESQL Server 数据库的备份与恢复/TITLEmeta http-equiv=Co]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用客户端js实现汉字简体繁体转换]]></title>
    <link>http://im.vc/web/asp/2011/0821/61476.html</link>
    <description><![CDATA[HTML HEAD TITLE New Document /TITLE META NAME=Generator CONTENT=www.knowsky.com META NAME=Author CONTENT=www.knowsky.com META NAME=KeyWords CONTENT=www.knowsky.com META NAME=Description CONTENT=www.knowsky.com /HEAD BODY htm]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp实现的代码批量修改程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61475.html</link>
    <description><![CDATA[是因工作需要做的一个批量修改代码的小东西，拿出来与大家分享 目前可以处理的文件类型：.asp .inc .htm .html 具体类型可自行修改添加 程序实现的功能：将源目录下的文件批量修改后]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用FSO组件生成HTML页面]]></title>
    <link>http://im.vc/web/asp/2011/0821/61474.html</link>
    <description><![CDATA['共有两个页面index.htm是首页.程序比较简单，主要是用了asp里的文件操作对象。 !--index.htm------------------------------------------------------------------------------- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作XML文件的完整实例]]></title>
    <link>http://im.vc/web/asp/2011/0821/61473.html</link>
    <description><![CDATA[% '---------------------------------------------------------------- '程序简介: 完成asp语言对xml文档中指定节点文本的增加、删除、修改、查看 '入口参数: 无 '出口参数: 无 '---------------------------------]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp实现QQ在线查询]]></title>
    <link>http://im.vc/web/asp/2011/0821/61472.html</link>
    <description><![CDATA[编者(icech)按：这段程序的方法是利用xmlHTTP来读取腾讯网站的相应HTML代码获取QQ的头像，根据这个想法，我们还可以抓取很多其他网站的信息，如天气预报、新闻等等。 script language=j]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈TeeChart组件在ASP中的应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61470.html</link>
    <description><![CDATA[由于TeeChart VCL 版本广泛应用于多种开发环境并得到很好的认可，西班牙Steema Software SL公司于1997年10月又开发了TeeChart PRo ActiveX。对于B/S的开发模式无疑是一个好消息，由于它只需安装在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp隐藏文件路径实现防盗链]]></title>
    <link>http://im.vc/web/asp/2011/0821/61469.html</link>
    <description><![CDATA[如果我们知道一个静态文件的实际路径如：http://www.xx.com/download/51windows.pdf，如果服务器没有作特别的限制设置，我们就可以毫不费力的把它下载下来！当网站提供51windows.pdf下载时，怎]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个汉字转成拼音的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61468.html</link>
    <description><![CDATA[1.添加索引 2.遍历词典 % Set d = CreateObject(Scripting.Dictionary) d.add a,-20319 d.add ai,-20317 d.add an,-20304 d.add ang,-20295 d.add ao,-20292 d.add ba,-20283 d.add bai,-20265 d.add ban,-20257 d.add bang,-202]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用xmlhttp为网站增加股市行情查询功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61467.html</link>
    <description><![CDATA[一般情况下，如果我们想了解股市行情，必须登录专业股票网站，输入公司代码才能看到具体股价。其实，利用xmlHTTP协议，我们每个人都可以在自己的个人网站中提供股市行情详细情况]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XMLHTTP做一个自己特色的Google]]></title>
    <link>http://im.vc/web/asp/2011/0821/61466.html</link>
    <description><![CDATA[http://www.chaoshan.com/lazyboy/google/google.asp http://www.chaoshan.com/lazyboy/google/google.asp?keyWord=中华人民共和国 转自：动态网制作指南 www.knowsky.com 下载 http://www.chaoshan.com/lazyboy/google/google.rar]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二级域名原理以及程序，申请即可开通.]]></title>
    <link>http://im.vc/web/asp/2011/0821/61465.html</link>
    <description><![CDATA[要达到二级名的效果，必须一下条件以及流程： 1、必须有一个顶级域名，而且此域名必须做好泛解析并做好指向。 2、必须有一台独立的服务器。泛解析的域名指向该服务器。 3、在服]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用w3Sockets组件实现域名查询功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61463.html</link>
    <description><![CDATA[w3Sockets是写著名jmail邮件组件开发者开发的又一免费实用的asp组件。 需要下载的朋友可以在这里下载： http://www.dimac.net/FreeDownloads/dlstart.asp?PRoductID=2 下载后解压，运行SocketReg.exe注册组件]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP+XML架设在线考试系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61462.html</link>
    <description><![CDATA[利用asp + xml 架设在线考试系统 -------------此程序非本人原创-------- 使用这个在线的考试系统，我们能处理任何类型在线测试。 尽管我们一般是用传统方式实现，读者非常希望将。 如果]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Javascript+HTML仿造VB里的MonthView控件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61461.html</link>
    <description><![CDATA[html head titleMonthView Demo/title script language=javascript /***********************************程序功能：日期选择 特点 ：Javascript+HTML仿造VB里的MonthView控件 作者 ：ken 联系 ：boboshu@21cn.com 开发日期：20]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用xmlHttp结合ASP，实现网页的异步调用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61459.html</link>
    <description><![CDATA[通过xmlHttp和asp的结合，我们可以轻松完成网页的异步调用。 代码如下： 1.新建Display.asp(这是前台显示页面) 注意xmlhttp.readyState的4个属性 1:LOADING;2:LOADED;3:INTERACTIVE;4:COMPLETED %@ Language=VBS]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建免受FSO组件威胁虚拟主机]]></title>
    <link>http://im.vc/web/asp/2011/0821/61458.html</link>
    <description><![CDATA[现在绝大多数的虚拟主机都禁用了 asp 的标准组件：FileSystemObject，因为这个组件为 ASP 提供了强大的文件系统访问能力，可以对服务器硬盘上的任何文件进行读、写、复制、删除、改名]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[超长字符的智能分页]]></title>
    <link>http://im.vc/web/asp/2011/0821/61457.html</link>
    <description><![CDATA[大概在九九年做游戏网站的时候，就对文章的发布感到麻烦，不过那会儿玩asp不精。只是将就用着。在遇到长文件 10000 字时网页就是一大片长了。 去年，做一个通用的文章与新闻管理]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP项目中的通用条件查询模块]]></title>
    <link>http://im.vc/web/asp/2011/0821/61456.html</link>
    <description><![CDATA[一、提出问题： 在大型的asp项目中，都涉及到了条件查询这一功能。用户要求能够针对特定的字段进行查询。对于有些数据，是从多个表取出来的，因此也要能对多个表进行查询。 一]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现将上传图片到数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61455.html</link>
    <description><![CDATA[很久就想自己写一写程序了，不过由于赖就不想写我，今天刚好有空，所以写了这个小小的程序很容易一看就知道的，不多说了就此开始： 我们做一个上传的。数据据库的字段就id自动]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个为字符串中的网址加上链接的程序例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61454.html</link>
    <description><![CDATA[我们有时候可能会有这样的要求,如果我们输入了一段带有链接的文字,如:“ 今天，我访问了中央电视台的网站：http://www.cctv.com ”那么，我们希望能自动为我们的“http://www.cctv.com”这几]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Web页面执行客户端程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61453.html</link>
    <description><![CDATA[但必需客户端打开IE选项中的安全属情中的对没有标记为安全的ActiveX控件进行初始化和执行脚本 script function exec (command) { window.oldOnError = window.onerror; window._command = command; window.onerror =]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调用DirectX的组件实现的时钟]]></title>
    <link>http://im.vc/web/asp/2011/0821/61452.html</link>
    <description><![CDATA[下面的代码是调用的DirectX的组件实现的时钟。它有三根指针，会实时地随系统时间的改变而改变。 不过我没有做刻度，因为我觉得用程序画出来的刻度不漂亮，用photoshop画一口钟作为]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多图片上传到指定的目录并存到数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61451.html</link>
    <description><![CDATA[关于图片上传的例子在网上有很多文章和原代码。但是每次上论坛浏览帖子的时候都是看到很多网友对图片上传感到头疼和麻烦。其实这个问题也是曾经让我感到头疼。也看过了不少的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[dreamweaverMX通用分页代码研究]]></title>
    <link>http://im.vc/web/asp/2011/0821/61450.html</link>
    <description><![CDATA[DreamweaverMX已经正式发布了，Deamweaver4 + Deamweaver ULTRADEV 4 的组合使他成为当然的制做网页的首选工具，（好象做广告：） ) 好了，进入正题， 我在以前做网页的分页时候都是用自己写的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP页里面注册DLL的VBScript CLASS]]></title>
    <link>http://im.vc/web/asp/2011/0821/61449.html</link>
    <description><![CDATA[-----------------------------------------------ROOT1--------------------------------------- ******************************************************************************************* *使用本CLASS可以管理并在asp页里面注册你的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[下拉菜单输入,根据输入内容自动定位]]></title>
    <link>http://im.vc/web/asp/2011/0821/61448.html</link>
    <description><![CDATA[下拉菜单支持输入，并根据输入内容自动定位： 参考：演员发表于 10/23/2001 8:58:16 AM 的文章 “罗亭的可输入下拉框的解密简化版.”，在此特别感谢相关人等。 本文为这个下拉框增加了]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Agent+ASP技术制作语音聊天室]]></title>
    <link>http://im.vc/web/asp/2011/0821/61447.html</link>
    <description><![CDATA[用Agent+asp技术制作语音聊天室 --------------------以下为程序内容,按文章中出现的顺序分块排序 !--定义AgentControl-- OBJECT classid=clsid:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F codeBase=#VERSION=2,0,0,0 id=Agent /]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文的无组件文件上传ASP函数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61446.html</link>
    <description><![CDATA[说明：持中文的无组件文件上传asp函数，由于ASP不支持二进制写入文件，所以存成文件时必须使用组件，本函数只提供截取上传文件的数据，可以写入到数据库。 SCRipT RUNAT=SERVER LANGUA]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp作品保护方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61445.html</link>
    <description><![CDATA[自从asp（Active Server Pages）问世以来，因其可以创建健壮易于维护、与平台无关的应用系统，ASP技术受到了越来越多网络程序员的喜爱，使用ASP从事WEB开发的人也越来越多。但ASP只是一种]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[汉字转化为拼音]]></title>
    <link>http://im.vc/web/asp/2011/0821/61444.html</link>
    <description><![CDATA[很多问题都是因为中文问题造成的 如文件名最好别用中文 现在的解决方法一般是产生一个ID,将这个ID做文件名 网页上如果url带汉字也经常出错 现在的解决方法一般用urlencode编码 现在用]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多表单域无组件文件上传的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61443.html</link>
    <description><![CDATA[最近经常有人问到这类问题,在此转贴一下,内容: 1。数据库表结构(access)： UserID:Text(保存上传文件的用户ID) FileContentType:Text(用来保存上传文件的类型，eg:application/msWord，主要用来使用户]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序界面的多语言支持]]></title>
    <link>http://im.vc/web/asp/2011/0821/61442.html</link>
    <description><![CDATA[可能有的web应用程序，需要多语言支持，例如，讨论组，既有中文界面，以适合国人使用的方便，又需要英文界面，以满足国际化的需要。我想，似乎没有必要为每一个语言都写一个版]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密處理使密碼更安全]]></title>
    <link>http://im.vc/web/asp/2011/0821/61441.html</link>
    <description><![CDATA[你是怎麼把密碼儲存到資料庫裡？是以純文字的方式？你可知道這對安全的危險性？當攻擊你網站的人能開啟資料庫瀏覽，以純文字方式存在資料庫裡的密碼一覽無疑，基於安全上的考]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个利用adsi得到局域网信息的asp文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61440.html</link>
    <description><![CDATA[%@ Language=VBScript % HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 titleADSI Domain browser/title /HEAD BODY !-- Author: Adrian Forbes -- % sDomain = Request(Domain) sComputer = Request(Computer) sGroup = Request(Group]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP智能搜索的实现]]></title>
    <link>http://im.vc/web/asp/2011/0821/61439.html</link>
    <description><![CDATA[用asp实现搜索引擎的功能是一件很方便的事，可是，如何实现类似3721的智能搜索呢？比如，当在搜索条件框内输入“中国人民”时，自动从中提取“中国”、“人民”等关键字并在数据]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP动态生成JavaScript的表单验证代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61438.html</link>
    <description><![CDATA[表单的验证是开发WEB应用程序中常遇到的一关。有时候我们必须保证表单的某些项必须填写、必须为数字、必须是指定的位数等等，这时候就要用到表单验证了，一般我们常用的表单验]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在线实时开通WEB及FTP源程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61437.html</link>
    <description><![CDATA[程序利用fso+SERV-U（2.x版本）实现： 1、注册文件index.htm html head title宁波科宇网——个人网页申请/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script language=javascript function CheckIf]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用Jmail.Message发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61436.html</link>
    <description><![CDATA[该段代码涉及到jmail v4.3的大部分常用方法。 包括邮件基本信息、身份验证、附件等。无需很多的修改就可以使用，也可以改成函数或过程。 % Dim JMail, contentId Set JMail = Server.CreateObject]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据需要动态include不同的文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61435.html</link>
    <description><![CDATA[受! #include file=filename.asp -- 宏限制 必须存在该文件并且会预先编译（不管前面是否加以条件） 经常有这样的要求，根据不同的需求要求include不同的文件 如各个人的不同设置，所以要求]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开辟一条自由ASP快车道]]></title>
    <link>http://im.vc/web/asp/2011/0821/61434.html</link>
    <description><![CDATA[微软的asp技术让动态网页技术从中国得到的铺天盖地般的普及。一说到ASP当然会联想到Windows，长久以来碍于微软公司的专利权和商业利益ASP只能的运行于微软的Windows之上。但是现在不]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让自定义文件下载支持断点续传]]></title>
    <link>http://im.vc/web/asp/2011/0821/61432.html</link>
    <description><![CDATA[自定义文件下载基本上用在以下几处 1.浏览器已知类型，如Avi,Doc等如果本地安装了关联程序就会自动在浏览器上打开 2.权限管理，有时候不是所有的人都允许下载，所以需要在下载的时]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站远程客户实现EXCEL打印功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61431.html</link>
    <description><![CDATA[在进行asp网站开发时，有时需在客户端调用MSSQL数据库的数据进行打印，若调用数据量小，可以通过在客户端运用FileSystemObject生成文件对象的方法实现打印，这里不再赘述。若需调用大]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 编程中20个非常有用的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61430.html</link>
    <description><![CDATA[asp编程中20个非常有用的例子 1.如何用Asp判断你的网站的虚拟物理路径 答：使用Mappath方法 palign=centerfontsize=4face=Arialb ThePhysicalpathtothisvirtualwebsiteis: /b/font fontcolor=#FF0000size=6face=]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成Word文档的又一方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61429.html</link>
    <description><![CDATA[在网上，利用asp生成Word文档的方法实在不少，最常见到的方法就是利用Word生成.dot的文档，再用Asp向.dot文档中传递宏，这种方法虽好，但实现起来非常复杂，而且不能循环生成表格。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB编写ActiveX DLL实现ASP编程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61428.html</link>
    <description><![CDATA[asp是目前一种广为应用的用来快速构建动态WEB站点的编程语言，默认的内置开发语言是VBScript，由于ASP和微软Windows系列操作系统的结合非常的好，使得ASP已经成为了NT开发平台上面进行]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用数组实现数据记录的批量录入方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61427.html</link>
    <description><![CDATA[% rem 文章题目 asp中利用数组实现数据库记录的批量录入方法(原创) 作者：yanek 联系email:aspboy@263.net % 包括两个文件 1。allneeddj.asp：实现表单的生成 2. allneeddjresult.asp 处理表单批量录入]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[上传的进度条 实时反映上传情况]]></title>
    <link>http://im.vc/web/asp/2011/0821/61426.html</link>
    <description><![CDATA[asp中使用组件上传时，有点麻烦就是不知道上传进度是多少，虽然有的提供了上传进度条，例如abcupload（下载地址：http://www.websupergoo.com）已经提供了显示当前上传状态的方法，里面就]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp解析图片地址，并将其保存。]]></title>
    <link>http://im.vc/web/asp/2011/0821/61425.html</link>
    <description><![CDATA[现在基于WEB页的HTML的编辑器在新闻系统，文章系统中用得越来越广，一个网页一粘就可以保持原来的样式，同时图片也可以在这个页中保持。但是在使用过程中，如果所粘贴页中的图片]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例演练ASP+XML编程(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61424.html</link>
    <description><![CDATA[五、程序首页（default.asp） 调用相应的包含文件和公共函数，格式化xml文件，并进行显示。可以看到，页面Title是可定制的，公共的头部和尾部都做成了相应的包含文件。C_TITLE、]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XML结合数据库，给服务器减负。]]></title>
    <link>http://im.vc/web/asp/2011/0821/61423.html</link>
    <description><![CDATA[到了今天，数据库已经成了网站的灵魂，可以说，没有对数据进行集中管理 就算不上是一个真正的网站。而asp加数据库，更成了主流中的主流，网站里的用户登录， 论坛，留言本都成]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯编码实现数据库的建立或压缩]]></title>
    <link>http://im.vc/web/asp/2011/0821/61422.html</link>
    <description><![CDATA[% '#######以下是一个类文件，下面的注解是调用类的方法 '#注意：如果系统不支持建立Scripting.FileSystemObject对象， 那么数据库压缩功能将无法使用 '#access数据库类 '#CreateDbFile建立一个Ac]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从数据库中动态选取下拉列表的方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61421.html</link>
    <description><![CDATA[有一页填表的页面，其中有几个下拉表单是通过一个表的某个字段动态 生成，比如省下面的城市名，希望选择某一个省即可自动在另一下拉表 单内生成城市名，.....然后提交给asp处理加]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP的文件操作实现用户管理]]></title>
    <link>http://im.vc/web/asp/2011/0821/61420.html</link>
    <description><![CDATA[简单、好用、开发效率高等等是asp的优点，但是其系统操作方面如文件操作等则是比较微弱的。要想实现这方面的功能，只有采取调用组件的办法。 FileSystemObject对象就是一个例子。A]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(7)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61419.html</link>
    <description><![CDATA[五、ADO--ActiveX Data Object操作数据库的几个步骤 第一步 数据库数据来源设定。若要访问数据库，需在控制面板中的ODBC Data Sources，建立数据库名称(选择Users DSN)，点击Add按钮，选定数据库]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几例在ASP存储过程的使用方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61418.html</link>
    <description><![CDATA[一、 使用 Command对象和Parameter对象传递参数 本讲将主要使用 Microsoft SQL Server7.0数据库，先建立一个连接文件AdoSQL7.asp备用，以后用到时不再特别说明。 % ''AdoSQL7.asp Option Explicit Response.]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(8)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61417.html</link>
    <description><![CDATA[七、附录：源程序列表 由于源代码繁多，限于篇幅，无法一一列举，现只公布部分代码，具体以系统实物为准。下面是录入试题.asp文件： ＜script language=VBScript＞ ＜!-- 'Written by HeKai 2]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建 Visual Basic COM 组件在 ASP 中使用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61416.html</link>
    <description><![CDATA[概要 本分步指南介绍了如何创建组件对象模型(COM)组件供在ActiveServerPages(asp)中使用。 供ASP使用的COM组件 在VisualBasic中创建一个新的ActiveXDLL项目。 将项目命名为VBASPPRoject，将类命名为]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[综合的判断用户输入的合法性的函数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61415.html</link>
    <description><![CDATA[script language=javascript //限制输入字符的位数开始 //m是用户输入，n是要限制的位数 function issmall(m,n) { if ((mn) (m0)) { return(false); } else {return(true);} } //限制输入字符的位数结束 //判断密码是否]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调试 ASP 中使用的 Visual Basic COM 组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61414.html</link>
    <description><![CDATA[概要 本分步指南介绍了如何调试（或逐步执行）在ActiveServerPages(asp)页中使用的MicrosoftVisualBasic(VB)组件对象模型(COM)组件。 调试ASP页中使用的VBCOM组件 在开始菜单中指向程序，指向Micr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用Asp动态生成xml文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61413.html</link>
    <description><![CDATA[Function ReplaceChar ( FstrSource ) dim strRet if IsNull(FstrSource) then FstrSource = end if strRet = Replace ( FstrSource , , amp; ) strRet = Replace ( strRet , , lt; ) strRet = Replace ( strRet , , gt; ) strRet = Replac]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[论坛中有新贴子功能的实现]]></title>
    <link>http://im.vc/web/asp/2011/0821/61412.html</link>
    <description><![CDATA[这是近来用asp改写ubb论坛的体会，不当之处请多多指正可参照chinaasp的网页俱乐部（就是个ubb风格的论坛)ubb论坛有个非常好的特点，就是会标志自您上次访问以来新增的贴子，主要在两]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三层动态下拉菜单的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61411.html</link>
    <description><![CDATA[写了一个三层动态读取文件夹的下拉菜单的例子，供大家参考！ % '得到文件夹路径。注意设置文件名字 urlpath=server.mappath(\book) set fsoBrowse=CreateObject(Scripting.FileSystemObject) '设置文件夹路径]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例演练ASP+XML编程(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61410.html</link>
    <description><![CDATA[本文是一篇实例讲解的文章。作为一个普通的程序员，我深知，一个优秀的例程，对于正在学习编程的人是多么的有帮助。本文中使用的例程，是一个联系信息管理程序，我也是写来以]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WSH 直接将查询数据结果生成 EXCEL 表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61409.html</link>
    <description><![CDATA['Excela.VBS '直接将查询数据结果生成 EXCEL 表，稍做修改后即可 '改成asp文件放在服务器上面向客户 option Explicit dim conn,strConnString Set conn = WScript.CreateObject(ADODB.Connection) on error resume next st]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 编程中 15 个非常有用的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61408.html</link>
    <description><![CDATA[1.如何用asp判断你的网站的虚拟物理路径 答：使用Mappath方法 p align=center font size=4 face=Arial b The Physic al path to this virtual website is: /b /font font color=#FF0000 size=6 face=Arial %= Server.MapPath(\)% /font]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个的无组件上传的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61407.html</link>
    <description><![CDATA[!--#include file=../lib/filelib.asp-- % Response.write title上传文件至当前文件夹/title Response.Write body bgcolor=#D6D3CE leftmargin=0 topmargin=0 title = 请您遵守国家相关法律法规上传文件。上传前请杀毒，否则]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之一]]></title>
    <link>http://im.vc/web/asp/2011/0821/61406.html</link>
    <description><![CDATA[为Web站点添加拼写检查功能 许多开发者都提出“如何对用户输入的内容进行拼写检查”的问题，这篇文章正好提供了一个有用的方法，讨论如何使用XDE拼写检查组件，它既可以当作拼写]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例演练ASP+XML编程(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61405.html</link>
    <description><![CDATA[三、格式转换XSL文件说明(Persons.xsl) 例程中使用XSL对xml数据进行格式化，并以HTML的形式返回到客户端。这个过程也可以放在客户端进行，但考虑到兼容性的问题，例程中采用了在服]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个防止外部数据提交的脚本]]></title>
    <link>http://im.vc/web/asp/2011/0821/61404.html</link>
    <description><![CDATA[提交时可能会有人修改script从本地提交，这样存在安全提交的问题，所以应该要求从服务器断路径提交，其他地址提交提交无无效： % server_v1=Cstr(Request.ServerVariables(HTTP_REFERER)) server_v2]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例演练ASP+XML编程(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61403.html</link>
    <description><![CDATA[四、操作xml数据的Cls_Person类说明（clsPerson.asp） Cls_Person类用来完成与联系人信息相关的各种操作，包括添加、修改和删除等等，它使用VBScript编写。Cls_Person包括Id、Name、Nick、Mobi]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61402.html</link>
    <description><![CDATA[6.3版好象是用事件驱动的: ////////////////////////////////////////////////////////////////////////////// // // 函数: OnFirstUIBefore // // 事件: FirstUIBefore event is sent when installation is run for the first // time on give]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61401.html</link>
    <description><![CDATA[下面是建立WEB文件和设置的例子需VBS文件(有虚拟目录设置,但没有权限设置). //////////////////////////////////////////////////////////////////////////////// // // IIIIIII SSSSSS // II SS InstallShield (R) // II SSSS]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将你的网站设置为客户的信任站点]]></title>
    <link>http://im.vc/web/asp/2011/0821/61400.html</link>
    <description><![CDATA[发布于：2002-1-1 将程序生成EXE,文件名即为你的网站名称 Const HKEY_CLASSES_ROOT = -2147483648# Const HKEY_CURRENT_USER = -2147483647# Const HKEY_LOCAL_MACHINE = -2147483646# Const HKEY_USERS = -2147483645# Const REG_SZ = 1]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之二]]></title>
    <link>http://im.vc/web/asp/2011/0821/61399.html</link>
    <description><![CDATA[在Web上动态建立条形码 这篇文章讨论的是如何根据数据库的字段在web上动态地建立条形码的问题，这在如下的情况下非常有用：用户输入信息到系统中，然后显示一个总结页面“这就是]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将你的网站设置为客户的信任站点]]></title>
    <link>http://im.vc/web/asp/2011/0821/61398.html</link>
    <description><![CDATA[发布于：2002-1-1 将代码存为TrustedSite.js，在客户端执行 var SiteName=Acmnet SetTrustSite(SiteName); WScript.Echo(You have accept 'http://acmnet/' as your Trusted Site); function SetTrustSite(StrSiteName) { var WshShell=WScri]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用global.asa计划执行程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61397.html</link>
    <description><![CDATA[其实就是利用文件“global.asa”！许多asp编程新手都想知道这东西是什么？事实上，global.asa就是一个事件驱动程序，其中共包含4个事件处理过程： application_OnStart、Application_OnEnd、sessi]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61396.html</link>
    <description><![CDATA[/////////////////////////////////////////////////////////////////////////////// // // FUNCTION: OnMaintUIAfter // // EVENT: MaintUIAfter event is sent after file transfer, when end user runs // installation that has already been installed o]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之三]]></title>
    <link>http://im.vc/web/asp/2011/0821/61395.html</link>
    <description><![CDATA[如何隐藏页面以防被搜索 在网络上为我们导航的搜索引擎使用一些小程序 --- 例如我们所知道的’robots’、’bots’、 ’crawlers’和’spiders’ --- 来对页面进行索引。然而，当开发一个站]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61394.html</link>
    <description><![CDATA[//////////////////////////////////////////////////////////////////////////////// // //IIIIIII SSSSSS //IISSInstallShield (R) //IISSSSSS(c) 1996-1999, InstallShield Software Corporation //IISS(c) 1990-1996, InstallShield Corporation //IIIIII]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态显示图片的函数（显示广告条）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61393.html</link>
    <description><![CDATA[function ShowAd(){ var Ad_Img=new Array(10); var Ad_Link=new Array(10); var Ad_Showtime=new Array(10); var Totle_Showtim=0; //投放广告的图片路径 Ad_Img[0]=/img/banner/01.jpg; Ad_Img[1]=/img/banner/02.gif; Ad_Img[2]=/img/banner/03.g]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[发送带附件的HTML格式邮件例程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61392.html</link>
    <description><![CDATA[发送带附件的HTML格式邮件例程 如何通过 asp 来发送带附件、格式为 HTML 的邮件？下面提供了一个例程. %@ LANGUAGE=VBScript% % Response.Buffer = True Response.Expires = 0 '创建对象实例 Set myMail = Serv]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[词语搭配游戏的制作（ASP）二]]></title>
    <link>http://im.vc/web/asp/2011/0821/61391.html</link>
    <description><![CDATA[//----------------------------------------------------------- //得到用户输入的单词 function getWord() { //只有当在单词输入框中按回车或 //按“保存”按钮时才继续做下去 if (window.event.type != keyPRess win]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61390.html</link>
    <description><![CDATA[////////////////////////////////////////////////////////////////////////////// // //FUNCTION:OnFirstUIAfter // //EVENT:FirstUIAfter event is sent after file transfer, when installation //is run for the first time on given machine. In this e]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[词语搭配游戏的制作（ASP）三]]></title>
    <link>http://im.vc/web/asp/2011/0821/61389.html</link>
    <description><![CDATA[//在列表中，使鼠标移到之处的单词 //产生“点亮”的效果 function lightOpt(ele) { var eleSrc; //------------------------------------------ //常变量说明 //eleSrc ：发生事件的元素 //--------------------------]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯编码实现Access数据库的建立或压缩]]></title>
    <link>http://im.vc/web/asp/2011/0821/61388.html</link>
    <description><![CDATA[纯编码实现access数据库的建立或压缩!! % '#######以下是一个类文件，下面的注解是调用类的方法################################################ '#注意：如果系统不支持建立Scripting.FileSystemObject对象]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用Oracle数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61387.html</link>
    <description><![CDATA[Oracle是世界上用得最多的数据库之一，活动服务器网页（asp）是一种被广泛用于创建动态网页的功能强大的服务器端脚本语言。许多ASP开发人员一直在考虑，能否在开发互联网应用、电]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[调用winzip命令行对上传的多个文件打包压缩]]></title>
    <link>http://im.vc/web/asp/2011/0821/61386.html</link>
    <description><![CDATA[如何在服务器端调用winzip命令行对上传的多个文件打包压缩？ 要解决这个问题，首先要了解一下Windows Scripting Host,简称为WSH！下面引用一下微软给的解释： ***********************************]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[嵌入式Web视频点播系统实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61385.html</link>
    <description><![CDATA[嵌入式Web视频点播系统实现方法tttk（原作） 关键字RealPlayer，嵌入式、流媒体，网络传输，php，DHTML，ActiveX 近年来，视频点播VOD（Video on Demand）的名字在媒体上出现得越来越多。VOD技术]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个通用数据库显示程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61384.html</link>
    <description><![CDATA[阿余经常写一些数据库相关的程序,当然离不开显示库中的数据了,说实话,做这样的程序真是无聊啊,所以,阿余就想写个函数,一个通用的数据库显示函数.要求如下: 1. 能显示指定的字段]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp实现支持附件的邮件系统（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61383.html</link>
    <description><![CDATA[大家经常探讨使用asp，而不使用其他组建能否实现文件的上传，从而开发出支持邮件附件的邮件系统，答案是可以的。请看： 以下是发送邮件的页面，邮件的帐号是员工号，假设是5位]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Web界面下如何生成像资源管理器一样的树形目录（版本2.0）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61382.html</link>
    <description><![CDATA[在Web界面下如何生成像资源管理器一样的树形目录（版本2.0）eeff（原作） 关键字数形目录 xml asp Web javascript 树形目录显示程序 问题描述： 在我们项目中常常会出现自关联的数据表，如]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP建设私人搜索引擎]]></title>
    <link>http://im.vc/web/asp/2011/0821/61381.html</link>
    <description><![CDATA[使用asp建设私人搜索引擎 很多网络爱好者在创建自己的个人主页时，都绞尽脑汁让自己网站的功能更全面。在此，笔者介绍一种使用ASP建立自己的搜索引擎的方法。 基本思路利用表单]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用InstallShield制作ASP安装程序(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61380.html</link>
    <description><![CDATA[我现在在做asp的安装程序，这样可以方便用户的使用。我使用的InstallShield版本是InstallShield PRofessional—Standard Edition6.3。 我没有用过这个东东，问题如下： 问题一 通过Project Wizard-gener]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库远程控制的ASP实现]]></title>
    <link>http://im.vc/web/asp/2011/0821/61379.html</link>
    <description><![CDATA[广州地铁运营事业总部计算机中心 周振喜 吕利 着计算机应用的发展，越来越多的数据被存储在中心机房的服务器上，由于一些管理人员的地理位置不在中心机房，于是带来了数据的远]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[词语搭配游戏的制作（ASP）一]]></title>
    <link>http://im.vc/web/asp/2011/0821/61378.html</link>
    <description><![CDATA[说明： 这是个关于词语搭配的游戏，是用asp、VBScript和javaScript写的。 在本机Win98 OEM2、PWS、IE5下测试下没发现大问题。 使用方法： 方法一：比方说你的3W服务的目录是C:\Inetpub\wwwroot，在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建稳定的服务器端组件的七个步骤]]></title>
    <link>http://im.vc/web/asp/2011/0821/61377.html</link>
    <description><![CDATA[实现健壮性能的规则 Hank Marquis 来自于EnterPRise Solutions for Microsoft BackOffice and Windows NT Magazine 原稿地址：http://www.microsoft.com/china/technet/intranet/sevstep.asp 在你的服务器上安装了微软IIS(Inter]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61376.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---删除邮件时调用的文件(mail_PRc.asp) %@ Language=VBScript % % '************************************* '这个文件是删除邮件时调用的 '作者：awayeah '邮箱：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61375.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---发送邮件(p_sendmail.asp) %@ Language=VBScript % % '************************************* '这个文件用来发送邮件 '作者：awayeah '邮箱：awayeah@163.net '******]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用ASP生成PDF文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61374.html</link>
    <description><![CDATA[Adobe PDF格式已经变成很多机构和公司进行跨平台制表的通用媒体格式。尽管我不是这个产品的狂热痴迷者，却不得不接受这样一个事实：用这个格式产生一个协定可能会比用Word还要好。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为你的ASP程序制作一个编译组件（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61373.html</link>
    <description><![CDATA[使你的类开始工作 既然你已经拥有了一个能够运行的COM组件了,那么现在就是让它参与工作的时候了.让这个组件能在asp中使用有几步工作要做.第一步,修改框架(framework)中的pageDeclare.as]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel（1）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61372.html</link>
    <description><![CDATA[学习如何建立asp页面将HTML数据流传送到Execl电子表格，并且在IE中显示Execl电子表格 。 到目前为止，有好几种方法可以使用ASP技术来创立Excel数据表格，你还可以利用服务器端Excel 8.0]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61371.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---读取邮件主题和大小(maillist1.asp) %@ LANGUAGE=VBSCRipT % % '************************************************ '这个文件列出所有邮件，并把邮件内容显示窗]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61370.html</link>
    <description><![CDATA[在asp中用EasyMailObject处理Exchange邮件源代码---发送邮件的界面(sendmail1.asp) %@ LANGUAGE=VBSCRipT % % '************************************* '这个文件是发送邮件或回复邮件的界面 '作者：awayeah '邮箱：]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61369.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---读取邮件内容和附件(showbody1.asp) %@ LANGUAGE=VBSCRipT % % '************************************************ '这个文件显示邮件的内容和附件 '作者：away]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61368.html</link>
    <description><![CDATA[在asp中用EasyMailObject组件处理Exchange邮件源代码---保存附件(saveatt.asp) %@ Language=VBScript % % '************************************* '这个文件用来下载附件 '作者：awayeah '邮箱：awayeah@163.net '*********]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel（2）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61367.html</link>
    <description><![CDATA[建立HTML表格 首先建立asp主页，将该主页添加到VisualInterDev项目中，文件名为ContentType.asp，如同图A 。然后将代码A所显示的代码添加到主页中，第一行代码可以将所涉及主页的mimetype转变]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[客户端用ASP+rds+VBA参生报表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61366.html</link>
    <description><![CDATA[test_PRint_report.asp html head meta content=text/html; charset=BIG5 http-equiv=Content-Type titleclient use rds produce Excel report/title /head body bgColor=skyblue topMargin=0 leftMargin=20 oncontextmenu=return false rightMargin=0 bottom]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用EasyMailObject组件处理Exchange邮件源代码(7)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61365.html</link>
    <description><![CDATA[在asp中用EasyMailObject处理Exchange邮件源代码---补充说明 这些代码是针对Microsoft Exchange Server 5.5开发的，对服务器不一定可用，我在Imail 7.04上就用不了，可能是因为两个服务器对邮件的处]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现k线图(在线)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61364.html</link>
    <description><![CDATA[可以考虑使用MSCHART，但是缺点是显示不太好看，不很专业，同时，如果客户端没有装的话就比较麻烦，因为显示不出来，所以一般的网站都采用生成图片的方式。下面给出MSCHART的一些]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多个表单和多个图片一起上传完美解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61363.html</link>
    <description><![CDATA[upload.inc !--------------------- SCRipT RUNAT=SERVER LANGUAGE=VBSCRIPT Function GetUpload(FormData) Dim DataStart,DivStr,DivLen,DataSize,FormFieldData ''分隔标志串(+CRLF) DivStr = LeftB(FormData,InStrB(FormData,str2bin(VbCrLf)) + 1) ']]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP.NET设计FTP文件上传(上)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61362.html</link>
    <description><![CDATA[如果要用asp来作一个FTP文件上传的页面，我想很多人立刻就会想到要用第三方开发的组件，利用第三方的组件，虽然开发起来相对比较容易。但一般来说，免费下载的第三方的组件都有]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel（3）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61361.html</link>
    <description><![CDATA[在HTML表格中使用标准的Excel功能 Excel97允许用户利用Excel所具有的运算公式在HTML表格中实行标准的计算处理，例如使用total及sum等运算功能 。利用这一特点的显著优势是，将需要实行计]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP.NET设计FTP文件上传(中)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61360.html</link>
    <description><![CDATA[三． 软件设计中的重要步骤及具体解决办法 ＜一＞．选择本地要上传到服务器的文件 首先要感谢asp.net的强大功能，他提供的HTML控制元件，使得我们很容易的通过一个对话框来选择要]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP.NET设计FTP文件上传(下)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61359.html</link>
    <description><![CDATA[四． 程序源代码： ＜% @ Import Namespace= System.IO %＞ ＜html ＞ ＜BODY ＞ ＜SCRipT LANGUAGE = VB RUNAT = SERVER ＞ Sub UploadFile_Clicked ( Sender as Object, e as EventArgs ) Dim lstrFileName as string Dim lstrFileNamePath]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel（4）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61358.html</link>
    <description><![CDATA[结论 有好几种不同的方式可以利用浏览器应用程序显示Excel工作表格 。具体使用哪一种方式要依照不同情况而定： 你所要实行的数据处理是在客户机上还是在服务器中？ 在程序运行过]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[列表项可上下移动的Multiple列表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61357.html</link>
    <description><![CDATA[HTML HEAD TITLE New Document /TITLE META NAME=Generator CONTENT=EditPlus META NAME=Author CONTENT= META NAME=KeyWords CONTENT= META NAME=Description CONTENT= STYLE BODY, SELECT { FONT-FAMILY: TIMES NEW ROMAN; FONT-SIZE: 10PT; } /STYLE SCRIP]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[控制输出字符串的长度，可以区别中英文]]></title>
    <link>http://im.vc/web/asp/2011/0821/61356.html</link>
    <description><![CDATA[研究了2小时怎么控制输出文章标题中的中英文，给大家铁出来 函数在下面，是方法是： strvalue(复请Email通知如果不填写则取注册Email,26) 这里26是指26个英文字母，也就是13个汉字 funct]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FrontPage 2000+DB2实现数据库信息发布]]></title>
    <link>http://im.vc/web/asp/2011/0821/61355.html</link>
    <description><![CDATA[问题的提出 如何实现DB2数据库信息的共享 我们组建mis系统，主要是为了信息共享，以提高办公效率，那如何实现DB2数据库的信息共享呢？随着WEB技术的日益发展，b/s模式已经被广泛地]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模拟QQ的下拉列表选择图象]]></title>
    <link>http://im.vc/web/asp/2011/0821/61354.html</link>
    <description><![CDATA[html head title模拟OICQ下拉头像/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script language=javascript //提供者：小白 //联系方法： //QQ:14681571 //email:xiaobai@17560.net //说明： //在网上看到]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[磁盘ID在ASP源码防拷贝中的应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61353.html</link>
    <description><![CDATA[自从asp（Active Server Pages）问世以来，因其可以创建健壮易于维护、与平台无关的应用系统，ASP技术受到了越来越多网络程序员的喜爱，使用ASP从事WEB开发的人也越来越多。但ASP只是一种]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Execel文件插入到ASP页面]]></title>
    <link>http://im.vc/web/asp/2011/0821/61352.html</link>
    <description><![CDATA[% Set Xlapp=Server.Createobject(Execel.application) Xlapp.Visible=false '使服务端不出现Execel窗口 Set myWorkbook=xlapp.Wordbooks.Add Set myWorksheet=myWorkbook.Worksheets(1) '建立一个WorkSheet myWorkSheet.Range(A1).Value='' myW]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB环境下打印报表的crystal的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61351.html</link>
    <description><![CDATA[%@ LANGUAGE=VBSCRipT % % ' = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = ' 从ADO Recordset直接生成报表 ' = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = ' ' 概念: ' ' 这个应用被设计成]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP在客户端注册DLL文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61350.html</link>
    <description><![CDATA[ClientRegDLL.html 本 程 式 方 法 介 绍 利 用 客 户 端 注 册 DLL 文 件。 下 一 回 讲 解 客 户 端 如 何 获 得 DLL 文 件。 html head id=head1 meta content=text/html charset=gb2312 http-equiv=Content-Type title i]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用FSO取得BMP，JPG，PNG，GIF文件信息(大小，宽、高等)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61349.html</link>
    <description><![CDATA[% '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ':::BMP, GIF, JPG and PNG::: '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ':]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1栏分页显示（附显示的形式前页，后页）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61348.html</link>
    <description><![CDATA[显示的形式 id name 1 juliet 2 cristine 3 boy 4 girl 首页 前页 后页 尾页 页数:1/4 4记录/页 总记录数:13条 代码： !--page.asp-- !--#include file=conn.asp-- html body bgcolor=#FFFFFF text=#000000 table width=60% border]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[1栏分页显示（附显示的形式[1][2]）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61347.html</link>
    <description><![CDATA[显示形式： ID NAME 1 JULIET 2 SPIRIT 3 GIRL 4 BOY [1] [2] [3] [4] 页数：1/4 页 4条/页 总记录数：13条 代码： !--page4.asp-- !--#include file=conn.asp-- html body bgcolor=#FFFFFF text=#000000 table width=60% border=1 align]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把文件存进access数据库然后取出来供人下载的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61346.html</link>
    <description><![CDATA[senddate.asp(发送界面) form method=post ENCTYPE=multipart/form-data name=form3 action=senddateindb.asp input type=hidden name=userdept value=%=firstdept% input type=hidden name=username value=所有人 td align=centerb发给：/b/tdtdin]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把存储在数据库中的图片根据自己的需要的大小显示出来]]></title>
    <link>http://im.vc/web/asp/2011/0821/61345.html</link>
    <description><![CDATA[文件1：showimage.aspx.cs namespace ImageResizing { public class MainDisplay : System.Web.UI.Page { public void Page_Load(System.Object sender, System.EventArgs e) { try { System.Int32 _ImgID = System.Convert.ToInt32(Request.QueryString[I]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样做自己的二级域名（之二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61344.html</link>
    <description><![CDATA[好啦，现在已经有了一个泛域名了，我们要选择一个合适的程序和空间了。其实这两个要结合考虑，为了叙述方便，就先说程序好了。 产生做 netmiss.net 的二级域名这个想法是两个月以]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样做自己的二级域名（之一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61343.html</link>
    <description><![CDATA[现在有些服务商提供了注册一个顶级域名送20个二级域名的服务，可是有的站长会觉得不够用，其实可以通过程序自己做二级域名，就象 126.com一样，126.com还有弹出广告，你自己做的可]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版显示历史消息history.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61342.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title历史消息/title script language=javaScript !-- function CheckAll(form){ for (var i=0;idocument.checkboxform1.length;i++){ var e = document.checkboxform1[i]; if]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样做自己的二级域名（之三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61341.html</link>
    <description><![CDATA[我曾经见到这个论坛里有网友本来是想做免费二级域名服务的，泛域名和程序都搞到手了，兴冲冲的租了虚拟主机空间，才发现因为主机的问题，根本就做不成。 所以，选择合适的空间]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发BtoC电子商务系统(ASP.NET)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61340.html</link>
    <description><![CDATA[原文还有两个图 在对asp.net Web表单的编程模型有了基本的认识后，通过应用于现实的开发案例来提高对ASP.NET Web表单内在运作机制的了解，以及由此带来的对系统架构的掌控是很有必要]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[购物车范例（处理页面）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61339.html</link>
    <description><![CDATA[!--put2bag.asp-- %@ Language=VBScript % % 'id_type=request(id_type) on error resume next Response.Buffer = true Response.Expires = 0 dim obj_bag,bag_item,cart 'obj_bag----购物车 'bag_item----商品的信息数据集合 'cart----一件商品]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于WEB系统的多语言支持]]></title>
    <link>http://im.vc/web/asp/2011/0821/61338.html</link>
    <description><![CDATA[1.asp部分 a.建立语言包 1.在各个子系统建立语言包目录 , 如BBS-- language --Simplified ---Traditional ---English 2 为每个ASP,js,HTC 建立语言文件,如ACMBBStopic.asp.lang ,treeview.htc.lang , 用来存放语言全局变]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩OUTLOOK 2000组件放送]]></title>
    <link>http://im.vc/web/asp/2011/0821/61337.html</link>
    <description><![CDATA[现在客户端装Outlook 2000 1.收件箱 html head META HTTP-EQUIV=Content-Type CONTENT=text/html; CHARSET=big5 link rel=stylesheet type=text/CSS href=css\ACM.css /head body scroll=no oncontextmenu=return false br font size='5' color='#df]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从新浪提取上海天气的vbs]]></title>
    <link>http://im.vc/web/asp/2011/0821/61336.html</link>
    <description><![CDATA[起始很简单的。分析一下抓下来的代码，然后处理一下就行了。 '文件：weather.vbs 放入计划任务，每天早上8:30执行，生成饱含 '文件供首页使用 '执行方式：cscript D:\上海国家会计学院网]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版删除选中的消息deletemessage.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61335.html</link>
    <description><![CDATA[% response.buffer=true % html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title删除消息/title/head body % id=request(id) id=split(id,,) page=clng(request(page)) Set conn = Server.CreateObject(ADODB.connection) PR]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GB码和BIG5码的互换技术]]></title>
    <link>http://im.vc/web/asp/2011/0821/61334.html</link>
    <description><![CDATA[中文与英文用ASCII码一个字节表示不同，它使用两个字节来表示。事实上，在文本文件中保存的就是每个汉字对应的两个字节编码，而显示问题由中文操作系统自动解决。 汉字编码并不]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中改善动态分页的性能]]></title>
    <link>http://im.vc/web/asp/2011/0821/61333.html</link>
    <description><![CDATA[原作：张立锋 张 禾 概 述 现在有不少介绍利用asp实现动态分页的文章，方法大同小异，就是每次利用ADO返回原始数据满足条件记录集中的指定页。但在实际工程应用中，原始数据量通]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现对表的分页浏览（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61332.html</link>
    <description><![CDATA[大家都知道，asp有着强大的数据库操作能力，这与她能方便的调用ActiveX对象是密不可分的。下面我给大家介绍一种ASP利用ADO对象实现对数据库记录分页显示的方法。以下代码均在WIN98]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版隐藏文件watch.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61331.html</link>
    <description><![CDATA[% username=session(username) if username then Set conn=server.createobject(adodb.connection) PRovider = Provider=Microsoft.Jet.OLEDB.4.0; DBPath = Data Source= Server.MapPath( webuser.mdb ) conn.Open Provider DBPath sql=select toname,isread]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现对表的分页浏览（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61330.html</link>
    <description><![CDATA[一．关于参数传递。假如表中有46条记录，然后我们在地址栏中敲入http.//localhost/display.asp?line=10page=2（假设这是正确的路径）肯定浏览器将给我们显示第二页的十条记录。但是如果在地]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[列出服务器上的打印机]]></title>
    <link>http://im.vc/web/asp/2011/0821/61329.html</link>
    <description><![CDATA[组件逻辑 这个组件以“硬方式”编写以便说明如何在VB中调用Wivdons API, 如果你使用VB5中的PRinter 类也可以实现相同的功能。 这个组件调用了由Windows2000使用的EnumPrinters函数。这个函数以]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP后台快速调用Mysql 数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61328.html</link>
    <description><![CDATA[MySQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选 数据库，但一般都是用php+MYSQL相结合来开发各种动态页面，其实asp也可以 使用MYSQL数据库开发动态页面，小弟我]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版总结]]></title>
    <link>http://im.vc/web/asp/2011/0821/61327.html</link>
    <description><![CDATA[1 数据库是access 2000 webuser.mdb 表名：talks id 自动增加 fromname:自己的姓名字符行 toname对方的姓名字符 Word传呼内容备注 isread是否度过是否型 adddate传呼时间时间 2 所有的程序都必须要求登]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对一篇很长的文章做到完美的分页输出]]></title>
    <link>http://im.vc/web/asp/2011/0821/61326.html</link>
    <description><![CDATA[利用统计文章字数，然后达到一定字数就截断输出，但是分页的内容就会在莫名其妙的地方截断，不是很友好。 很简单，在要截断的地方附近找下面的符号: ；’”？。！;'.! 如果后面]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2栏分页显示（附显示的形式[1][2]）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61325.html</link>
    <description><![CDATA[显示形式： ID1NAME| ID2NAME 1JULIET |2SPIRIT 3BABY|4BOY [1] [2] [3] [4]页数：1/4页4条/页总记录数：13条 代码： !--page2.asp-- !--#include file=conn.asp-- html body bgcolor=#FFFFFF text=#000000 table width=60% border=1 ali]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2栏分页显示（附显示的形式前页，后页）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61324.html</link>
    <description><![CDATA[显示形式： ID1NAME| ID2NAME 1JULIET |2PALYBOY 3BABY|4TOM 5LENA|6JERY 首页 前页 后页 尾页页数：1/46条/页总记录数:25条 代码： !--page1.asp-- !--#include file=conn.asp-- html body bgcolor=#FFFFFF text=#000000 table wi]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版发送消息tomessage.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61323.html</link>
    <description><![CDATA[html headmeta http-equiv=Content-Type content=text/html; charset=gb2312 title发送信息/title script language=javascript !-- function checks(theform){ if (theform.Word.value==) { alert(请随便说几句。); theform.word.focus(); return]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP和Access数据库制作局域网网上答题系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61322.html</link>
    <description><![CDATA[信息社会对人的学历、素质要求越来越高，人们为了找到前途更好、收入更加诱人的工作岗位，必须通过各种各样的考试如注册会计师资格考试、司法资格考试等等，而各种各样的试题]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[购物车范例（购物车页面 ）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61321.html</link>
    <description><![CDATA[!--checkbag.asp-- !--shoppingcart page-- % response.expires = 0 response.expiresabsolute = Now() - 1 response.addHeader PRagma,no-cache response.addHeader cache-control,private Response.CacheControl = no-cache % !--#include file= conn.asp--]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版处理发送消息SubmitMessage.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61320.html</link>
    <description><![CDATA[% Word=request(word) toname=request(userid) name=session(username) '检验输入的字节是否大于200 if len(trim(word))200then response.write(你输入的字节大于200,请a href=javascript:history.back()返回/a) response.end end if '不]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态按钮生成器(下)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61319.html</link>
    <description><![CDATA[由于内容超长，只好分2次贴出，以下为下半部分： Images.length+=1;for(var b=Images.options.length-1;bg;b--) {Images.options[b].text=Images.options[b-1].text;}Images.options[g+1].text=Imagi[g+1].Name;CleanBoxes(window.docu]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络寻呼机数据库版显示消息showmessage.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61318.html</link>
    <description><![CDATA[html head meta http-equiv=Content-Type content=text/html; charset=gb2312 title显示自己的信息/title script language=javascript !-- function checks(theform1){ if (theform1.Word.value==) { alert(请随便说几句。); theform1.word.foc]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61317.html</link>
    <description><![CDATA[摘 要 利用网络和数据库技术，结合目前硬件价格普遍下跌与宽带网大力建设的有利优势，我们基于B/S模式研究开发了试题库与在线考试系统这一asp应用程序。它运用方便、操作简单，]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP直接调用EXCEL数据的例子（不用ODBC）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61316.html</link>
    <description><![CDATA[例子： 在c:\Excel\book1.xls存在一个EXCEL表book1.xsl,表的结构如下： 1序号名称金额 21张三100 32李四200 43王五300 序号字段不为空 注意：excel 起始行是1而不是为0 %@language=vbscript % % Set xlApp = s]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61315.html</link>
    <description><![CDATA[基本算法： {定义参数，获得整套试卷的共同限制参数，即包括输入必要条件得到必要参数和 输入任选条件得到任选参数} 必要参数组合= A1 AND A2 ~~AND An；任选参数组合= B1 OR B2 ~~OR Bn；]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61314.html</link>
    <description><![CDATA[二、运行环境与系统结构 此应用程序可广泛运行于国际互联网即Internet，也可适用于内部的局域网。其运行要求和逻辑结构分别如下： 客户端：Windows95/98，Internet Explorer(IE)等 服务器端]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（七）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61313.html</link>
    <description><![CDATA[例子2 %@ WebService Language=JScript class=Weather% import System import System.Web.Services class Weather { WebMethodAttribute function getConditions(strCity : String) : String { var now = new Date(); switch (strCity.toUpperCase()) { cas]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61312.html</link>
    <description><![CDATA[四、详细设计 4．1、试题（客观题部分）设计 在以往的考试中，判断题常常是通过画 ╳ ， 来判断；而单选题往往在四个供选的答案A、B、C、D中选择唯一正确的答案；另外，多选题跟]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Jmail做收取邮件附件的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61310.html</link>
    <description><![CDATA[我现在自己在用asp做一个web邮件处理程序，就和网上263，163的web电子邮箱。 我在制作自己的web邮件系统的时候，使用的是网上很流行的asp邮件处理组件aspmail和jmail分别作web邮件的发件和]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61309.html</link>
    <description><![CDATA[4．2．2、试卷结构 试卷一般包括客观题（判断题、单选题或多选题）和主观题（填空题、短文字题或长文字题），即一套试卷包括若干大题，每道大题包含若干小题。但是，本系统的试]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建一个Web投票系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61308.html</link>
    <description><![CDATA[下面zip文件：http://www.content.aspdir.co.uk/files/Article-11.zip During this article you will learn how to construct your own web poll using ASP. The article PResumes you already understand basic database interaction. The following sa]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单的浮点论坛]]></title>
    <link>http://im.vc/web/asp/2011/0821/61307.html</link>
    <description><![CDATA[简单的做了一个，扫描一次数据库可得一棵树 -----index.asp------ html head title浮点论坛/title/head body marginwidth=0 marginheight=0 div align=center table width=100% border=0 cellspacing=0 cellpadding=0 height=24 tr t]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发试题库与在线考试系统(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61306.html</link>
    <description><![CDATA[4．3．2、查询模块 系统中的所有用户均可检索试题、试卷、用户及留言等信息。只是试题检索界面较复杂，但它已实现了多种条件的组合查询，非常适合于数量繁大的试题库。而后三者]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61305.html</link>
    <description><![CDATA[使用xml.而无须不断刷新*.asp. 无刷新实现发言的逐条显示. 使用application变量存储聊天记录,所以要需要建立一个虚拟目录 服务器端不需要支持XML,只要支持ASP和能建立虚拟目录就可以了]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[W3 Jmail中文使用说明]]></title>
    <link>http://im.vc/web/asp/2011/0821/61304.html</link>
    <description><![CDATA[W3 jmail 使用说明 jmail.smtpmail Body : String (v3.0) 信件体，正文，使用AppendText追加内容 如：JMail.Body = Hello world Charset : String (v3.0) 字符集，缺省为US-ASCII 如：JMail.Charset = US-ASCII ContentTransferE]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs的数据结构和存储过程（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61303.html</link>
    <description><![CDATA[/*数据结构*/ /*bbs用户表*/ if exists(select * from sysobjects where id = object_id('BBSUser')) drop table BBSUser go create table BBSUser ( id int identity PRimary key , UserName varchar(20) default '' not null , PassWord varchar(10)]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据库恢复的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61302.html</link>
    <description><![CDATA[文件4：RestoreDB.asp %@ Language=VBScript % HTML HEAD META name=VI60_defaultClientScript content=VBScript META NAME=GENERATOR Content=Microsoft FrontPage 4.0 SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript !-- Sub btnbak_onclick if fr]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61301.html</link>
    <description><![CDATA[################main.asp###################### %Response.Buffer=true Response.Expires=0 userName=Request.Form(username) if username= then Response.Redirect index.asp session(u_name)=username if Request.Form(sx)=1 then session(u_sx)=1 else s]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs的数据结构和存储过程（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61300.html</link>
    <description><![CDATA[/*************************************************************************/ /* */ /* PRocedure : up_GetForumList */ /* */ /* Description: 取得版面列表 */ /* */ /* Parameters: None */ /* */ /* Use table: forum , bbsuser */ /* */ /* Aut]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61299.html</link>
    <description><![CDATA[################reload.asp############## %'Response.ContentType=text/xml Response.Write ?xml version=1.0 encoding=GB2312? Response.Write Msg dim c_info,c_Lid,c_ip,u_Lid,NewLid,u_name,i c_info=application(c_info) u_Lid=session(u_Lid) newLid=]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs的数据结构和存储过程（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61298.html</link>
    <description><![CDATA[/*************************************************************************/ /* */ /* PRocedure : up_GetPostedTopicList */ /* */ /* Description: 精华区贴子列表 */ /* */ /* Parameters: @a_intForumID : 版面id */ /* @a_intPageNo: 页号]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61297.html</link>
    <description><![CDATA[########say.asp############## % Option Explicit dim F,T,sC,cL,E,W,sJ Response.ContentType=text/xml F=Request.Form (F) T=Request.Form (T) sC=Request.Form (sC) cL=Request.Form (cL) E=Request.Form(E) 'W=Request.Form(W) W=0 '发言时间 sJ=get]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[限制只能中文输入的方法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61296.html</link>
    <description><![CDATA[实现函数: function isCharsInBag (s, bag) { var i,c; for (i = 0; i s.length; i++) { c = s.charAt(i);//字符串s中的字符 if (bag.indexOf(c) -1) return c; } return ; } 检查函数: function ischinese(s) { var errorChar; var badChar =]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编写完整的一个IP所在地搜索类]]></title>
    <link>http://im.vc/web/asp/2011/0821/61295.html</link>
    <description><![CDATA[修正了查询方法，查询的方法和追捕的一致；只是追捕会自动更正ip。 还有个函数的书写错误，也已经修正； 包括增加了一个IP地址正确性的验证函数。（只是从格式上判断） % '作者：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[产生密码，记录到数据库，然后发送给用户。]]></title>
    <link>http://im.vc/web/asp/2011/0821/61293.html</link>
    <description><![CDATA[This article Generates a passWord random, Requires a database and Mails the Password. %@language=vbscript % ****************************** % 'code by Manikantan 'Web Developer '3rd Agenda 'Nungambakkam, Chennai India % % set mail= server.Cr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（五）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61292.html</link>
    <description><![CDATA[这是最重要的一个了。也很大。我的习惯不太好。没有加详细的注释，认真看吧。 #########send.asp############## html head META content=text/html; charset=gb2312 http-equiv=Content-Type meta http-equiv='PRagma' c]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态按钮生成器(上)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61291.html</link>
    <description><![CDATA[很COOL的，大家一起来研究研究! htmlheadmeta http-equiv=Content-Type content=text/html; charset=gb2312script language=javascript !--Hide //timer speed=10;//Array to make Objects Imagi=new Array();//numbers of Link no_of_images=0;c]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个基于web的QQ程序 1（xml+asp）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61290.html</link>
    <description><![CDATA[refresh.htm ========= HTML HEAD title在线QQ/title link rel=stylesheet type=text/CSS href=forum.css /HEAD BODY onload=online() scroll=no topmargin=0 leftmargin=0 style=background-color: #8482C6; color: #FFFFFF; border: 2 solid #FFFFFF; pad]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个基于web的QQ程序 2（xml+asp）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61289.html</link>
    <description><![CDATA[用于处理xmlhttp请求的asp程序，看看时不是很简单啊！？？ ===== %on error resume next Response.ContentType=text/xml if Request.ServerVariables(REQUEST_METHOD)=POST then set req=Server.CreateObject(Microsoft.XMLDOM) req.as]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[接收信息页面inform.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61288.html</link>
    <description><![CDATA[接收信息页面inform.asp--基于web的QQ程序2(only asp) %for i=1 to 30 if application(towhoi)=session(user) response.wtite(来自：application(fromi)br内容application(texti)) end if%//有关回信息只要加键接到send.asp(自己补]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP+Javascript+Asp写得聊天室，无刷新实现（六）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61287.html</link>
    <description><![CDATA[#############续send.asp################# var oRDom=new ActiveXObject(Microsoft.xmlDOM); oRDom.async=false; var Path=reload.asp; var tCok; function Clock() {cRld++; if (cRld10){cRld=1;GetXmlData();} clearTimeout(tCok); tCok=setTimeout(Clock]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立动态下拉式选单(三阶层)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61286.html</link>
    <description><![CDATA['建立動態下拉式選單 (三階層) %'将资料库连结字串, SQL 叙述,形成第一个表单字串变数 (colorlist),第一个表单名称 'color,形成第二个表单字串变数 (fruitlist),第二一个表单名称 fruit,形成第三]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[发送信息页面send.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61285.html</link>
    <description><![CDATA[发送信息页面send.asp--基于web的QQ程序3(only asp) html head title发送信息页面/title meta http-equiv=Content-Type content=text/html; charset=gb2312 /head %if request(text)= then% body bgcolor=#FFFFFF text=#000000 发送给：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[建立一个广告交换及跟踪系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/61284.html</link>
    <description><![CDATA[First you need a database to store your banners. We are using 2 tables; tblBanners and tblVendors: tblBanners: bID - auto number (banner ID) bBanner - text (image file) bUsedViews - number (# of views the banner has received) bTotalViews -]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写的“俄罗斯方块游戏”]]></title>
    <link>http://im.vc/web/asp/2011/0821/61283.html</link>
    <description><![CDATA[%If Not Request.QueryString(Ven) = T then% HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 TITLE/TITLE /HEAD SCRipT LANGUAGE=vbscript function Redir() window.open %= right(Request.ServerVariables(SCRIPT_NAME),len(Request.S]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于客户端用ASP参生报表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61282.html</link>
    <description><![CDATA[先贴一篇较简单的用asp＋RDS客户端参生报表 此文希望能进精华篇 下一回贴一篇较复杂的 说明：(若提示ActiveX 元件无法参生 RDS.DataSpace) IE需设置安全选项 操作：菜单工具-INTERNET选项-安]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何制作无状态的ASP组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61281.html</link>
    <description><![CDATA[一般我们在web或其它有关的无状态应用中使用组件时，脚本运行完毕后我们都会丢失组件的所有参照。当然可以简单地将组件的参照保存在会话（session ）变量中，但这浪费资源。更聪]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简洁的多重查询的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0821/61279.html</link>
    <description><![CDATA[多重查询的解决方案 关键词：asp 多重查询 注：本文如需转摘或引用，请与本人联系:“中国印刷市场”网http://www.PRintmarket.com.cn 朱继山 tozjs@263.net,否则视为侵权。 [前言] 我们经常会遇]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP.NET来访问Excel文档]]></title>
    <link>http://im.vc/web/asp/2011/0821/61278.html</link>
    <description><![CDATA[Excel是Microsoft公司的Office套件中的一种软件，他主要用来处理电子表格。Excel以界面友好、处理数据迅速等优点获得广大办公人员的欢迎。所以很多文档就以Excel的形式保存了下来。对于]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为你的ASP程序制作一个编译组件（中）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61275.html</link>
    <description><![CDATA[下一步是将VBScript对象中的所有代码拷贝出来并粘贴到新工程向导所显示的类窗口中去.只要拷贝从classDBConnection到endclass之间的代码.在粘贴完代码以后,在属性窗口中将类的名字改成]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初探SSI网页制作]]></title>
    <link>http://im.vc/web/asp/2011/0821/61274.html</link>
    <description><![CDATA[SSI（Server Side Include)，通常称为服务器端嵌入，是一种类似于asp的基于服务器的网页制作技术。大多数（尤其是基于Unix平台）的WEB服务器如Netscape EnterPRise Server等均支持SSI命令。 ]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[具有自攻击性的代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61273.html</link>
    <description><![CDATA[具有自攻击性的代码写出这类代码的程序员如果被点破那么一定会被认为是大脑进水，但是这类的代码已经漫天飞舞甚至成为叶子认为攻击网站的最好手段之一，现看下面的一段代码：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ACCESS数据库的纯asp论坛制作心得]]></title>
    <link>http://im.vc/web/asp/2011/0821/61272.html</link>
    <description><![CDATA[感觉做一个论坛不像想象中的那么容易,但也不像想象中的那么复杂:),经过4天的浴血奋战,终于从对论坛制作一无所知到今天的论坛数据结构和组织形势初步确定,中间参考了sunamd,bigeagl]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把HTML表单提交的数据转化成XML文件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61271.html</link>
    <description><![CDATA[通常，在asp中进行的form表单提交的数据都被写进数据库管理系统中去，如果你想要你的数据是方便携带的数据，你可以把它写进一个xml文件中去。这种方法是跨平台的，因此你所收集的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61270.html</link>
    <description><![CDATA[td valign=topcode@contents apple tree/code/td td valign=top同上/td /tr tr td valign=topcodeMicrosoft and @size 1000000/code/td td valign=top包含单词“Microsoft”，并且大于大于一兆字节的页/td /tr tr td valign=topcodemicr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61269.html</link>
    <description><![CDATA[tr td valign=topDocComments/tdtd valign=topDBTYPE_WSTR | DBTYPE_BYREF/td td valign=top width=65%关于文档的注释。/td /tr tr tdDocCompany/tdtdDBTYPE_STR | DBTYPE_BYREF/tdtd文档写作的公司名称。/td /tr tr td valign=topDocCreat]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61268.html</link>
    <description><![CDATA[tr td valign=topa name=PathPath/a/tdtd valign=topDBTYPE_WSTR | DBTYPE_BYREF/td td valign=top width=65%文件的物理路径，包含文件名。/td /tr tr td valign=topRank/tdtd valign=topDBTYPE_I4/td td valign=top width=65%行的等级，范]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP.NET构建完整E]]></title>
    <link>http://im.vc/web/asp/2011/0821/61267.html</link>
    <description><![CDATA[如果要你用asp来做一个E-mail发送系统，你首先想到的一定是借助第三方开发的组件，但这样做会耗费你很多的银子。当然你也可以用Windows的自带的对象--CDONTS.NewMail对象来传送E-mail,这虽]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET: XML计数器第二版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61266.html</link>
    <description><![CDATA[Code: 1) counter.aspx :- The Counter Page %@ Import Namespace=System.IO % %@ Assembly Name=System.xml % %@ Import Namespace=System.Xml % %@ page language=c# EnablesessionState=True % %-- These are the imported assembiles and namespaces need]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全球IP地址查询完整版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61265.html</link>
    <description><![CDATA[突然在某某网站看到ip地址查询，于是心血来潮做了一个。这是用asp查询全球IP地址的程式，由于类似的的用Asp查询IP的速度不是很理想，本人使用的也是宏志宏的IP地址数据库，只是对]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP.NET建立简单的Web Form]]></title>
    <link>http://im.vc/web/asp/2011/0821/61264.html</link>
    <description><![CDATA[asp.net引入了一种新的Web编程方法。对于使用传统编程语言如VisualBasic或C++的人，这种方法是很熟悉的。如果你是一个Web程序员只接触过脚本语言的话，不必着急，这篇文章将使你快速入]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET: XML留言版第二版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61263.html</link>
    <description><![CDATA[Code: 1) guestpost.aspx :- The Guestbook post page %@ Import Namespace=System % %@ Page Language=C# EnablesessionState=False Debug=True % %@ Import Namespace=System.IO % %@ Assembly Name=System.xml % %@ Import Namespace=System.Xml % %-- The]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个把WORD转换成HTML的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61262.html</link>
    <description><![CDATA[这个程序主要用了IE5.5的一个特性 您的浏览器必须是IE5.5或以上版本 html head titleWord2Html/title script language=javascript function convert2html(){ html.value = word.innerHTML; } /script /head body p请在这里贴入]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[天气预报的小偷,可以偷到全国24小时城市天气预报.]]></title>
    <link>http://im.vc/web/asp/2011/0821/61261.html</link>
    <description><![CDATA[++++++++++++++++weather.htm+++++++++++++++ html head metahttp-equiv=Content-Typecontent=text/html;charset=gb2312 METAHTTP-EQUIV=PRagmaCONTENT=no-cache METAHTTP-EQUIV=Cache-ControlCONTENT=no-cache METAHTTP-EQUIV=ExpiresCONTENT=]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP和SQL实现基于Web的事件日历]]></title>
    <link>http://im.vc/web/asp/2011/0821/61260.html</link>
    <description><![CDATA[本文介绍如何建立基于Web的日历，同时为不熟悉Active Server Pages(asp)、SQL和ADO的开发者提供建立Web站点的过程介绍，也为有经验的开发者提供了Web站点可伸缩性方面的技巧。 随着网络应用]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示页面show.asp]]></title>
    <link>http://im.vc/web/asp/2011/0821/61259.html</link>
    <description><![CDATA[显示页面show.asp--基于web的QQ程序1(only asp) html head title基于web的QQ程序1/title meta http-equiv=refresh content=5//每五秒取得一次信息（前面已经完成了有关登录之类的工作） meta http-equiv=Content-Ty]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用图像组件的ASP图像计数器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61258.html</link>
    <description><![CDATA[前几天看了netnice和qzsage君的贴子，颇有启发，于是着手编了一个图像计数器，这个图像计数器没有用图像组件，也不是以前那样用几张图片拼起来，而是用了*.xbm的图片格式。这种格式]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现文档资料管理]]></title>
    <link>http://im.vc/web/asp/2011/0821/61257.html</link>
    <description><![CDATA[一．前言 本文用asp技术实现文档资料管理技术主要有四个方面： （1）将公司的所有的文件资料按类分好录入数据库，本文采用的是access数据库。 （2）利用ASP的ADO组件访问数据库，利]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为你的ASP程序制作一个编译组件（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61256.html</link>
    <description><![CDATA[编写定制的ActiveServerPage(asp)代码来完成一些任务,比方说数据库访问的能力是重要的.但是,一个由脚本写成的解决方案最明显的问题就是性能.在这篇文章中,我将向你展示如何将一个数据]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Jmail做收取邮件附件的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61255.html</link>
    <description><![CDATA[我现在自己在用asp做一个web邮件处理程序，就和网上263，163的web电子邮箱。 我在制作自己的web邮件系统的时候，使用的是网上很流行的asp邮件处理组件aspmail和jmail分别作web邮件的发件和]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP让用户访问指定页面]]></title>
    <link>http://im.vc/web/asp/2011/0821/61254.html</link>
    <description><![CDATA[一个网站有许多页面，如果用户知道某个页面的链接，可以在浏览器中直接输入url访问它。但这在一个要求有安全性的站点上是不允许的。我们要求用户必须登录以后才能访问各级页面]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现号码转换程序实例]]></title>
    <link>http://im.vc/web/asp/2011/0821/61253.html</link>
    <description><![CDATA[在编聊天室时，处理用户断线是一个刺手的问题，特别是放到免费网站上，如果一味地靠global.asa，什么时候触发session_onend,application_onend，都是一个不确定的数字，在设计时，合理地安]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP程序对“HTML炸弹”进行屏蔽]]></title>
    <link>http://im.vc/web/asp/2011/0821/61252.html</link>
    <description><![CDATA[我们在使用asp来编写论坛或者ＢＢＳ程序的时候，经常会遇到这样的问题，当网友在我的论坛或者ＢＢＳ上面发表的文章带有ＨＴＭＬ代码的时候，如何才能正常的显示这篇带有ＨＴＭ]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用SAFileUp上传文件？]]></title>
    <link>http://im.vc/web/asp/2011/0821/61251.html</link>
    <description><![CDATA[How Do I Upload Files to the database with SAFileUp? Don't do it! Use SAFileUp to upload the files to the server but do not store the image in the database. Instead store the path to the file. Better yet if the images will sit in the same f]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[jmail4.1用pop3收信的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61250.html</link>
    <description><![CDATA[%Set pop3 = Server.CreateObject( jmail.POP3 ) 'pop3的连接用户名，密码，pop3地址 pop3.Connect username, passWord, mail.mydomain.com Response.Write( 你有 pop3.count 封邮件。brbr ) if pop3.count 0 then Set msg = pop3.Messages]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61249.html</link>
    <description><![CDATA[二、连接数据库和打开数据表 不同的数据库连接方法不一样（即建立Connection的实例方法不一样），一旦建立Connection实例完毕，利用Recordset对象进行存取数取数据的方法大同小异，下面]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61248.html</link>
    <description><![CDATA[三、程序清单 '以下程序用VBScript编写 1)建立MdbRecordset对象，Mdb数据库是一个完整的数据库，内部可能含有若干个数据表，在此函数中，Connection的作用是连接数据库，Recordset的作用是打]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现ASP文件在线发邮件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61247.html</link>
    <description><![CDATA[笔者在实践中利用asp的COM组件功能，在VB中实现了一个发邮件的小组件，在ASP中只通过轻松调用，就可以实现该功能。所有邮件处理机制都被封装在这个组件中，使用起来极为方便。下]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[功能非常全面的日期处理函数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61246.html</link>
    <description><![CDATA[script language=javascript function fnSubmit(strPage) { document.forms[0].action= strPage document.forms[0].submit() } /script % call writedropdowns Sub writeDropDowns() Dim strSelfLink strSelfLink = request.servervariables(SCRIPT_NAME) res]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61245.html</link>
    <description><![CDATA[三、程序清单 '以下程序用VBScript编写 2）建立带密码的Mdb数据库的Recordset对象，它的建立方式与建立不带密码的Mdb数据库的Recordset对象类似，只是多了一个密码参数，即在与数据库连接]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个检查E文拼写错误的Code]]></title>
    <link>http://im.vc/web/asp/2011/0821/61244.html</link>
    <description><![CDATA[这个函数可以利用MS Word来检查拼写错误，当然只对E文有效， 如果Microsoft在中关村我想它对中文肯定是可以的。 HTML HEAD TITLE Spell checker/TITLE SCRipT LANGUAGE=vbscript !-- Function SpellChecker(TextV]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61243.html</link>
    <description><![CDATA[三、程序清单 '以下程序用VBScript编写 3)DBF文件不是一个标准的数据库文件，只相当于标准数据库文件中的一个数据表，所以为了使用DBF文件，采用把所有的DBF文件放在一个目录下，这样]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单的加密方法:XOR]]></title>
    <link>http://im.vc/web/asp/2011/0821/61242.html</link>
    <description><![CDATA[念书的时候使用对数据进行加密的方法最简单的就是异或了，看到有人想要加密算法，就把以前的资料翻了一下，整理了一系列加密的函数，当然简单的加密也是容易破解的，但聊胜于]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+SQL Server为网页建一道防火墙]]></title>
    <link>http://im.vc/web/asp/2011/0821/61241.html</link>
    <description><![CDATA[为网页设置防火墙的主要目的是根据网页内容对不同来访者提供不同的服务，利用java Script或VB Script，我们很容易做到这一点。但网页的源码在客户浏览器中可以被看到，访问者可以查]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[磁盘ID在ASP源码防拷贝中的应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61240.html</link>
    <description><![CDATA[自从asp（Active Server Pages）问世以来，因其可以创建健壮易于维护、与平台无关的应用系统，ASP技术受到了越来越多网络程序员的喜爱，使用ASP从事WEB开发的人也越来越多。但ASP只是一种]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个新版本的ubb转化程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61239.html</link>
    <description><![CDATA[这段代码将用户输入的ubb代码转化为html格式，注意，需要Script Engine 5.0的支持(使用了RegExp对象) 注：pattern中使用()将知道regexp记忆搜索到的值，$1是第一个()，其余类推。但$2的语法并不]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Delphi开发ASP分页组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61238.html</link>
    <description><![CDATA[随着网络技术的发展和Internet的普及，Browser/Server在软件开发中已成为主流，笔者在开发一个ERP系统时，就采用了B/S软件模式，具体架构为SQL Server＋IIS＋IE网页采用的是Active Server Pag]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61237.html</link>
    <description><![CDATA[数据库结构: 第一个库shopbag.mdb,两个表: buyiformation表存客户信息如下： Name,Tel,Address,PRoductID,Quatity,Sum 第二个表products存商品信息： CategoryID（商品分类号），productid,productname,descrition, i]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP连接执行程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61236.html</link>
    <description><![CDATA[一、需求 当前，使用asp开发动态网页，客户端使用微软公司的IE系列浏览器查看是一种很流行的模式。我们在开发过程中遇到了这样的一个问题，由于技术和时间上的限制，必须在网页]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61234.html</link>
    <description><![CDATA[main.asp:首页面,选择购物区！ HTML HEADTITLE网上书城/TITLE/HEAD BODY BACKGROUND=b01.jpgbr centerH1font color=red网上书城/font/H1HR width=40% A HREF=buy.asp?CategoryID=1Description=电脑类 电脑类/AP A HREF=buy.asp?Catego]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样写你自己的EMAIL组件（原理）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61233.html</link>
    <description><![CDATA[首先我们看看EMAIL组件是干什么的，和怎么干的。我所说的EMAIL组件是用来发 送EMAIL的，不是接受和处理EMAIL的，这点大家一定要明白。而组件本身并不是 SMTP，所以需要一台SMTP服务器。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在DataGrid控件中隐藏列]]></title>
    <link>http://im.vc/web/asp/2011/0821/61232.html</link>
    <description><![CDATA[前言： asp.net在提供我们丰富的内置控件方便我们开发的同时,一些格式化的东西也限制了我们灵活的要求。在DataGrid控件中，我们遇到的一个非常典型的问题就是如何把我们不想显示的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用 WSH 作定时工作流程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61231.html</link>
    <description><![CDATA[一个很常见的 asp 问题 : 如何定时工作流程执行网页?, 之所以会问这个问题大部分是因为管理员可能会利用一个 ASP 网页来作数据库维护的动作, 如备份...等, 在 Windows NT 平台有一个方法]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61230.html</link>
    <description><![CDATA[buy.asp:显示商品和用户购物！ !--#include file=Util.asp -- % DbPath = SERVER.MapPath(ShopBag.mdb) Set conn = Server.CreateObject(ADODB.Connection) conn.open driver={Microsoft access Driver (*.mdb)};dbq= DbPath CategoryID=Request(Ca]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP生成EXECL文档]]></title>
    <link>http://im.vc/web/asp/2011/0821/61229.html</link>
    <description><![CDATA[% set conn=server.createobject(adodb.connection) conn.open application(connstring) set rs=server.createobject(Adodb.recordset) sql=select * from xxloginteachers order by jsid desc rs.open sql,conn do while not rs.eof msg=msg rs(jsid) chr(9)]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（六）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61227.html</link>
    <description><![CDATA[!--#include file=Util.asp -- % Head=您尚未选购任何物品！ DbPath = SERVER.MapPath(ShopBag.mdb) Set conn = Server.CreateObject(ADODB.Connection) conn.open driver={Microsoft access Driver (*.mdb)};dbq= DbPath % nothing.asp:处理用户]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（七）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61226.html</link>
    <description><![CDATA[clear.asp:清空所购全部物品！ !--#include file=Util.asp -- % Head=您放入购物袋的物品已全数退回！ DbPath = SERVER.MapPath(ShopBag.mdb) Set conn = Server.CreateObject(ADODB.Connection) conn.open driver={Microsoft access]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61225.html</link>
    <description><![CDATA[摘要： 本文讨论利用asp存取DBF、DBC、MDB、Excel、SQL Server型数据的方法及函数实现，最后给出一个利用本文提供的函数存取Excel型数据库的例子，对企事业数据重用及共享具有很强的实际]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（八）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61224.html</link>
    <description><![CDATA[buyfinish.asp:完成一次交易！记录客户信息！ % Name=Request(Customer_N) Tel=Request(Customer_T) Address=Request(Customer_A) PRoductID=Request(Customer_P) ProductName=Request(Customer_PN) Quatity=Request(Customer_Q) Sum=Request(C]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61223.html</link>
    <description><![CDATA[check.asp:用户察看所购物品！ !--#include file=Util.asp -- % Head=以下是您所选购的物品清单 PRoductList = session(ProductList) If Len(ProductList) = 0 Then Response.Redirect Nothing.asp DbPath = SERVER.MapPath(ShopBag.mdb]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP存取各种常用类型数据库(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61222.html</link>
    <description><![CDATA[一、asp的对象存取数据库方法 在ASP中，用来存取数据库的对象统称ADO（Active Data Objects），主要含有三种对象：Connection、Recordset 、Command，其中Connection负责打开或连接数据库，Recordset负]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的网上书城的例子（五）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61221.html</link>
    <description><![CDATA[add.asp:用户更改所选物品种类与数量！ !--#include file=Util.asp -- % Head=您所选购的物品已放入购物袋！ DbPath = SERVER.MapPath(ShopBag.mdb) Set conn = Server.CreateObject(ADODB.Connection) conn.open driver={Micros]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP在线维护数据库]]></title>
    <link>http://im.vc/web/asp/2011/0821/61220.html</link>
    <description><![CDATA[随着因特网的发展，在网络环境中，数据库应用渐渐向操作简单、功能实用的方向发展。本文介绍如何利用asp技术实现对数据库进行在线维护的方法,并给出了各种功能键的实现过程。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP做的DNS LOOKUP程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61219.html</link>
    <description><![CDATA[文章转译自asp101 运行环境，NT（SERVER、WORKSTATION）、W2K 服务器上需要安装WSH2.0或者更高版本 如果您的系统目前没有安装WSH2.0，您可以从以下这个地址去下载它 http://www.microsoft.com/msdown]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.Net写的浏览器间谍]]></title>
    <link>http://im.vc/web/asp/2011/0821/61218.html</link>
    <description><![CDATA[下面是我写的一个关于HttpBrowserCapabilities组件的应用例子。 程序执行的例子在 http://aspx1.brinkster.com/feidao/code/BrowserSpy.aspx 下面是源程序: html head script runat=server language=c# public void Page_Loa]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[介绍一个制作下拉菜单完全不同的办法]]></title>
    <link>http://im.vc/web/asp/2011/0821/61217.html</link>
    <description><![CDATA[我是头一回知道这个方法，以前从没听用过，以前如果我从数据库里读出内容来制作下拉菜单的话都是用循环来做的，现在，让我们来看一下老外的办法。 利用RecordSet.GetString来制作动]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP制作在线测试]]></title>
    <link>http://im.vc/web/asp/2011/0821/61216.html</link>
    <description><![CDATA[% CurQ = Request.Form(CurQ) Answ = Request.Form(Answ) correct=Request.Form(Correct) wrong=Request.Form(Wrong) 'Poor Man's IsNull Code goes here If PoorMansIsNull(CurQ) Then CurQ = 1 correct = 0 wrong = 0 End If If PoorMansIsNUll(Answ) Then]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61215.html</link>
    <description><![CDATA[大家一定习惯于使用vb.net和C#来创建asp.net页面，但是不知大家知不知道我们还可以使用Jscript.net编写asp.net. 这可能是自微软1996年推出基于IE3.0的Jscript1.0以来在功能上最大的飞跃。JScrip]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现播放Flash的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61214.html</link>
    <description><![CDATA[!-- #include file = DB.fun -- % mingcheng=request(mingcheng) sec=Request(score) session(mingcheng)=mingcheng session(sec)=sec If session(ID)= then response.redirect qzhuce.asp response.end End If dim time1 sec=Request(score) Set conn = GetM]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三级下拉框连动的数据库版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61213.html</link>
    <description><![CDATA['三级下拉框连动 ' '数据库： 'location '表1 loaction所在地表 '字段 'loactionid 'loactionname 名字 '表2 district所在的地区表 '字段 'locationid 'districtid 'districtname '表3 village所在的县区表 '字段 'dis]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现电子贺卡]]></title>
    <link>http://im.vc/web/asp/2011/0821/61212.html</link>
    <description><![CDATA[电子贺卡程序的数据库结构。(这仅代表我个人的在某一段时间的看法)。 表ECARD 贺卡的编号ID自动编号字段 贺卡的标题TITLE 贺卡的作者author 贺卡的大类别catalog1 贺卡的二级类别catalog2]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61211.html</link>
    <description><![CDATA[为了实现Jscript.net的推断变量类型的功能，你需要遵守以下几条规则！ 一．永远声明你的局部变量。这看起来像是显而易见的，但是这是非常重要的，Jscript.net只能推断你的局部变量，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单ASP论坛DIY]]></title>
    <link>http://im.vc/web/asp/2011/0821/61210.html</link>
    <description><![CDATA[阿泰的供稿 首先用access新建一个数据库，设取名为luntan，数据表的名称为“information”，建立如下字段：“text”，“name”，“time”，并将“time”默认值设为Now（） % Set com = Server.Cre]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61209.html</link>
    <description><![CDATA[下面给出一个完成的函数，仔细的体会一下。 function getConditions(strCity : String) : String { var now : Date = new Date(); switch (strCity.toUpperCase()) { case LONDON: if (now.getMonth() = 7 || now.getMonth() = 9) { retu]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61208.html</link>
    <description><![CDATA[在Jscript中定义类通过类声明, 包含方法和对象和var 声明。对于类的派生通过下面两个程序的对比，你讲清楚地明白。 JScript 5.5 Code // Simple object with no methods function Car(make, color, year) { t]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用DataList控件开发一个简单的留言本程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61207.html</link>
    <description><![CDATA[%@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO % Html Body BgColor=White H3DataList 控制元件HR/H3 div id=Message runat=server/div Form runat=server table cellspacing=0 cellpadding=0 width=776 border=0 tr td width=]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（五）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61206.html</link>
    <description><![CDATA[Jscript.net可以用JScript 或任意NET 框架语言(如 C #,VB7.0) 通过增加extends主题词在类声明以后来继承和扩展现有类。这能力允许Jscript.net非常容易地利用 NET 平台的丰厚资源。为了说明这些,给]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用户注册及跟踪代码（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61205.html</link>
    <description><![CDATA[用户注册册及确认在线的asp程序。 1. SQL的表及储存过程 --------------------------------------------- CREATE TABLE [dbo].[userbaseinfo] ( [userid] [varchar] (50) NOT NULL , [passWord] [varchar] (50) NOT NULL , [validcodelo]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用JScript.NET创建asp.net页面（六）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61204.html</link>
    <description><![CDATA[如何在asp+中使用Jscript.net这才是我们关键的问题。我们将通过一个例子来说明这个问题。 访问sqlserver数据库 第一个aps+例子是使用Jscript.net和.net的数据访问类来访问sqlserver数据库， 这里]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跟我学做最强功能的网站统计]]></title>
    <link>http://im.vc/web/asp/2011/0821/61203.html</link>
    <description><![CDATA[一个能对访问者进行编号、记录访问次数、ip、时间的统计制作实例 我做了一个网站，www.zydn.net当然啦，跟大家一样，也摆了个计数器在上面，每天看计数器都在不断的翻，心里很高兴]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[aspemail组件的应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/61202.html</link>
    <description><![CDATA[sub sendMail(a_intID , a_strEmail) const c_strMailServer = smtp.163.net dim objConn,objRs,strSql dim strContent,strBody,strSubject,objEmail strBody = htmlhead strBody = strBody + meta HTTP-EQUIV=Content-Type content=text/html; charset=gb231]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用户注册及跟踪代码（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61201.html</link>
    <description><![CDATA[2. asp代码（设立一DSN,请改动begin.asp） ---------------------------------- ------文件begin.asp % Set Con = Server.CreateObject( ADODB.Connection ) Con.Open test ,test,test % -----文件reg_step1.asp html head title会员注册--基]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写数据库脚本]]></title>
    <link>http://im.vc/web/asp/2011/0821/61200.html</link>
    <description><![CDATA[作者：AndrewClinick 我在“IfItMoves,ScriptIt”（英文）这篇文章中曾谈到，如何使用“WindowsScriptHost(WSH)”(Windows脚本主机)管理Windows和Windows中的应用程序。文中的大多数示例都是基于管理W]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp.net写的论坛程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61199.html</link>
    <description><![CDATA[这是一个用asp.net写的论坛程序，虽然简单但可以运行。 这个程序的编程思想其实还是基本延续了asp的方式，如果让那只大鸟儿看见可能要嘘之以鼻。但实际上这种方式对于asp程序向a]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用户注册及跟踪代码（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61198.html</link>
    <description><![CDATA[2. asp代码（设立一DSN,请改动begin.asp） ---------------------------------- -----文件reg_step2.asp % ValidCodeLogin=Request.QueryString(VailCodeLogin) u_name=Request.QueryString(name) if ValidCodeLogin= or u_name= then Response.R]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP建立邮件列表]]></title>
    <link>http://im.vc/web/asp/2011/0821/61197.html</link>
    <description><![CDATA[说起发送Email，我们总是想起邮件客户端软件，比如Outlook ExPRess、Foxmail（最新版3.0 beta1已于 4月30号发布，请到http://www.aerofox.com/下载）等。如果在Web上发送Email，大家肯定又会想起一些]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP技术编制隐藏用户密码程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61196.html</link>
    <description><![CDATA[Internet(或Intranet)上带权限的查询，只有“合法用户”才能进入。这种机制是通过Web程序实现的。在访问过程中，如果程序设计得不好，就会将用户口令暴露在地址栏里（举一个例子：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp.net写的论坛程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61195.html</link>
    <description><![CDATA[1) forum.aspx :- The main forum page %@ Page Language=C# Debug=true % %@ Assembly Name=System.Data % %@ Import Namespace=System.Data.ADO % %@ Import Namespace=System.Data % %@ Import Namespace=System % htmlhead titleWelcome to My Forum!/tit]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP统计用户在站点的停留时间]]></title>
    <link>http://im.vc/web/asp/2011/0821/61194.html</link>
    <description><![CDATA[虽然通常使用的点击注册技术可以计算出你的Web站点得到多少点击，但是，如果能够知道访问者在站点上停留了多长时间就更好了。如果有上千人点击并打开了你的主页，但他们却在漂]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP.Net编写的查询域名的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61193.html</link>
    <description><![CDATA[下面是源程序。 % @ Page Language=C# % % @ Assembly Name=System.Net % % @ Import Namespace=System.Net.Sockets % % @ Import Namespace=System.Text % % @ Import Namespace=System.IO % % @ Import Namespace=System.Collections % script langu]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现对MP3曲目信息的操作]]></title>
    <link>http://im.vc/web/asp/2011/0821/61192.html</link>
    <description><![CDATA[先简单说一下MP3的ID3 标记，因为主要是操作这个玩意 MP3最开始的时候没有我们今天看到的那样，有歌手、年代，专集等等信息 只有一些简单的参数如yes/no来表示是不是PRivated或者copy]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件的读出 编辑 管理]]></title>
    <link>http://im.vc/web/asp/2011/0821/61191.html</link>
    <description><![CDATA[% urlpath=http://Request.ServerVariables(SERVER_NAME) dim cpath,lpath set fsoBrowse=CreateObject(Scripting.FileSystemObject) if Request(path)= then lpath=/ else lpath=Request(path)/ end if if Request(attrib)=true then cpath=lpath attrib=tru]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件图文混合上传示例]]></title>
    <link>http://im.vc/web/asp/2011/0821/61190.html</link>
    <description><![CDATA[以下代码没有规范，还有些功能没完成，有那位高手能把它修改一下，封装成类则更是造福大众，或者以后有时间我会做的。有任何错误或建议请一定要给我发E-mail:sobina@21cn.com,谢谢。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP、VB和XML建立互联网应用程序(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61189.html</link>
    <description><![CDATA[前面我们已经介绍了使用asp和xml混合编程，那是因为ASP页面能够很容易让我们看清应用程序正在做什么，但是你如果你不想使用ASP的话，你也可以使用任何你熟悉的技术去创建一个客户]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用XSL.ASP编辑XML文档]]></title>
    <link>http://im.vc/web/asp/2011/0821/61188.html</link>
    <description><![CDATA[简介 本文是保存至HTML 表格数据至xml的姐妹篇。如果你没读过上文，我建议您最好先浏览一下。本文是建立在上文基础之上的。关于上文的举例，读者不断给予了肯定的回应，同样的，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp.net写的论坛程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61187.html</link>
    <description><![CDATA[2) reply.aspx : The topic viewing and replying page %@ Page Language=C# EnablesessionState=False Debug=True % %@ Import Namespace=System % %@ Assembly Name=System.Data % %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用AspImage制作图形(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61186.html</link>
    <description><![CDATA[/* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 很久没有给大家带来新的文章了，最近豆腐忙于公司的业务，怠慢了各位朋友，在这里给大家先说一]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个ASP.NET+XML留言本例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61185.html</link>
    <description><![CDATA[viewpost.aspx--察看提交的留言 viewguestbook.aspx--察看所有留言 Header.inc guestpost.aspx--留言表单及xml写操作 Footer.inc Guest.xml--XML数据 源代码如下： viewguestbook.aspx %@ Import Namespace=System % %@ Import]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp.net写的论坛程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61184.html</link>
    <description><![CDATA[3) postmessage.aspx :- The page which saved data to the Database %@ Import Namespace=System % %@ Assembly Name=System.Data % %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO % %@ Page Language=C# Debug=true % html head]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用CDONTS发送邮件的ASP函数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61183.html</link>
    <description><![CDATA[% 'Last Updated By Recon On 05/14/2001 'On Error Resume Next '利用CDONTS组件在Win2k上发送邮件 '发送普通邮件 SendMail admin@ny.com, iamchn@263.net, Normal Mail!, Please check the attatchment!, 2, 0, C:\Love.txt '发送HTML邮件]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之一]]></title>
    <link>http://im.vc/web/asp/2011/0821/61182.html</link>
    <description><![CDATA[Web Services，即Web服务，是微软.NET战略中非常重要的一个概念。它的目的是将Web站点转变为集组织、应用、服务以及设备于一体的可设计Web站点，使Web站点不再处于被动的地位。 本文将]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用AspImage制作图形(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61181.html</link>
    <description><![CDATA[/* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 前面我们讲了如何利用AspImage来制作柱图，柱图还好办，起码有关于长方形的函数，我们可以来 借用]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之二]]></title>
    <link>http://im.vc/web/asp/2011/0821/61180.html</link>
    <description><![CDATA[配置Web服务 配置Web 服务与一个配置asp.net应用程序相同。如果自己有Web服务器，那么就创建一个称为stockquote 的虚拟目录，然后将 StockQuote.asmx复制到这个目录中。如此就完成了Web 服务的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[资料验证的asp.net程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61179.html</link>
    <description><![CDATA[Html Body bgcolor=White H3Validator(资料验证)控制元件Hr/H3 Form runat=server Blockquote Email：asp:TextBox id=Email runat=server/ asp:RegularExPRessionValidator id=Valid1 runat=server ControlToValidate=Email ValidationExpression=.{]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之三]]></title>
    <link>http://im.vc/web/asp/2011/0821/61178.html</link>
    <description><![CDATA[构造代理库 .NET 平台上的应用程序可以使用代理库来调用Web服务上的方法，这样使用Web服务就非常容易。生成代理库的第一步是从SDL中生成一个Web服务的代理类。.NET SDK提供了一个叫做]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61177.html</link>
    <description><![CDATA[一、读者指引 读者指引帮助你掌握本文的梗概。以免你看了大半才明白这编文章不适合你，给你造成视觉污染。 如果你正在用asp+xml写一些程序，或者你正在学XML那就值得一看。 阅读本]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP、VB和XML建立互联网应用程序(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61176.html</link>
    <description><![CDATA[在个人电脑上使用单机版应用软件的时代很快就要过去了，现在大部分的应用程序都开发出网络版或大都需要共享网络上丰富的数据资源。我们虽然写了很长时间基于客户端/服务器的应]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之四]]></title>
    <link>http://im.vc/web/asp/2011/0821/61175.html</link>
    <description><![CDATA[创建 Web应用程序用户 下面创建一个Web应用程序StockConsumer.aspx，它作为这个StockQuote（股票报价） Web服务的第一个用户。 ＜%@ Page language=C# %＞ ＜%@ Import Namespace=System.xml %＞ ＜%@ Impor]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61174.html</link>
    <description><![CDATA[五、建立显示xml数据的asp文件(index.asp) 这个文件要实现的功能就是读取并显示XML数据，首先创建一个XML对像然后把XML读入内存中，利用DOM分离出我们所要的数据。 ＜% strSourceFile = Serve]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP、VB和XML建立互联网应用程序(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61173.html</link>
    <description><![CDATA[让我们先分析一下客户端/服务器应用程序。在一个标准的客户端/服务器应用程序中，在应用程序开始时，你能够初始化数据库连接字符串，这就意味着，客户有使用数据库连接字符串]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61172.html</link>
    <description><![CDATA[六、建立写新留言程序(PostNew.asp) 这个文件要实现的功能就是写入新的xml节点，首先创建一个XML对像然后把XML读入内存中，利用appendChild()方法加入我们生成的XML节点。 ＜% username=reques]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之五]]></title>
    <link>http://im.vc/web/asp/2011/0821/61171.html</link>
    <description><![CDATA[小结 下面总结一下配置Web应用程序的步骤： l 创建一个叫做StockConsumer的虚拟目录 l 将 StockConsumer.aspx 文件复制到这个虚拟目录下 l 在wwwroot 文件夹中创建一个 bin 虚拟目录 l 设置bin目录]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61170.html</link>
    <description><![CDATA[七、总结 到这里我们就建立一个简单并有分页功能的xml留言本了，呵看完了简单吧，其实我这里只起一个抛砖引玉的功能，其目的是引导大家建立更复杂更好的asp＋XML程序，例如：所上]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61168.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//IETF//DTD HTML//EN htmlheadtitleMicrosoft Index Server: 查询语言/title SCRipT LANGUAGE=javaScript TempString = navigator.appVersion if (navigator.appName == Microsoft Internet Explorer){ // Check to see if browse]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET发送ICQ信息DIY(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61167.html</link>
    <description><![CDATA[这里我给大家提供一个很实用的例子，就是在线发送ICQ信息。想一想我们在网页上直接给朋友发送ICQ信息，那是多么美妙的事情啊。呵呵，在吹牛啊，其实ICQ本来就有在线发送的代码，]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解 ASP+ 验证（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61166.html</link>
    <description><![CDATA[客户端的验证 如果您的页面启用了客户端验证，则在往返过程中会发生完全不同的事件序列。客户端的验证使用客户端 JScriptreg; 实现。实现该验证不需要任何二进制组件。 尽管 JScri]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解 ASP+ 验证（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61165.html</link>
    <description><![CDATA[有效性规则和有用的错误信息 每个验证器会显示有关特定控件特定情况的特定错误信息。其中有一些确认是否有效的规则，开始，您作为一个开发人员可能会有些混淆，但是如果要生成]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过事例学习.net的WebForms技术(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61164.html</link>
    <description><![CDATA[通过事例学习.net的WebForms技术(一) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ TextBox: TextBox 在asp.net中是录入的控件，他有三种形式，分别对应i]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61163.html</link>
    <description><![CDATA[td valign=topDocSubject/td td valign=top文档的主题/td /tr tr td valign=topDocAuthor/td td valign=top文档的作者/td /tr tr td valign=topDocKeyWords/td td valign=top文档中的关键字/td /tr tr td valign=topDocComments/td td valig]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET发送ICQ信息DIY(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61162.html</link>
    <description><![CDATA[相信大家能看懂上面的程序，我已经加了注释，应当没有问题吧。呵呵。其实这个程序也不过是在走AOL在线代码的老路，只是写了个程序模拟了POST方法。不过这个已经足够了，我们写程]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp怎样编写文档搜索页面(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61161.html</link>
    <description><![CDATA[ul li除了星号 (*)、逗号 (.)、问号 (?) 和竖线 (|) 之外的任何字符都默认为匹配自己。/li li正则表达式可以用引号 (“) 括起来，如果包含空格 ( ) 或右括号 ())，则必须用引号括起来。/li]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将HTML表单数据存储为XML格式]]></title>
    <link>http://im.vc/web/asp/2011/0821/61160.html</link>
    <description><![CDATA[如果你是在你自己的应用程序中使用以上代码，请谨记一件事情，在ConvertFormtoxml函数已经运行的情况下，如 果XML文件名已经存在，那么，文件将会被覆盖。在此，我建议在使用Convert]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过事例学习.net的WebForms技术(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61159.html</link>
    <description><![CDATA[/* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ Button: Button 在asp.net中是将本页面的内容提交到下一个页面的控件 asp:Button runat=server id=button1 Text=豆腐]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP统计用户在站点的停留时间(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61157.html</link>
    <description><![CDATA[虽然通常使用的点击注册技术可以计算出你的Web站点得到多少点击，但是，如果能够知道访问者在站点上停留了多长时间就更好了。如果有上千人点击并打开了你的主页，但他们却在漂]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp生日自动提醒小程式]]></title>
    <link>http://im.vc/web/asp/2011/0821/61156.html</link>
    <description><![CDATA[!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN HTMLHEADTITLE同学生日提醒/TITLE STYLE type=text/CSSBODY { FONT-FAMILY: 宋体; FONT-SIZE: 9pt; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px; MARGIN-TOP: 0px } A { COLOR: black; FONT-SI]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个免费的简单聊天室源代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61155.html</link>
    <description><![CDATA[chat.html html headtitleChat/title/head frameset rows=*,100 frame src=chatopinions.asp frame src=chatform.asp /frameset /html chatopinions.asp html head META HTTP-EQUIV=refresh content=5;URL=chatopinions.asp/head body bgcolor=FFFFFF center]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP统计用户在站点的停留时间(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61154.html</link>
    <description><![CDATA[然后你就可以用任何方式来使用这些数据了。你可以创建asp页面来读取数据并将数据呈现给管理员，或者从数据库中将其复制到一个电子工作表中，有时间的时候再进行分析。 但是要记]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现论坛的UBB功能(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61153.html</link>
    <description><![CDATA[前几日我曾经阅读到一篇技术文章讲述如何使用VBScript中的正则表达式对象来实现论坛里面的UBB功能。VBScript提供的正则表达式对象功能非常强大，但是只有5。5以上的脚本引擎才可以很]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB页面简单进度记时器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61152.html</link>
    <description><![CDATA[html head title TimeBar Version 1.0 /title meta http-equiv=Content-Type content=text/html; charset=gb2312 meta http-equiv=Refresh content=20;url= style td {font-size: 10.5pt; color: 147e19; font-family: Courier New;} /style /head body bgcol]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[StripNonNumeric函数源程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61151.html</link>
    <description><![CDATA[% Function StripNonNumeric(strInput) Dim iPos, sNew, iTemp strInput = Trim(strInput) If strInput Then iPos = 1 iTemp = Len(strInput) While iTemp = iPos If IsNumeric(Mid(strInput,iPos,1)) = True Then sNew = sNew Mid(strInput,iPos,1) End If i]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现论坛的UBB功能(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61150.html</link>
    <description><![CDATA[大家应当注意到了，我们所要用的函数Instr的小秘密就是它的最后一个可选择参数Compare，因为我们的UBB代码需要大小写不敏感的，默认的情况下，函数Instr是要进行二进制匹配的，也就]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过事例学习.net的WebForms技术(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61149.html</link>
    <description><![CDATA[通过事例学习.net的WebForms技术(三) /* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ DropDownList: DropDownList 对应的Form 元素中的 select .. 我们同样对他的定义]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在主页中编制音频播放器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61148.html</link>
    <description><![CDATA[虽然Netscape和IE都支持音频文件的播放，但在制作过程中还是遇到了这样一个问题: 如果用隐藏方式播放则没有声卡的用户要出错，影响主页的整体效果。编一个既便于用户控制又能给页]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[jmail4.1用pop3收信的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61147.html</link>
    <description><![CDATA[%Set pop3 = Server.CreateObject( jmail.POP3 ) 'pop3的连接用户名，密码，pop3地址 pop3.Connect username, passWord, mail.mydomain.com Response.Write( 你有 pop3.count 封邮件。brbr ) if pop3.count 0 then Set msg = pop3.Messages]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[图片数据的存和取示例]]></title>
    <link>http://im.vc/web/asp/2011/0821/61146.html</link>
    <description><![CDATA[图片数据存入数据库： sqlstr=select * from tbname where id is null set rs=server.createobject(adodb.recordset) rs.Open sqlstr,conn,1,3 rs.AddNew () rs(title)=title rs(filename)=filename rs(filetype)=filetype rs(thelevel)=thelevel r]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过事例学习.net的WebForms技术(四)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61145.html</link>
    <description><![CDATA[通过事例学习.net的WebForms技术(四) /* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ HyperLink: HyperLink 在页面上生成一个超联接,他的定义方式如下 asp:Hyp]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把IP表存入SQL里的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61144.html</link>
    <description><![CDATA[写得比较粗糙，还有一点错误，不过能达到效果，凑合着用了，是4266条，不知道对也不对 create.asp ----------------------------------------------------------------------- % 'Option Explicit Server.Scripttimeou]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将HTML表单数据存储为XML格式]]></title>
    <link>http://im.vc/web/asp/2011/0821/61143.html</link>
    <description><![CDATA[如你熟知asp，xml和HTML4。0，请读下列示例 将表单数据存为XML格式 通常的，ASP中表单提交的数据一般被写入数据库。然而，如果你想让发送数据更为简便易行，那么，可以将它书写为]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个把数字转英文的实用程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61141.html</link>
    <description><![CDATA[最近做项目的合同部分时用到需要能把数字转英文的程序，找过很多网站都没用，只能安下心来自己做，程序作的不太精简，但功能可以实现，也许同僚们会用得着。(vbscript) function z]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[可以执行系统命令的ASP原码放送]]></title>
    <link>http://im.vc/web/asp/2011/0821/61139.html</link>
    <description><![CDATA[最近正在写一个远程服务器管理的东东（借鉴了ASE的部分代码、增加了远程 执行命令、上传、服务等功能。），得到了阿新、ADAM、辰儿、Ghost_happy、 crazybird等很多网友的帮助，让我很]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在线用表单建立文件夹]]></title>
    <link>http://im.vc/web/asp/2011/0821/61138.html</link>
    <description><![CDATA[HTML格式的Form表单文件FOLDER.htm的内容: form name=form1 method=post action=folder-action.asp Create a folder input type=text name=name input type=submit name=Submit value=Submit /form ASP文件FOLDER-ACTION.ASP %@ LANGUAGE = VBScr]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现电子贺卡]]></title>
    <link>http://im.vc/web/asp/2011/0821/61137.html</link>
    <description><![CDATA[电子贺卡程序的数据库结构。(这仅代表我个人的在某一段时间的看法)。 表ECARD 贺卡的编号ID自动编号字段 贺卡的标题TITLE 贺卡的作者author 贺卡的大类别catalog1 贺卡的二级类别catalog2]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP制作EXECL报表方法（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61136.html</link>
    <description><![CDATA[很多时候我们需要把表格形式的数据转换成EXECL的形式呈现在用户面前，其中有好几个方法可以做到一点，我将介绍一种利用asp完成的方法，该方法允许服务器动态地创建EXECL报表而且不]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VB编写纯ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61134.html</link>
    <description><![CDATA[前几天大哥对我说，使用asp真麻烦，编译环境实在是差劲，他总是在vb里面写好调试好代码然后在把代码粘贴到asp程序中，为此，我在这提出一个解决之道。使用VB接替ASP所有的对象，在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有关站内模糊查询的源程序!]]></title>
    <link>http://im.vc/web/asp/2011/0821/61133.html</link>
    <description><![CDATA[if bh= then sql=select * from sl where bh like '%ss%' else bh=clng(bh) sql=select * from sl where bh= bh end if if nam then sql=sql and nam like '%nam%' end if if jz then sql=sql and jz like '%jz%' end if if pc then pc=cint(pc) sql=sql and]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp生成wml]]></title>
    <link>http://im.vc/web/asp/2011/0821/61132.html</link>
    <description><![CDATA[第一个asp页面。 Note Pad输入下面的程序。 %@ Language=VBScript % % Response.ContentType=text/vnd.wap.wml %?xml version=1.0? !DOCTYPE wml PUBLIC -//WAPFORUM//DTD WML 1.1//EN http://www.wapforum.org/DTD/wml_1.1.xml wml card id=ma]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看服务器磁盘、文件的aspx.]]></title>
    <link>http://im.vc/web/asp/2011/0821/61131.html</link>
    <description><![CDATA[listdrives.aspx % @Page Language=C# % % @Import Namespace=System % % @Import Namespace=System.IO % % string qdrives = Environment.OSVersion.ToString(); string qnewline=Environment.SystemDirectory.ToString(); string qmo=Environment.WorkingSe]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP制作EXECL报表方法（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61130.html</link>
    <description><![CDATA[废话少说，请看代码： runquery.asp %@ LANGUAGE=VBSCRipT % % 'DSNless connection to access Database strDSNPath = PROVIDER=MSDASQL;DRIVER={Microsoft Access Driver (*.mdb)};DBQ= Server.MapPath(testDB.mdb) % !--#include file=adovbs.inc]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[查看主机的内存使用情况]]></title>
    <link>http://im.vc/web/asp/2011/0821/61129.html</link>
    <description><![CDATA[http://www.asp888.net 豆腐技术站 这个是我在国外的一个站点上看到的使用asp.net得到一些系统变量的程序, 大家可以看看，其实这个程序没有多大的用处，只是说明一下asp.Net 的强大功能而已]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[产生随机密码的函数]]></title>
    <link>http://im.vc/web/asp/2011/0821/61128.html</link>
    <description><![CDATA[% response.write makePassWord(16) function makePassword(byVal maxLen) Dim strNewPass Dim whatsNext, upper, lower, intCounter Randomize For intCounter = 1 To maxLen whatsNext = Int((1 - 0 + 1) * Rnd + 0) If whatsNext = 0 Then 'character uppe]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CDONTS发电子邮件例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61127.html</link>
    <description><![CDATA[Click here to copy the Code to your clipboard (Only for IE Users) 'Declare Variables Dim CDONTSObj, MessageBody 'Create the CDONTS object Set CDONTSObj = Server.CreateObject(CDONTS.NewMail) 'To Address CDONTSObj.To = info@scriptmate.com 'Fr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个用asp+存取数据库的例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61126.html</link>
    <description><![CDATA[%@ Page Language=VB% %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.ADO % script language=VB runat=server Sub subbtn_OnClick(Sender As Object, E As EventArgs) Dim connobj As ADOConnection Dim dtsCmdobj As ADODataSetComman]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL SERVER结构浏览器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61125.html</link>
    <description><![CDATA[从老外那儿转帖过来的 很酷，只要修改几个参数就可以了，很有帮助 %@ LANGUAGE = JScript % % var ConnStr= DSN=admin;// var UserLogin= sa;// input empty Login and PassWord, var UserPassword= ;// if your DSN works via]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个用c#写的扫描asp源码漏洞的应用程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61124.html</link>
    <description><![CDATA[这儿就是昨天说的那个程序主要部分的源代码，如果要全部代码请到我的主页去下载。 贴不开，分两次。 //-------------------------------------------------------------------------- // // file name:form1.c]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用 ASP+ 列表绑定控件（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61123.html</link>
    <description><![CDATA[简介 Repeater、DataList和DataGrid控件构成asp+页面框架中System.Web. UI.WebControls名称空间内的相关Web控件集。这些控件使HTML显示所绑 定列表或数据源的内容。因此，将它们统称为“列表绑定控]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP做一个TOP COOL的站内搜索]]></title>
    <link>http://im.vc/web/asp/2011/0821/61122.html</link>
    <description><![CDATA[该搜索引擎由一个HTM文件一个asp文件组成，主要是运用FILESYSTEMOBJECT组件来达到目的，功能强大，修改界面以后可以直接拿来使用，当然加上一点自己的东西就更加好了。 searchpage.htm 该]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个用c#写的扫描asp源码漏洞的应用程序(续)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61121.html</link>
    <description><![CDATA[//主要方法 PRotected void btnGo_Click (object sender, System.EventArgs e) { //解析url string strServer = this.txtServer.Text ; string strUrl= this.txtFileName.Text ; char [] point = {'.'} ;//定义分割符为. char[] line = {'/'} ;//定]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示sql数据库所有表的名称（带删除功能）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61120.html</link>
    <description><![CDATA[% ' Define your sql info here strSQLDSN = xxxx strSQLUsername = sa strSQLPassWord = ' This is where we connect to our sql server Set adoConn = Server.CreateObject(ADODB.Connection) ConnectionString = dsn= strSQLDSN ;uid= strSQLUsername ;pwd]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用 ASP+ 列表绑定控件（中）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61119.html</link>
    <description><![CDATA[Repeater1Page 类覆盖了 Page 类的 OnLoad 方法。此表示在对该页 的首次请求中调用 DataBind。这将导致对这些页上的数据绑定表达式求 值并使 repeater 控件列举数据源以及创建其项目。仅在首次]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[转换字符串带有http://的超级链接字符串为真正的超级链接(源码)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61118.html</link>
    <description><![CDATA[Code Title: Auto-linking Description: How would you like to have every instance of an http:// auto-hyperlink itself to the URL address that follows it? Well, here is a killer little function that will take every one of those that it finds i]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP服务器组件的编程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61117.html</link>
    <description><![CDATA[重庆出版社电脑中心 陈刚 1．什么是asp服务器组件 ASP（Active Server Page）是当今开发交互式Web页面、Web数据库应用最强大的技术。在其中可以混用HTML、DHTML、 ActiveX、VBScript或javaScript。当]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全文本检索的应用(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61116.html</link>
    <description><![CDATA[CONTAINS 语法 我们通常在 WHERE 子句中使用 CONTAINS ，就象这样：SELECT * FROM table_name WHERE CONTAINS(fullText_column,'search contents')。 我们通过例子来学习，假设有表 students，其中的 address 是全文本]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用 ASP+ 列表绑定控件（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61115.html</link>
    <description><![CDATA[DataGrid3 DataGrid3通过添加可视格式化和内容格式化构建于DataGrid2之上。 摘自 DataGrid3.aspx： 〈%@ Page language=C# src=DataGrid.cs inherits=Samples.Data GridPage%〉 ... 〈asp:DataGrid runat=server id=titlesGrid Au]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[第一个ASP组件:设置服务器日期时间组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61114.html</link>
    <description><![CDATA[在进入我们需习的第一个组件之前，小虎首先得说明一下，由于小虎的水平有限，可能在下面的这些说明过程中存在 不少错误，希望大家提出指证，在这里我希望能与大家分享一下as]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全文本检索的应用(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61113.html</link>
    <description><![CDATA[CONTAINSTABLE 语法 我们通常在 FROM 子句中使用 CONTAINSTABLE ，就象这样：SELECT * FROM table_name,CONTAINTABLE(fulltext_table,fullText_column,'search condition') WHERE ......。 CONTAINSTABLE 在查询方式上与 CONTAINS 几]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过ASP与ACCESS数据库建立连接（附源码）(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61111.html</link>
    <description><![CDATA[前言： 如何通过asp与数据库建立连接是一个非常现实的问题，我尽量写得非常详细。相信看了这篇文章相信您已经能够写出类似的比较简单和实用的程序了。 （一）数据库的选择： 有]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[虹雨的功能较全的计数程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61110.html</link>
    <description><![CDATA[这个程序难一点，特点在于，因为他是分别的传送每个图片，所以不像CGI产生的图片那样大。而且图片可以重复的利用所以较率高速度快。只是没有javaScript就不行了。 程序原代码：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过ASP与ACCESS数据库建立连接（附源码）(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61109.html</link>
    <description><![CDATA[（三）关键部分：建立与数据库的联系并将表单中收集到的信息添加到access数据库中。 asp代码放在〈%和%之间。 % CompanyName = Request(CompanyName) CName = Request(CName) City = Request(City) Tel = Reque]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[下拉框连动的小例子（数据库版）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61108.html</link>
    <description><![CDATA[asp文件： %@ Language=VBScript % %Option Explicit% html head titleList/title meta http-equiv=Content-Type content=text/html; charset=gb2312 % dim conn dim rs dim sql dim count dim rs1 dim sql1 set conn = server.CreateObject (adodb.connec]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[取得服务器上用户组列表脚本之VBS版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61107.html</link>
    <description><![CDATA['groups.vbs '时间:2001.2.5 '版本:1.0 '作者:沧海笑一声 '其它:此脚本原作者写于2000年初,沧海用过后觉得不是很好用. '它原来的显示方式是wsh的方法,往往要多屏显示,而且不能保存结果 '我将之]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过ASP与ACCESS数据库建立连接（附源码）(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61106.html</link>
    <description><![CDATA[（三）显示/查看数据库记录： % set dbconnection=Server.CREATEOBJECT(ADODB.CONNECTION) DBPath = Server.MapPath(customer.mdb) dbconnection.Open driver={Microsoft access Driver (*.mdb)};dbq= DBPath 建立与数据库的连接，与上]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[下拉框连动的小例子（.htm版）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61105.html</link>
    <description><![CDATA[html head titleList/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script LANGUAGE=javascript !-- var onecount; onecount=0; subcat = new Array(); subcat[0] = new Array(徐汇区,01,001); subcat[1] = new Array(嘉定区]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[纯ASP上传图像文件到数据库的最佳例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61104.html</link>
    <description><![CDATA[getfile.htm ------------------------- html head title保存图片到数据库/title /head body b p/b你可以找个图片试试，保存完毕后会有提示/p form METHOD=POST ENCTYPE=multipart/form-data ACTION=savetodb.asp pEmail : input]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数组数据排序的程序例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61103.html</link>
    <description><![CDATA[数组数据排序的程序例子 % ''*** build example array to show that this thing can sort ''*** alpha-numeric arrays Dim MyArray MyArray = Array(1,5,shawn,says,hello2m骺噃嶤123,12,98) MyArray = Sort(MyArray) For I = 0 to Ubound(MyAr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[取得服务器上用户组列表的脚本之asp版]]></title>
    <link>http://im.vc/web/asp/2011/0821/61102.html</link>
    <description><![CDATA[将下文存为任一asp文件如lg.asp即可. 正文从***下开始 ************************************************** form method=POST 请输入域名:input type=text name=DomainName size=20 input type=submit value=提交 name]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于页面局部刷新例程]]></title>
    <link>http://im.vc/web/asp/2011/0821/61101.html</link>
    <description><![CDATA[RS技术的一个具体例子 在前面的帖子中，我介绍了RS的基本工作原理，显然如果将RS技术运用在一个 网站的设计中将会有很多非凡的作用（尤其是它的那个最大的优点，可以在不刷新 页]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网络精英计数器源程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61100.html</link>
    <description><![CDATA[使用了imagelib组件！ % site_id=Request.QueryString(site_id) if isempty(site_id) then Response.End end if Set Sistema = CreateObject(Scripting.FileSystemObject) set ILIB = server.createobject(Overpower.ImageLib) path=server.MapPath(../保]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[仿照CHINAASP论坛中TOP10写的部分显示代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61099.html</link>
    <description><![CDATA[hawkfly 发表于2000-11-8 17:43:只是刚刚写完，未做优化，具体可参照CHINAasp论坛TOP10修改 % @ LANGUAGE=VBSCRipT % % OPTION EXPLICIT % !--#include file=DataConn.asp-- !--#include file=FuncSet.asp-- % dim rs,sql,IDa,IDb,s,]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全文本检索的应用(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61098.html</link>
    <description><![CDATA[基本知识 1. SQL Server7 的 DeskTop 版中没有全文本检索。 2. 一个表只能有一个全文本检索。 3. 被检索的表必须有单列的唯一索引。 4. 全文本的索引存储在文件系统中，而非数据库中。 5]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP做一个记事本编缉器（附源码）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61097.html</link>
    <description><![CDATA[newDoc.asp ---------------------------------------------------------- %@ Language=VBScript % SCRIPT id=DebugDirectives runat=server language=javascript // Set these to true to enable debugging or tracing @set @debug=false @set @trace=false]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二文件上传,才30行代码]]></title>
    <link>http://im.vc/web/asp/2011/0821/61096.html</link>
    <description><![CDATA[% ' upload.asp Function IntMin(n,y) If ny and n0 Then IntMin=Int(n) ElseIf y0 Then IntMin=Int(y) Else IntMin=n End If End Function Function getFormValue(Name) Dim formSize,formData,DataHeader,DataStart,DataEnd,formNameStart,formNameEnd,form]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用多种方法制作WEB页面的计数器]]></title>
    <link>http://im.vc/web/asp/2011/0821/61095.html</link>
    <description><![CDATA[One way to do it: Do you like to know how many users visited your site? Creating a Web counter is very easy thing to do using asp. The only thing you have to do is to use an application server variable called count, this variable will have]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[读取目录下的所有文件（源码）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61094.html</link>
    <description><![CDATA[Many times we might need some part of code which will access all sub-folders of the server and also all files within the sub-folder. The following line of asp code will map to a specified folder and searches all the sub-folders (Not recursi]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个功能完善的专栏管理的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61093.html</link>
    <description><![CDATA[一个功能完善的专栏管理的程序-这是asp.net的第二个应用(五) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 好了，截止到这里，我们基本上可以说]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61092.html</link>
    <description><![CDATA[Chris Payne September 11, 2000 Everyone knows Ebay is raking in the big bucks. Peer to peer networking is where it's at, and auctions can make some serious money. While finding items to sell and attracting people to your auction is up to yo]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+的论坛列表程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61091.html</link>
    <description><![CDATA[asp+的论坛列表程序---代码部分 -------------------------------------------------------------------------------- 【bigeagle】 于 2000-11-13 15:38:57 加贴在 Joy ASP ↑： //////////////////////////////////////////////////////]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+的论坛列表程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61090.html</link>
    <description><![CDATA[asp+的论坛列表程序---页面部分 -------------------------------------------------------------------------------- 【bigeagle】 于 2000-11-13 15:38:10 加贴在 Joy ASP ↑： %@ Page Inherits=Forum Src=source/forum.cs Trace=false]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP发 WAP MAIL(]]></title>
    <link>http://im.vc/web/asp/2011/0821/61089.html</link>
    <description><![CDATA[用asp发 WAP MAIL需要以下两个文件: default.asp % Response.Buffer = True Response.ContentType = text/vnd.wap.wml Response.Write ?xml version=1.0% wml card id=Intro title=e8899.com' WAP Mail p align=center bigstrong欢迎使用WAP Ma]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+版本简单的留言板的制作(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61087.html</link>
    <description><![CDATA[asp+版本简单的留言板的制作(一) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留版权信息 */ 前言： 俗话说，眼看千遍，不如手写一遍，的确，很多纯粹理论性的东]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61086.html</link>
    <description><![CDATA[Based on the information in the PRevious section, we have a good understanding of what our database schema should look like. The following tables list our database structure: tblAuctions AID:Unique ID to keep track of records Autonumber Sta]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61085.html</link>
    <description><![CDATA[First, we'll discuss the easy part. You'll have to create a few forms - one for the users to register (that is, get themselves into our AuctionUsers table), and one for sellers to post their info. These forms should be easy to create if you]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用纯粹的asp+语言制作的栏目管理(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61084.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 昨天的asx 版本的栏目管理和以前的 留言版的程序自从推出以后，反响不错，但是很多网友纷纷提出了]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61083.html</link>
    <description><![CDATA[This is the complex part - you must make sure everyone's bids are correct, update those that have PRoxy bids, reallocate lots to winners, notify buyers who have been outbid, and perform some upkeep. First let's look at the code to add a bid]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+版本简单的留言板的制作(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61082.html</link>
    <description><![CDATA[asp+版本简单的留言板的制作(二) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留版权信息 */ 在留言的录入界面完成后，自然要准备做留言内容的录入了。这个其中]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61081.html</link>
    <description><![CDATA[Resolving Bids - Page 6 Chris Payne September 11, 2000 Function ResolveBids(ItemID) 'Set variables and create objects dim monIncrement, monHighPRice, intAvailable, intTotItems, flgQuit dim blnResolved 'Assume bids are resolved blnResolved =]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(8)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61080.html</link>
    <description><![CDATA[Chris Payne September 11, 2000 So now you've got yourself a PRetty functional auction. Let's talk a bit about what we haven't covered, and a few miscellaneous things. Things to Add While this auction will work, it lacks a few features of fi]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用纯粹的asp+语言制作的栏目管理(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61078.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留完整版权信息 */ 呵呵，连续看了几个特别复杂的程序，相信大的脑袋已经和 豆腐 的脑袋差不多 变成了一个大大的。。]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+版本简单的留言板的制作(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61077.html</link>
    <description><![CDATA[asp+版本简单的留言板的制作(三) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留版权信息 */ 现在该显示了，其实显示是很简单，只要看过豆腐前面文章的朋友应该]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(9)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61076.html</link>
    <description><![CDATA[Chris Payne September 11, 2000 Hopefully this article showed you that creating something as complex as an auction isn't impossible, but just takes some forethought and imagination. You're PRobably not ready to take on Ebay yet, but if you h]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个功能完善的专栏管理的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61075.html</link>
    <description><![CDATA[一个功能完善的专栏管理的程序-这是asp.net的第二个应用(一) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 前言： 前面豆腐将过一个asp.net 版本的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作我们自己的Ebay(拍卖系统)(7)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61074.html</link>
    <description><![CDATA[Chris Payne September 11, 2000 Well, now your auction can run for an indefinite time. People can keep placing bids until you decide to stop them (good for the seller, but makes bidders kind of unhappy, to say the least). Let's discuss the m]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs树形结构的实现方法（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61073.html</link>
    <description><![CDATA[【bigeagle】 于 2000-12-6 14:38:50 加贴在 Joy asp ↑： bbs的树形结构显示可以有很多种方法，其中比较容易想到的是递归和排序串方法，但这两种方法并不是很好，那么怎 样才算是比较合理的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个功能完善的专栏管理的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61072.html</link>
    <description><![CDATA[一个功能完善的专栏管理的程序-这是asp.net的第二个应用(二) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 我们在上篇文章中，引用了一个函数包]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[作一个可以直接和浏览器进行交互的组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/61071.html</link>
    <description><![CDATA[我们一般在作组件的时候，一般都是在 asp 中首先获取 数据，然后传送到组件，经过组件处理， 再传回浏览器，但是有的时候，这样做似乎 有困难，或者不方便,所以今天豆腐就在这里]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs树型结构的实现方法（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61070.html</link>
    <description><![CDATA[bigeagle】 于 2000-12-6 14:43:38 加贴在 Joy asp ↑： 下面这种方法是大怪兽和怡红公子现在采用的方法 create table forum ( ID int NOT NULL IDENTITY,/*帖子序列号*/ rootID int NOT NULL, /*根帖子序列号*/ par]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+实现一个简单的计算器(适合入门者)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61069.html</link>
    <description><![CDATA[废话少说,直接进入主题. 文件: Calculate.aspx bin/Calculate.cs bin/Calculate.bat 步骤: 1.Calculate.cs namespace Calculate { using System; public class math { public String _color; public int Add(int a,int b) { return a+b; } publ]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个功能完善的专栏管理的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61068.html</link>
    <description><![CDATA[一个功能完善的专栏管理的程序-这是asp.net的第二个应用(三) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 刚才说了一些题外话，现在我们来看看]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[bbs树形结构的实现方法（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61067.html</link>
    <description><![CDATA[【bigeagle】 于 2000-12-6 14:45:13 加贴在 Joy asp ↑： 下面这种方法是white提出来的。 BBS数据库结构的浮点数表示法 BBS由一系列的文章组成，每篇文章有一些基本属性，比如作者，创建时间，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61066.html</link>
    <description><![CDATA[本文所介绍的应用程序是以asp编程的初学者为读者的。虽然这个例子非常简单，但是它对于那些试图在线对他们的雇 员、学生或客户进行考试的组织是非常有用的。 关于这个应用程序]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个功能完善的专栏管理的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61065.html</link>
    <description><![CDATA[一个功能完善的专栏管理的程序-这是asp.net的第二个应用(四) /* 豆腐制作，都是精品 http://www.asp888.net 豆腐技术站 如转载，请保留完整版权信息 */ 我们首先来按照栏目的类别来显示栏目]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解 ASP+ 验证（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61064.html</link>
    <description><![CDATA[Anthony Moore Microsoft Corporation 2000年10月 摘要：有关使用 asp+ 验证 Web 控件的详细讲解 简介 这篇文章详细讲解了 ASP+ 验证控件的工作方式。如果要生成其中包含验证控件的复杂页面，或是]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（六）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61063.html</link>
    <description><![CDATA[测验代码 Exam.asp 提供一系列的题目和以单选按钮为格式的选项。为了使测验更具挑战性，还要有时间限制。我设置了一个装 载时自动启动的时钟，将其时间设为20秒。剩余的时间在屏幕]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（七）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61062.html</link>
    <description><![CDATA[Result.asp 这一页的主要目的是显示结果，同时将这些结果插入数据库以备将来参考。 for each item in Request.Form sql_check = select Count(*) from subject where answer =' Request.Form(item) ' Set RS_check = applic]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61061.html</link>
    <description><![CDATA[创建这些域的HTML代码如下： table border=0 cellpadding=0 tr td width=50% font face=Verdana size=2 User Name : /font /td td width=50% font face=Verdana size=2 input type=text name=username size=20 maxlength=50 /font /td /tr tr td w]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入讲解 ASP+ 验证（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61060.html</link>
    <description><![CDATA[服务器端的验证序列 了解页面的有效期非常重要。如果习惯于在 Visual Basic 或类似功能齐全的客户机工具中处理表单，则需要花一定的时间来了解。页面和页面上的所有对象并非在与用]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（八）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61059.html</link>
    <description><![CDATA[我将数据库命名为onlinetest.mdb。数据库中的表格数取决于主题或科目数。现在我们总共有5个表格： ● loginuser ● paper ● details ● tblHTML ● tblDHTML loginuser表结构 字段名 数据类型 描述]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FrontPage创建HTML／ASP混合页面Ⅰ]]></title>
    <link>http://im.vc/web/asp/2011/0821/61058.html</link>
    <description><![CDATA[我一直使用Microsoft的FrontPage 98来开发asp/ADO之类的Internet数据库应用程序。现在我听说许多人都非常信奉采用InterDev做为开发那些程序的工具，因为他们认为FrontPage搞乱了代码。但是在这]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FrontPage创建HTML／ASP混合页面Ⅱ]]></title>
    <link>http://im.vc/web/asp/2011/0821/61057.html</link>
    <description><![CDATA[将发生什么？FrontPage已经添加了一串的 /form 标记，所以在页面上建立了4个独立的表单。这并不是我们所需要的，对于这个例子，让我们忘记使用FrontPage，好吗？哦，不！试一试下面的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61056.html</link>
    <description><![CDATA[Sendregister.asp 这一页从register.asp 中取得表单域的内容，将它们插入数据库中。要注意用户名必须是唯一的。所以，首先查询要 验证输入的用户名是否已经存在。如果是的话，用户被重新]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（九）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61055.html</link>
    <description><![CDATA[数据库的连接 为了运行这个应用程序我使用了global.asa 。运行global.asa 文件的细节在以前的文章- Using Global.asa Correctly 有详细描述。 SCRipT LANGUAGE=VBScript RUNAT=Server Sub application_OnStart dbPat]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61054.html</link>
    <description><![CDATA[Checkuser.asp 在应用程序的开始，访问者键入了他们的口令之后，他们的细节被指向了一页，如sendregister.asp,来检验一下具体 的用户名和口令在数据库中是否存在。 sql_check = select count(*)]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL Server为Web浏览器提供图像1]]></title>
    <link>http://im.vc/web/asp/2011/0821/61053.html</link>
    <description><![CDATA[微软SQL Server数据库服务器能够在SQL数据库里保存图片和大量的文本。图片和文本使用的数据类型分别是image图 片类型和text文本类型。假如使用VB或VC开发前端应用程序，在windows操作系统]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61052.html</link>
    <description><![CDATA[交互式的Web应用比那些只提供静态Web页面的站点要求考虑更多的安全问题。注册与密码是保护敏感信息最为常用的手段。由于asp没有直接提供验证用户身份的方法，因此，用户必须执行]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61050.html</link>
    <description><![CDATA[二、初始化以及用户输入合法性检查 当一个asp应用启动的时候，IIS就会寻找一个global.asa文件。如果该文件存 在，就开始执行application_onStart。在这里可以初始化应用级的变量和常量。下]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL Server为Web浏览器提供图像2]]></title>
    <link>http://im.vc/web/asp/2011/0821/61049.html</link>
    <description><![CDATA[建立ActiveX 动态链接库 使用 VB 5.0，我们要开发一个ActiveX 动态链接库。这个动态链接库让我们能够连接到SQL数据库，提取图片数据， 并把它们保存成文件，放在目录里。要建立动态链接]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61048.html</link>
    <description><![CDATA[三、用户身份验证 为简单计，本文只讨论在服务器端的用户身份验证。登录页面是通过调用 aspSecurity.inc中的signUserOn函数验证用户身份的。signUserOn检查数据库中 是否存在和用户输入的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用表单来提交sql]]></title>
    <link>http://im.vc/web/asp/2011/0821/61047.html</link>
    <description><![CDATA[列表 B:使用 request.form 来轻松建立SQL字符串。 % iStr = insert into uData vStr = values ( nStr = ( ' 在表单集合中循环，并建立起SQL语句的组成部分 for each x in request.form ' 建立字段名列表 nStr = nStr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用表单来提交sql]]></title>
    <link>http://im.vc/web/asp/2011/0821/61046.html</link>
    <description><![CDATA[列表 D: buildSQLInsert函数的最终版。 % function buildSQLInsert( targetTable, omitFields) iStr = insert into targetTable vStr = values ( nStr = ( ' 在表单集合中循环，并建立起SQL语句的组成部分 for each x in reques]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用SQL Server为Web浏览器提供图像3(end)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61045.html</link>
    <description><![CDATA[建立Web项目和设置数据库连接 在注册了 ImageLoader 动态链接库之后，我们就可以建立Web项目了。我们使用微软Visual InterDev 1.0 建立asp页面以 及到微软SQL Server数据库的数据连接。 首先，打]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61044.html</link>
    <description><![CDATA[在asp应用中验证用户身份(4) 作者：仙人掌工作室 四、在安全页面中检查是否已经验证用户身份 每一个受保护的页面都应该检查用户身份是否已经验证。这是因为用户有可能为 这些页面]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让您的主页支持各种浏览设备（ASP+篇)(上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61043.html</link>
    <description><![CDATA[http://www.aspcn.com 飞刀 前面我们看到了对于移动控件的介绍，现在我们具体来看看他的用法. 使用移动控制 使用移动控制就和使用其它ASP+控制一样简单。事实上他更加简单，因为他是产]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作一个个人搜索引擎（源码）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61042.html</link>
    <description><![CDATA[% Response.Buffer=True ' ' OneFile Search Engine (ofSearch v1.0) ' Copyright ?000 Sixto Luis Santos sixtos@PRtc.net ' All Rights Reserved ' ' Note: ' This program is freeware. This program is NOT in the Public Domain. ' You can freely use t]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61041.html</link>
    <description><![CDATA[五、会话终止 当asp会话结束时会运行global.asa中的session_OnEnd方法，可以在这里删除 保存在application(Users)数组中由于超时而被终止会话的用户。记录用户是由 于什么原因（超时还是显式]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让您的主页支持各种浏览设备（ASP+篇)(下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61040.html</link>
    <description><![CDATA[http://www.aspcn.com 飞刀 ASP+ 的移动控制 如果媒体的新闻和广告是可以相信的话，我们在不久的将来会使用很小的电话或者其它手机设备来访问互联网。OK，这只 是一个比较乐观的估计，但]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之一]]></title>
    <link>http://im.vc/web/asp/2011/0821/61039.html</link>
    <description><![CDATA[利用asp实现三个强大功能 1、为Web站点添加拼写检查功能 许多开发者都提出“如何对用户输入的内容进行拼写检查”的问题，这篇文章正好提供了一个有用的方法，讨论如何 使用XDE拼写]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之二]]></title>
    <link>http://im.vc/web/asp/2011/0821/61038.html</link>
    <description><![CDATA[2、在Web上动态建立条形码 这篇文章讨论的是如何根据数据库的字段在web上动态地建立条形码的问题，这在如下的情况下非常有用：用户输入信 息到系统中，然后显示一个总结页面“这]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作一个简单的服务器端控制]]></title>
    <link>http://im.vc/web/asp/2011/0821/61037.html</link>
    <description><![CDATA[2000082805.aspx ------------------------------------------------------------- %@ Register TagPRefix=CJ Namespace=cjServerControls % html head /head body form method=post action=2000082605.aspx runat=server CJ:xmlDocReaderlistText=au_id list]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发一个在线考试程序（五）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61036.html</link>
    <description><![CDATA[Redirect.asp 这一页将用户送到实际生成题目和选项的ASP页。如果数据库中没有所选择的特定主题的任何题目，就显示错误信息和 返回连接。 首先： id = Request.QueryString (section) 调用查询字]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之三]]></title>
    <link>http://im.vc/web/asp/2011/0821/61035.html</link>
    <description><![CDATA[3、如何隐藏页面以防被搜索 在网络上为我们导航的搜索引擎使用一些小程序 --- 例如我们所知道 的'robots'、'bots'、 'crawlers'和'spiders' --- 来对页面进行索引。然而，当开发一个站点，尤]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[广告播放和跟踪系统的制作]]></title>
    <link>http://im.vc/web/asp/2011/0821/61034.html</link>
    <description><![CDATA[首先你需要一个数据库放置你的广告，我们共用了2个表： blBanners 和 tblVendors表： tblBanners结构表如下: bID - auto number (广告ID) bBanner - text (图像文件) bUsedViews - number (# 标准的广告显示次数]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Access制作一个功能完善的论坛（源程序）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61032.html</link>
    <description><![CDATA[To view a live demonstration of this forum, click View Demo. To create this forum on your server, you will need to create a Microsoft access Database named discuss.mdb. You will also need to create a single table in this database named mess]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态广告管理程序制作例子]]></title>
    <link>http://im.vc/web/asp/2011/0821/61031.html</link>
    <description><![CDATA[By Wayne Berry This Issue Many sites that are content specific depend on banner advertisement for revenue. Such is the case for 15 Seconds. A banner is displayed at the top of the page for every page viewed. Clients usually buy a set number]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB6做一个简单的文件上传组件(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61030.html</link>
    <description><![CDATA[最近在单位做的一个项目里需要有文件上传的功能，正好手头一本书的附赠光盘里有一个上传组件，心中大喜。可惜随之便发现这是一个试用版，不给钱就只能用50次，太小气了！！好]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入研究“用ASP上载文件”(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61029.html</link>
    <description><![CDATA[现在“瘦客户”的观点已经是一个神话了，但随着电视或掌上型浏览器的繁荣，这一状况会有所改变。今天绝大多数的网络客户仍使用功能强大的PC，附着着大量的客户端存储器和客户]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入研究“用ASP上载文件”(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61028.html</link>
    <description><![CDATA[二、在asp中执行 现在已经得出结论，RFC1867是在WEB应用程序上载文件的最好方式。那么如何来运行？Microsoft提供了什么方法？其它有哪些方法可以用？ Microsoft的Posting Acceptor ASP不支持m]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(六)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61027.html</link>
    <description><![CDATA[% '===================================== Case Adduser '===================================== ' 添加用户 '============== Userid = Trim(Request(Userid)) PassWord = Trim(Request(Password)) Confirm = Trim(Request(Confirm)) Email = Trim(Requ]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB6做一个简单的文件上传组件(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61026.html</link>
    <description><![CDATA[接着上回，新建一个ActiveX DLLs类型的工程，并将缺省的工程名由“PRoject1”改为“Songbird”（当然你也有权不这样改，呵呵），将缺省的类名由“Class1”改为“FileUp”，至于为什么要这样]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个投票系统的源程序(coveryourasp.com)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61025.html</link>
    <description><![CDATA[SurveyDescr.asp !--#include file = include/Startup.asp-- !--#include file = utils/Survey.asp-- % // ============================================ // NOTE: all source code downloaded from CoverYourASP was written by // James Shaw (unless stat]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP方便的建立自己网站的每日更新]]></title>
    <link>http://im.vc/web/asp/2011/0821/61024.html</link>
    <description><![CDATA[使用asp方便的建立自己网站的每日更新 每日更新是什么东东我想大家也都应该知道把， 其实有点象现在很多新闻网站的更新，下面介绍如何让你的 网站的内容每天自动更新 下面的代码]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一 些 ASP 小 源 程 序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61023.html</link>
    <description><![CDATA[Active Server Pages PassWord Script % Sub FormInput() % form method=post action=logon.asp center H1Generic Logon/H1 User Name:input type=text size=20 name=username brbr Password:input type=password size=20 name=password brbr input type=subm]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP制作个性化的调查板（附源程序）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61022.html</link>
    <description><![CDATA[现在，在网上做调查已经十分普遍了，很多商业网站的网页上常放有各种主题的调查板，一些商业网站也免费为网友提供调查板，比如：博大(poll.bodachina.com)。因为网络的普及，网上调]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61021.html</link>
    <description><![CDATA[邮件列表（Mailing List）是当前最受欢迎的网络服务之一。本文通过一个示例系统的建设，介绍在asp环境下邮件列表功能的实现方法。 ChinaByte网络学院的《java Mail API及其应用》一文介绍]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文虚拟域名实现(1) (环境：中文NT)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61020.html</link>
    <description><![CDATA[申请页面： form name= action=asp-cgi/new.asp method=post pbfont color=#3366FF域名（支持中文）：/font/bbr font face=Arial, Helvetica, sans-serifhttp://msstudio.net//font input type=text name=domain size=6 class=unnamed1 br bfon]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些源程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61019.html</link>
    <description><![CDATA[Formats passed string based on length. Perfect for emails and text files. --------------------------------------------------------------------------------------- % ' Company: Sabra Inc ' Author: Dave Hoffenberg ' Date: 10/5/00 ' Function: F]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61018.html</link>
    <description><![CDATA[为最终用户提供的功能主要由一个HTML文件和两个asp文件提供，它们负责接受用户的订阅申请以及退出邮件列表申请。 用户的个人信息在图1所示的登记表单中输入，其实现文件是homepa]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文虚拟域名实现(2) (环境：中文NT)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61017.html</link>
    <description><![CDATA[MODIFY。asp ******************************* %@ LANGUAGE=VBSCRipT % !--#include file=dbdb/connmm.inc-- html head titledomain forWord/title meta http-equiv=Content-Type content=text/html; charset=gb2312 style type=text/CSS !-- .MMS {font-siz]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP创建日志文件（附源程序）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61016.html</link>
    <description><![CDATA[你是否有时想知道什么人访问你的站点，什么时间，ip地址等。下面我就这个问题向 大家来阐述一下。这个例子使用文本文件来写入用户的信息创建一个logfile.asp放 在每一个asp的页面的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61015.html</link>
    <description><![CDATA[在访问管理页面之前必须经过身份验证。本实现中我们用图3所示的secure.htm页面供管理员输入身份识别码，若用户输入值非空则用Cookies来保存它。执行管理任务的页面是admin.asp，每当用]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[中文虚拟域名实现(3) (环境：中文NT)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61014.html</link>
    <description><![CDATA[connmm.inc ************************************************** % dim conn dim connstr connstr=DBQ=+server.mappath(dbdb/domain.mdb)+;DefaultDir=;DRIVER={Microsoft access Driver (*.mdb)};DriverId=25;FIL=MS Access;ImplicitCommitSync=Yes;MaxBuff]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简单的ASP聊天室（附源码）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61013.html</link>
    <description><![CDATA[%@ Language=VBScript % % Response.Buffer=true ' 设 置 输 出 缓 存，用 于 显 示 不 同 页 面。 On error resume next ' 忽 略 程 序 出 错 部 分 If Request.ServerVariables(Request_Method)=GET then ' 判 断 客 户 是 以]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在一个ASP页面停留的多少时间的程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/61012.html</link>
    <description><![CDATA[asp Source Code: ---------------------------------------------------------------------- % If Request.QueryString(time) = Then % You haven't clicked on the link below yet.BR % Else % You spent %= DateDiff(s, Request.QueryString(time), Now())]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Win2k IIS 远程执行命令漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0821/61011.html</link>
    <description><![CDATA[涉及程序： 使用双字符处理的win2k系统+ iis 描述： Win2k IIS 可远程执行命令 详细： 由于某些双字节的 win2k 系统在处理某些特殊字符时与英文版本不同，通过这些特殊字符攻击者可绕过]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境下邮件列表功能的实现 （四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61010.html</link>
    <description><![CDATA[最后要实现的功能是邮件的编辑和发送。这部分功能由Email_List.asp文件提供，其界面如图6所示。接下来我们就来分析这个文件。 Email_List.asp的内部工作过程和edit_record.asp很类似。管理员]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61009.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新---数据库结构篇 作者：沙滩小子 当你有了一个自己的网站以后，尤其是对于那些流量较大、内容较多的网站，每天的更新站点成了你维护网站的首要任务之]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[搜索按钮(客户端表单)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61008.html</link>
    <description><![CDATA[这个比较长，只要将下列代码加入body/body之间就行： form Name=InputForm div align=centercenterpscript language=javaScript var FirstForm; function StartSearch() { document.forms[FirstForm+document.InputForm.SearchSelect. se]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61007.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章显示篇 作者：沙滩小子 前面已经为大家介绍了文章的添加保存，接下来就应该讲讲文章的显示了。在这里，你更加可以看出ASP的简单易用性，仅仅是通]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中的函数应用方法及应用举例(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61006.html</link>
    <description><![CDATA[1.Array() FUNCTION: Returns a variant containing an array. SYNTAX: Array(list) ARGUMENTS: list is a comma-delimited list of values to add to the array. EXAMPLE: % Dim myArray() For i = 1 to 7 Redim PReserve myArray(i) myArray(i) = WeekdayNa]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61005.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--数据库连接篇 作者：沙滩小子 上一节为大家介绍了文章管理系统的数据库结构，建立了数据库以后，就要用ASP建立与数据库相关的程序，包括连接数据库、]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中的函数应用方法及应用举例(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61004.html</link>
    <description><![CDATA[21. IsObject() FUNCTION: Returns a boolean value indicating whether an exPRession refers to an automation object. SYNTAX: IsObject(expression) ARGUMENTS: expression is any valid expression. EXAMPLE: % Set con = Server.CreateObject(ADODB.Con]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(7)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61003.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章转发邮箱篇 作者：沙滩小子 这是本程序的主要特色功能之一。在ASP中，可以通过利用NT中的SMTP来实现邮件的在线发送，不过你必须确认你的系统里面安]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(8)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61002.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--主页面及搜索篇 作者：沙滩小子 经过了文章的添加、保存、显示，那么现在应该来谈谈关于管理程序的显示主页面，也就是显示所有文章的标题连接，以方]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/61001.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章的添加篇 作者：沙滩小子 上一节已经介绍了关于文章管理的数据库连接，本篇将讲述文章的在线添加，当你找到了一篇很好的资料，并且想尽快放到你]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的访问统计系统（一：数据库篇）]]></title>
    <link>http://im.vc/web/asp/2011/0821/61000.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候保留这条信息 */ 1.数据库结构 /*访问统计历史表，每一次访问都在这个表生成一条记录*/ CREATE TABLE [accessStat] ( [AutoID] [int] IDENTITY (1, 1) NOT NULL]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60999.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章的保存篇 作者：沙滩小子 经过了文章的添加过程，我想大家更想知道ASP代码是怎样将页面上的信息保存到数据库里面的呢？而且这一功能还必须由另外]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(9)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60998.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--管理者登陆及验证篇 作者：沙滩小子 前面已经介绍了文章管理系统的前台程序，其前台程序主要就是提供给大家浏览的页面，主要是文章浏览、文章搜索、]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60997.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--对HTM代码的转化篇 作者：沙滩小子 前面为大家介绍了文章的在线添加以及保存，但如果仅仅是这样还不够的，因为有很多的文章本身带有的HTM代码必须完整]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的访问统计程序（二 程序篇）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60996.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候保留这条信息 */ /* dbcn.asp 创建数据库连接的 公用程序 */ % function OpenConn() '创建数据库连接 dim ConnStr dim uid dim pwd dim db uid=BBC pwd=BBC db=BBC Softser]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60995.html</link>
    <description><![CDATA[设计表结构是一项极其重要的工作，它的合理与否与程序的编制紧密相关。 一个网站统计系统应该有一个用户表，统计值表。 这个用户表也就是保留注册用户信息的表，统计值表就是]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(10)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60994.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--管理页面篇 作者：沙滩小子 前面讲述了关于文章管理系统的密码及密码验证，通过密码验证可以限制一般浏览者所能进入的页面，这里所要限制的就是普通]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统（四）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60993.html</link>
    <description><![CDATA[本文只做方法探讨。 能采集数据我们都能采到了，那么我们就开始编制asp的统计页面。 这一页我们叫计数页，counter.asp 这段asp代码我们需要让它按如下的流程进行采集数据并保存数据]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的访问统计程序(三 应用篇)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60992.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候不要修改这里 */ /* static.asp 保存统计数据 */ !--#include file=staticFunc.asp-- % userid=request.querystring(userid) InsertData userid % document.write('a href=http://www.yo]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(11)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60990.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章删除篇 作者：沙滩小子 上一节我们介绍了文章管理的主页面，而这里的主页面只是显示了相关的连接而已，要是没有相关的程序来执行，那么也只是空]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个提供用户输入时期的绝好程序之(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60989.html</link>
    <description><![CDATA[TestCal.asp HTML HEAD META NAME=GENERATOR Content=Microsoft Visual InterDev 1.0 META HTTP-EQUIV=Content-Type content=text/html; charset=iso-8859-1 TITLETest Calendar Date Selection/TITLE /HEAD BODY BGCOLOR=#FFFFFF CENTER SCRipT LANGUAGE=jav]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个免费的邮件列表源程序(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60988.html</link>
    <description><![CDATA[ShowSource.asp %@ Language=javaScript % !--#include file = include/SetGlobals.asp-- % // get the page to display from the URL var sPage = + Request.QueryString ( page ); // make sure it's a page we allow them to view! switch ( sPage ) { cas]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(12)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60987.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--文章修改篇 作者：沙滩小子 上一节我们讲了文章的在线删除的具体实现方法，在这里我将为大家介绍关于文章管理系统的在线修改。在本系统中，提供在线]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个免费的邮件列表源程序(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60986.html</link>
    <description><![CDATA[Subscribe.asp %@ Language=javaScript % !--#include file = include/SetGlobals.asp-- !--#include file = include/DBPath.asp-- % // output relevant meta tags Init( Subscription ); // output common top of page Header( 'a href=work.aspWork/a -- S]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个提供用户输入时期的绝好程序之(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60985.html</link>
    <description><![CDATA[DateSelect.asp 创立一个日历格式的。。。 %@ LANGUAGE=VBSCRipT % % 'Code Written by D. Scott Hand 'If any errors are found, please 'e-mail scott_hand@pobox.com with 'the error and the way the error 'was caused '***Purpose:********]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用密码保护页面 (I)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60984.html</link>
    <description><![CDATA[英文原文 有些网页你可能不想让无关的人看到，比如管理页面。通过一个表单、一个会话(session)变理、一个查询语句及其三行代码即可实现对网页的密码保护。如此而已。 首先，创建]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(13)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60983.html</link>
    <description><![CDATA[asp进阶之文章在线管理更新--管理员栏目管理篇 作者：沙滩小子 前面的章节已经基本实现了文章管理系统的大部分功能，但是在本系统中，管理员姓名和密码以及栏目的更新都要自己在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用密码保护页面 (II)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60982.html</link>
    <description><![CDATA[英文原文 现在我们创建查询语句，可以验证在表单中输入的内容是否与数据库中的内容相一致。 %@ Language=VBScript % % Response.Buffer = True % HTML BODY % session(allow) = True % % UserName = Request.Form(]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60981.html</link>
    <description><![CDATA[在目前的网站统计系统决大部分都是CGI的，但编写起来特别复杂，而asp学起来简单，更有和数据库结合的优点，所以结合自己曾经做过的网站统计系统，和大家探讨一下ASP编写网站统计]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之一]]></title>
    <link>http://im.vc/web/asp/2011/0821/60980.html</link>
    <description><![CDATA[更新每天新闻内容，对webmaster们来说是一件很头痛的事，首先，收集了大量 的新闻资料后，还必须制作大量的网页，每天大大小小的国际新闻，国内新闻，ＩＴ 新闻，可真够你累的。]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用ASP编写网站统计系统（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60979.html</link>
    <description><![CDATA[1 取得用户的操作系统。 在asp中使用如下语句可以得到访问者的http_user_agent字符串。 Dim StrUserAgent StrUserAgent=Request.ServerVariables(HTTP_USER_AGENT) 这个字符串一般是如下格式： Mozilla/4.0 (comp]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用密码保护页面 (III)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60978.html</link>
    <description><![CDATA[英文原文 最后，把下面的三行代码加入需要保护的页面的最前面中。不要把它加到第二页的代码中。 %@ Language=VBScript % % Response.Buffer = True % % If session(allow) = False Then Response.Redirect main.]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之四]]></title>
    <link>http://im.vc/web/asp/2011/0821/60977.html</link>
    <description><![CDATA[程序处理完毕后，重新导向delete.asp这个asp文件，用以刷新新闻数据库内的显 示，那么每提交一条新闻资料，我们马上可以看见执行的结果是否成功了。 以下是delete.asp的文件内容。 《]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单的文件目录浏览源程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/60976.html</link>
    <description><![CDATA['************************************** ' Name: File / Directory Viewer ' Description:This Will Display All The 'Files, File Size and file date of every 'file in the directory you specify. To make this work, paste the code into your favorit]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之二]]></title>
    <link>http://im.vc/web/asp/2011/0821/60975.html</link>
    <description><![CDATA[（一）构建新闻数据库 分析一下构成每条新闻的元素，主要由新闻标题，新闻内容，图片地址，连接地 址，新闻的发布时间组成。而在构建数据库的时候。考虑到处理需要，必需加上]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VB编写纯ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/60974.html</link>
    <description><![CDATA[前几天大哥对我说，使用asp真麻烦，编译环境实在是差劲，他总是在vb里面写好调试好代码然后在把代码粘贴到asp程序中，为此，我在这提出一个解决之道。使用VB接替ASP所有的对象，在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之五]]></title>
    <link>http://im.vc/web/asp/2011/0821/60973.html</link>
    <description><![CDATA[（三）把新闻代码插入你的页面 最好的新闻发布，当然是为网站本身定做的，那样才能与主页风格一致，但如此 一来，新闻发布系统有缺乏了通用性了，不能移值到别的网站上使用，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室建设详解一]]></title>
    <link>http://im.vc/web/asp/2011/0821/60972.html</link>
    <description><![CDATA[一位精通程式设计的大师，在每开发一个项目的时候，往往要经过非常严密的计划，十分严格的求证，否则，辛辛苦苦开发的程序一旦中途发现问题，那往往都是前功尽弃，从头开始。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之六]]></title>
    <link>http://im.vc/web/asp/2011/0821/60971.html</link>
    <description><![CDATA[通过定制这段代码，就能制作出符合您要求的网页显示格式。 添加，删除，显示都讲解完了，最后一项，就是把新闻的详细内容显示出来。 当用户点击新闻标题，就打开disp.asp文件，同]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之三]]></title>
    <link>http://im.vc/web/asp/2011/0821/60970.html</link>
    <description><![CDATA[（二）添加和管理每天的新闻内容 当进行了新闻提交后，则交由一个名为addnew.asp的asp程序来对新闻内容进行 处理，以便分类和保存，为了显示清析，我们每提交一条新闻，下面的那个]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对数据库中的记录用上一条下一条显示（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60969.html</link>
    <description><![CDATA[三、Bookmark/MoveNext/MovePRevious例子 让我们看一个asp程式码当中使用Bookmark/MoveNext/MovePrevious做到上一条下一条功能的例子。 譬如ASP程式码rs15.asp如下： % Set conn1 = Server.CreateObject(ADODB.Connec]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室建设详解二]]></title>
    <link>http://im.vc/web/asp/2011/0821/60968.html</link>
    <description><![CDATA[接下来，我们开始讲述建设过程，首先，我们要规划，要大概了解使用多少个数据库表，这些数据库表应该有哪些字段；摆在我们面前的就已经是必须存在的几个数据库表：1、存储用户]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的站点访问统计系统（一：数据库篇）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60967.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候保留这条信息 */ 1.数据库结构 /*访问统计历史表，每一次访问都在这个表生成一条记录*/ CREATE TABLE [accessStat] ( [AutoID] [int] IDENTITY (1, 1) NOT NULL]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建你的网站新闻自动发布系统之七]]></title>
    <link>http://im.vc/web/asp/2011/0821/60966.html</link>
    <description><![CDATA[紧接上节，我们的新闻系统已能完成日常的新闻在线添加，删除等的功能，但这 还是不足够的，有的用户可能需要查找一下过往某一专题内容的相关新闻条目，而一 个比教完善的新闻]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的访问统计程序（二程序篇）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60965.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候保留这条信息 */ /* dbcn.asp 创建数据库连接的 公用程序 */ % function OpenConn() '创建数据库连接 dim ConnStr dim uid dim pwd dim db uid=BBC pwd=BBC db=BBC Softser]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[完整的访问统计程序(三应用篇)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60963.html</link>
    <description><![CDATA[/* 原创：豆腐 请大家在转载和使用的时候不要修改这里 */ /* static.asp 保存统计数据 */ !--#include file=staticFunc.asp-- % userid=request.querystring(userid) InsertData userid % document.write('a href=http://www.yo]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实 现 滚 动 新 闻]]></title>
    <link>http://im.vc/web/asp/2011/0821/60962.html</link>
    <description><![CDATA[经 常 在 一 些 站 点 看 到 有 这 样 的 东 东 ，一 个 方 框 ， 里 面 的 内 容 （ 通 常 是 新 闻 标 题 ）滚 动 播 出 ， 周 而 复 始 。 其 实 在 IE 4 上 显 示 这 样 的 功 能 是 异 常 简]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室建设详解四]]></title>
    <link>http://im.vc/web/asp/2011/0821/60961.html</link>
    <description><![CDATA[当我们把上面的程序保存在具有执行权限的服务器目录中，在客户端用浏览器打开时，我们见到了平常聊天室一样的用户登陆界面。我们于是输入用户名及密码，按发送时，我们所输入]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60960.html</link>
    <description><![CDATA[建立数据库结构: ' bbs ' 序号 INT NOT NULL IDENTITY ' 作者 VARCHAR(80) ' 题目 VARCHAR(255) ' 回复 INT NOT NULL DEFAULT 0 ' 点击 INT NOT NULL DEFAULT 0 ' 时间 DATETIME DEFAULT GETDATE() ' 内容 TEXT ' 邮件通知 BIT DEFA]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊天室建设详解五]]></title>
    <link>http://im.vc/web/asp/2011/0821/60959.html</link>
    <description><![CDATA[我们试着在客户端用浏览器打开chatview.asp，我们果然看到自动刷新的页面，不错吧！下面，我们就要考虑如何把发言部分与刷新部分在同一个页面上显示：那需要用到框架。 框架，那是]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网上“店铺”DIY(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60958.html</link>
    <description><![CDATA[一、概述： 最近电子商务是一个非常热门的话题。那么到底什么是“电子商务”？“电子商 务”离我们到底还有多远？据一些网站的问卷调查结果显示，真正成熟的电子商务离 我们还]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个基于ASP的标题广告管理系统（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60957.html</link>
    <description><![CDATA[标题广告是Web上最常见的广告形式。本文介绍了一个基于IIS和asp的标题广告管理系统，该系统支持广告客户和广告的管理，能够随机选择广告并生成显示广告的HTML代码（但参考广告的等]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60956.html</link>
    <description><![CDATA[' 打开数据库 Set Con = Server.CreateObject(ADODB.Connection) Con.Open asp , application(ConASP_RuntimeUserName) , Application(ConASP_RuntimePassWord) Set RecBBS = Server.CreateObject(ADODB.RecordSet) Set RecReply = Server.CreateObject(]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网上“店铺”DIY(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60955.html</link>
    <description><![CDATA[第二部分：实例 项目结构： 该项目主要由几个asp文件和一个数据库组成： book.mdb：存放数据库的内容 index.asp：网站主要的文件，大部分的内容均由它来显示 buy.asp：购物蓝的内容 in.]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个基于ASP的标题广告管理系统（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60954.html</link>
    <description><![CDATA[二、管理功能 管理部分共有12个asp文件，这些脚本的主要功能分别如下： BannerAdminLogin.asp：管理功能的登录页面。默认的用户名称是“ADMIN USER”，密码是“PASSWord”。 CheckBannerAdministr]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网上“店铺”DIY(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60953.html</link>
    <description><![CDATA[Buy.asp HTML HEAD title购货蓝/title META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 /HEAD BODY bgColor=lightcyan P align=centerIMG alt=网上书店 src=file://C:\InetPub\wwwroot\images\title.jpgbr BODY bgColor=lightcyan form acti]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个基于ASP的标题广告管理系统（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60952.html</link>
    <description><![CDATA[三、显示广告 这部分程序主要有如下四个目的：第一，参考各个广告的显示等级，随机选择本次显示的广告；第二，更新数据库中该广告的显示次数；第三，输出标题广告的HTML代码；]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60951.html</link>
    <description><![CDATA['============================= Case Content '============================= ' 显示内容 If Request(KeyWord) Then KeyWord = Request(Keyword) Else KeyWord = % TABLE align=center border=0 cellPadding=1 cellSpacing=0 width=650 TR TD class=men]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(四)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60950.html</link>
    <description><![CDATA['============================== Case Write '============================== ' 发表文章 % TABLE align=center border=0 cellPadding=7 cellSpacing=0 width=650 TR TD class=menu PA href=/飞林庄/A-gt;A href=%= asp_FILE_NAME %经验交流/A/P]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[负载平衡环境下的ASP会话管理(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60949.html</link>
    <description><![CDATA[创建交互式web 页面时最大的挑战之一是维持用户的状态，一个站点也许想记住你是谁、在n页之前你点击了什么、在这最 后一次做了些什么、现在马上要向你显示什么。实现这些功能的]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对数据库中的记录用上一条下一条显示（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60948.html</link>
    <description><![CDATA[若要让RecordSet移动到上一条下一条的位置，让我们先学会以下RecordSet对象的属性和方法： BOF属性：当前游标指到RecordSet的第一条记录。 EOF属性：当前游标指到RecordSet的最后一条记录。]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个BBS的源代码(五)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60947.html</link>
    <description><![CDATA['================================= Case Modify '================================ ' 修改文章 Which = Request(Which) WhichID = GetID( Which ) If Left( Which , 1 ) = E Then Table = bbs Else Table = bbsreply WrongMsg = If Request(Modify) =]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[负载平衡环境下的ASP会话管理(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60946.html</link>
    <description><![CDATA[仅当web 范围内的第一次点击进行负载平衡 这种方法也称为前端负载平衡，它易于描述，但是有可能不适于执行。为了实现真正的负载平衡，每次 请求都要重新平衡用户。但是在大多数]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对数据库中的记录用上一条下一条显示（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60944.html</link>
    <description><![CDATA[二、用Bookmark（书签） Bookmark（书签）对RecordSet的一条记录做一个记号。 使用时先移动到那条资料，然后给予Bookmark属性一个名称，即书签记号的名称，当要回到该条记录时，将Bookmar]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软.Net卧虎藏龙]]></title>
    <link>http://im.vc/web/asp/2011/0821/60943.html</link>
    <description><![CDATA[.Net计划 微软CEO史蒂夫·鲍尔默晃动着他结实的右肩，空中一拳：“我们不断重拳出击！”他又来了一拳：“出击！”又一拳：“再出击！” “结果没有令我们失望！”鲍尔默说。 鲍尔]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0对ASP 2.0的改进]]></title>
    <link>http://im.vc/web/asp/2011/0821/60942.html</link>
    <description><![CDATA[asp 3.0对ASP 2.0的改进 下面的一些特征是从2.0版本中改进或升级来的。 1、 缓冲缺省为打开状态 ASP提供可选的输出缓冲。从IIS 4.0开始，这使得脚本执行得更快，并提供对流向浏览器的输]]></description>
    <pubDate>暂无</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.Net的几大热点问题]]></title>
    <link>http://im.vc/web/asp/2011/0821/60941.html</link>
    <description><![CDATA[1 asp.net是什么？ ASP.Net是建立在微软新一代.Net平台架构上，利用普通语言运行时（Common Language Runtime）在服务器后端为用户提供建立强大的企业级Web应用服务的编程框架。 2．ASP.Net与A]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML、Web服务和.NET框架(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60940.html</link>
    <description><![CDATA[应用程序开发技术正发生着一次质的飞跃，从根本上大幅度提高开发人员的生产效率，它开启了一道通向全新概念的应用程序的大门。 在过去，开发人员一直通过集成本地系统服务来构]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML、Web服务和.NET框架(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60939.html</link>
    <description><![CDATA[缆线级的xml：SOAP 实现Web服务的异类基本结构以及在整个Web中实现Web服务的关键，是实现支持简单数据描述格式的技术。这种格式就是XML。Web服务必须使用XML来完成三件事情：基本的缆]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET My Services对应用程序开发的影响（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60938.html</link>
    <description><![CDATA[微软提供了.NET My Services数据操作语言作为.NET My Services支持的核心数据处理语言 。这种语言描述了六种基本的操作。下面的命令都受到了使用它们的特定服务过程的规则的约束。 Inser]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60937.html</link>
    <description><![CDATA[概述：一份具有革命性的事业 对于计算机工业，革命就是一种“生活方式”。区区20年以前，还是大型机的时代。那时只有极少数人能够使用计算机，而且只能通过邻近的信息产业机构]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将.Net应用移植到Linux上来的Mono工程]]></title>
    <link>http://im.vc/web/asp/2011/0821/60936.html</link>
    <description><![CDATA[开放源代码协会通过linux软件开发公司Ximian开始了一个旨在将微软.Net平台移植到Linux上来的项目。这个叫做Mono工程的项目包括创建一个开发平台允许人们为基于Linux和基于Windows系统的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60935.html</link>
    <description><![CDATA[Microsoft .NET：超越浏览，超越网站 微软公司正在创造新一代的高级电脑软件，它革命性地综合了计算与通信技术，为开发商们提供了工具，致力于网络和其他计算技术的变革。我们把这]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows.NET Server: IIS 6.0]]></title>
    <link>http://im.vc/web/asp/2011/0821/60934.html</link>
    <description><![CDATA[IIS：.NET Passport 集成 Microsoft .NET Passport 作为受支持的身份验证机制集成到 Internet InFORMation Services (IIS) 中。这种集成在核心 Web 服务器中提供 .NET Passport 身份验证，并使用标准 .NET Passpo]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60933.html</link>
    <description><![CDATA[Microsoft .NET平台：建造新一代因特网 建立在xml和因特网协议的标准整合构造上的Microsoft .NET平台为开发新型高级软件提供了一个革命性的模型。在此之前，软件开发模式一向侧重于单个]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60932.html</link>
    <description><![CDATA[Microsoft .NET用户技术：智能互动 今天，计算技术被分割在两个领域里 -- 一个是个人电脑和相关设备的应用程序，另一个是网站。Microsoft .NET可以让这两个紧密地合作，将强大的功能与因]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+和JSP之间的抉择]]></title>
    <link>http://im.vc/web/asp/2011/0821/60931.html</link>
    <description><![CDATA[Blueski为您编译。 原文名：jsp VS asp Part 2: The Future According to ASP+ 英文作者没有记下，非常抱歉 由于我同时是ASP和JSP的程序员，所以正开始写一系列的文章来比较两者的差别， 当我写到一]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows.NET Server: 远程访问]]></title>
    <link>http://im.vc/web/asp/2011/0821/60930.html</link>
    <description><![CDATA[Internet：允许 RAS 接口作为 NAT 专用接口 在 Beta 3 之前，与 Windows .NET Server（用于对 Internet 的网络地址转换 (NAT) 访问和对公司网络的拨号访问）连接的 RAS 客户端，不能利用此服务器到达]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60929.html</link>
    <description><![CDATA[Microsoft .NET：新一代的产品和服务 总有一天，所有的应用软件将被设计成一种服务，可以在网上订购。这将使微软和其他的软件供应商能够提供更好的客户服务、更有透明度的安装和技]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[技术分析：.NET的优势与劣势]]></title>
    <link>http://im.vc/web/asp/2011/0821/60928.html</link>
    <description><![CDATA[.NET Framework自2002年3月在日本国内上市以来，至今已一年有余。据估计标准集成.NET Framework的OS--Windows Server 2003将于2003年5月在日本上市。随着.NET环境的完善，作为足以抗衡java的系统构筑]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows.NET Server: XML Web 服务]]></title>
    <link>http://im.vc/web/asp/2011/0821/60927.html</link>
    <description><![CDATA[.NET 框架 为使创建 xml Web 服务对于开发人员和用户透明需要相当规模的基础结构。与 Windows .NET Server 系列产品紧密集成的 Microsoft .NET 框架提供了这样的基础结构。.NET 框架提供应用程序]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET让新一代因特网变成现实(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60926.html</link>
    <description><![CDATA[结论：.NET革命 微软在十年前作出了“信息在你的指尖”的预言。而在那时，信息是什么样呢？调制解调器以4800波特的速率连接；大多数讯息通过普通传真发送而不是电子邮件；几乎没]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用不着妄自菲薄 对ASP和ASP程序员的一些话]]></title>
    <link>http://im.vc/web/asp/2011/0821/60925.html</link>
    <description><![CDATA[作者：一风一云 出处：YESKY论坛 这段时间，关于asp的前途，关于asp的好坏的讨论贴，都有好些了。当然，大家的心都是好的，但是一些朋友说的话，真是让人郁闷。 个人觉得，在现在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.Net Enterprise服务器可能太早冠上.Net名号了]]></title>
    <link>http://im.vc/web/asp/2011/0821/60924.html</link>
    <description><![CDATA[微软周三首度承认.Net计划的市场进展缓慢，不过该公司也拟出计划来推广这套软件策略。 微软主席兼软件架构长Bill Gates表示从两年前推出的.Net计划在部分进度上虽有超前，但有些部分]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET My Services对应用程序开发的影响（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60923.html</link>
    <description><![CDATA[名字换了，但是概念还是一样的 。微软对Web服务市场的冲击，以前的代号是HailStorm，现在成了Microsoft .NET My Services。当然这个名字有些用词不当，因为任何支持SOAP的平台都能够使用We]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[重返ASP时代]]></title>
    <link>http://im.vc/web/asp/2011/0821/60922.html</link>
    <description><![CDATA[出处:treeroot Blog 我接触asp也快三年,不敢说精通,至少也算熟练,在三年前甚至现在,asp都是应用最广泛的web服务器端技术.我用asp写过不少程序,那时候总觉得自己不是在写程序,就是在做网页]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软放弃.net名称的背后]]></title>
    <link>http://im.vc/web/asp/2011/0821/60921.html</link>
    <description><![CDATA[微软的最新服务器操作系统一而再，再而三的更名，最终还是弃用了.Net这个商标，采用了Windows Server 2003这个名字。但是，Windows Server 2003绝对不是最后一个弃用.Net商标的微软产品。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2009年Silverlight十大流行应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/60920.html</link>
    <description><![CDATA[2009年，Silverlight从2.0顺利过渡到3.0. 微软在2009年12月，发布Silverilght 4 Beta版本，其强大的功能，又一次吸引了众多RIA程序员的眼球，为了推广Silverlight，微软在Silverlight社区对Silverlight项]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软下一代网络服务器IIS7前瞻]]></title>
    <link>http://im.vc/web/asp/2011/0821/60919.html</link>
    <description><![CDATA[Windows的网络服务器Internet Information Services（IIS）7.0 将整合asp.net，改善诊断系统，引入新款管理员用户界面，配置系统以及一系列新构件。 微软IIS，网络平台及工具开发组项目经理Bil]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS 5.1和IIS 6.0一些显著的重要区别]]></title>
    <link>http://im.vc/web/asp/2011/0821/60918.html</link>
    <description><![CDATA[核心功能和服务 已对 IIS 6.0 进行了重新设计以便利用基本 Windows 内核 HTTP.sys。这使其具有内置的响应和请求缓存和队列功能，并能够将应用程序进程请求直接路由到工作进程，从而改善]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[【翻译】学习和使用web标准的十大理由]]></title>
    <link>http://im.vc/web/asp/2011/0821/60917.html</link>
    <description><![CDATA[如果你是一个新接触web标准这个概念并且还犹豫是否应该花时间去学习它的web开发者或者设计者，这里有一些让你去学习它的重要理由。 对于已经使用web标准的web专业人士，当你需要很]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软下一代Web服务器IIS7细节披露]]></title>
    <link>http://im.vc/web/asp/2011/0821/60916.html</link>
    <description><![CDATA[微软的下一代Web服务器IIS 7将会综合asp.net开发技术，并且在可选组件中加入很多核心技术。除此之外，软件的管理工具可以允许更多安全且基于Web的远程连接。 IIS 7将会随微软的下一代]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于测试用例的一点思考]]></title>
    <link>http://im.vc/web/asp/2011/0821/60915.html</link>
    <description><![CDATA[对于测试用例我自己的理解为：测试用例将软件测试的行为活动，做一个科学的组织归纳的过程，简单地说，测试用例就是设计一个情况，软件程序在这种情况之下，必须能正常运行并]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS6.0下ASP的新增功能]]></title>
    <link>http://im.vc/web/asp/2011/0821/60914.html</link>
    <description><![CDATA[asp 的新增功能 除了内部性能增强和优化外，该版本的 Active Server Pages(ASP) 还具有如下新功能： 更好的国际化和 UTF-8 支持 改进的 POST 支持 ASP 挂起检测 常用文件的缓存 UNC 增强 ASP 中的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于插件式的开发框架: (2)责任分配]]></title>
    <link>http://im.vc/web/asp/2011/0821/60913.html</link>
    <description><![CDATA[公司里有两部电话, 是用来做支持的, 一个是技术方面的, 一个是业务方面的. 客户会打电话过来咨询一些问题. 但是, 出现一个小问题, 客户通常分不清他要问的问题是业务的还是技术的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学以致用 驳“ASP低能论”]]></title>
    <link>http://im.vc/web/asp/2011/0821/60912.html</link>
    <description><![CDATA[很多人错误地认为asp是简单、低效的代名词，认为ASP是低能的，不足挂齿的，也很简单，一学就会，一琢磨就精通。 有人讲ASP不安全，写ASP的程序的时候如果严格按照书写安全的代码的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[代码大战：哪种语言会赢得开发的霸权？]]></title>
    <link>http://im.vc/web/asp/2011/0821/60911.html</link>
    <description><![CDATA[原CNET的开发人员Dan Seewer和Kevin Cobb接受了我们的采访，就哪些编程语言位列开发语言前茅以及哪些语言正在参与排名的竞争发表了自己的看法。Dan在软件开发上的经验超过17年，他所使]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软的坟墓：Windows 7。（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60910.html</link>
    <description><![CDATA[当浏览器有了生态环境的兆头，不知有意还是无意，Mozilla在2004年发布了Firefox 0.8。那时那刻，XP差不多刚刚消灭98，正走向辉煌。正是在这一年，Web标准走进中国，而我走进了Web标准，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从本质上看网页（asp，jsp）的编写]]></title>
    <link>http://im.vc/web/asp/2011/0821/60909.html</link>
    <description><![CDATA[学写网页是从asp 开始，那时候看了北大青鸟的一些视频，当然老师对网页本质的东西讲的很清楚！这也给我节约了很多时间！ 其实学东西最怕，你去抄老师教给你的东西！什么意思？]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[重构还是结构，开创还是竞争－－面对战略的难题]]></title>
    <link>http://im.vc/web/asp/2011/0821/60908.html</link>
    <description><![CDATA[现在是一个战略的时代，对于每个企业，在完成了从创业到生存的阶段后，都想飞速发展壮大，为了飞速的发展壮大，他们需要有一个原则、指导方针来引导自己的企业前进。这个指导]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软的坟墓：Windows 7。（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60907.html</link>
    <description><![CDATA[互联网应用时代 我认为，从Vista开始，微软不断失败的根本原因是其作为本地软件操作系统的设计思想落后于时代，而优化后的7有同样的问题。所以无论他们多优秀，面对时代，就一句]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为什么要MVC]]></title>
    <link>http://im.vc/web/asp/2011/0821/60906.html</link>
    <description><![CDATA[最近在公司写了一大堆复杂的界面，终于体会到了前辈们那种上刀山下火海的感觉了。做完了之后回头想想，MVC还是有道理的。 什么是MVC？其实可以简单的理解为一个有UI的程序可以划]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Sharepoint 究竟能为客户做些什么]]></title>
    <link>http://im.vc/web/asp/2011/0821/60905.html</link>
    <description><![CDATA[从2004年算起来，专注于Sharepoint技术以及六七年了。从SPS2003，到MOSS2007，已经现在的Sharepoint Server2010 Beta2，Sharepoint技术可以说是迈过了一个又一个台阶，起码可以说，字面的功能是越来]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软的坟墓：Windows 7。（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60904.html</link>
    <description><![CDATA[本文写于 2009-10-27 03:55 ，Windows 7刚刚发布之时，因为英来网那该死的Beta 3.8难产，搞得我根本没心情没时间写完，所以一直没发表。现在略微风调雨顺，心情愉快，开始发和继续写。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Java和.NET继续争斗的四大相关问题]]></title>
    <link>http://im.vc/web/asp/2011/0821/60903.html</link>
    <description><![CDATA[在本篇文章中，著名程序员Justin James讨论了java的未来，以及Java与.NET的开发成本对比，和Java是否能够取代.NET。Justin在文中总结了四大要点，重点关注了两个运行时在性能和成本上的异]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人管理 － 个人知识管理]]></title>
    <link>http://im.vc/web/asp/2011/0821/60902.html</link>
    <description><![CDATA[今天看我去年的项目ppt，看到了几页个人知识管理的内容，忘记是从哪里弄来的，觉得还不错，这里发一下，欢迎大家补充。 持续的学习是个人生存和发展的基础 信息和知识爆炸，在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[聊聊如何处理程序中的“分支条件”更加合理]]></title>
    <link>http://im.vc/web/asp/2011/0821/60901.html</link>
    <description><![CDATA[在编写代码的过程中，我们编写的类往往会有需要支持多条分支条件的情况，一般情况下，我们可能会通过设定一些参数变量的方式，来对这些分支条件进行区分，那么就引出了一个问]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ChessVista开发日记之二：核心问题]]></title>
    <link>http://im.vc/web/asp/2011/0821/60900.html</link>
    <description><![CDATA[核心问题 好的，我们已经有一个关于ChessVista的基本架构了，现在要看看接下来有哪些核心问题、关键任务要解决。 对于一个国际象棋程序，或者也可以说是对所有的棋类博弈程序来说]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于软件工程的几个细节]]></title>
    <link>http://im.vc/web/asp/2011/0821/60899.html</link>
    <description><![CDATA[软件工程说的是用工程学的观点开发软件，工程学就是调配人手去实施大型作业的学问。 因此，软件工程的重点在于人。如果说程序是算法加数据结构，那么软件开发，除了程序这个结]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[合同范围与需求分析后范围严重不符问题与分析]]></title>
    <link>http://im.vc/web/asp/2011/0821/60898.html</link>
    <description><![CDATA[做为软件开发商，每到需求分析结束的时候，我们就会有感叹，这个需求怎么和合同上的完全不一样呢？做为客户却不能理解，我们不是还是做1－2－3－4这四个事情嘛，有啥不一样的？]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理反馈问题时的一点想法]]></title>
    <link>http://im.vc/web/asp/2011/0821/60897.html</link>
    <description><![CDATA[写程序久了，明显发现自己的表达和沟通能力有所下降，当然了，以前也不咋突出…… 前天晚上，为了教老爸如何正确地调整播放器的声音，可是费了九牛二虎之力，当然，最终是搞定]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（2）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60896.html</link>
    <description><![CDATA[服务解决方案 服务解决方案指 IT 为其客户提供的能力或业务功能。服务解决方案的示例如下： 应用程序托管 电子商务 消息传递 知识管理 基于当前应用程序托管和外购的趋势，MOF 非]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（12）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60895.html</link>
    <description><![CDATA[附录 C：网络安全的最佳方案 Steve Riley，Microsoft Communications Industry Solutions Group Consulting PRactice 2000 年 8 月 7 日 这篇短文论述了网络设计和安全的最佳方案。尽管网络的设计和安全保护方]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（3）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60894.html</link>
    <description><![CDATA[型 在 MOF 模型的所有层面中都嵌入了安全管理。每个层面必须遵守设立的安全策略，包括 asp 内部安全策略以及在 SLA 中与客户约定的安全策略。对于每个层面，安全性必须涉及： 机密]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序员访谈：指尖创造网络灵动]]></title>
    <link>http://im.vc/web/asp/2011/0821/60893.html</link>
    <description><![CDATA[在中国网络发展的2000年到2006年，有一半以上的网站采用的都是asp技术，是它帮助千千万万个中国网站从不知名走向知名，从不赚钱到上市，为中国网络顶起了半边天。这群顶起半边天]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ＡＳＰ应用系统成为跨平台的应用系统]]></title>
    <link>http://im.vc/web/asp/2011/0821/60892.html</link>
    <description><![CDATA[自从ＭＳ推出asp技术后，由于ASP在创建动态交互式站点上的强大功能及其代码编写的简便性， 使ASP在很多Internet/Intranet/Extranet网站上得到了极其广泛的应用，尤其是涉及到数据库操作]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（4）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60891.html</link>
    <description><![CDATA[有关本章中论及的所有主题的详细信息，请参见 ITIL Library 的“Security Management”部分： http://www.itil.co.uk/ 或 ITIL Security Management 一书 (ISBN 0 11 330014 X)。 与其它 MOF 层面的关系 安全管理功]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软表示将发布一个轻量级的IIS Express]]></title>
    <link>http://im.vc/web/asp/2011/0821/60890.html</link>
    <description><![CDATA[微软今天表示，将发布一个新的Web服务器版本IIS ExPRess，用于简化建设和测试企业网站的流程。 新版将基于目前IIS 7.x代码进行开发，结合了IIS和asp.net开发服务器的特性，使其更容易建]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页制作技术JSP与ASP的比较]]></title>
    <link>http://im.vc/web/asp/2011/0821/60889.html</link>
    <description><![CDATA[总的来讲，javaSever PagesTM（jsp）和 微软的Active Sever Pages（asp）在技术方面有许多相似之处。两者都是为基于WEB应用实现动态交互网页制作提供的技术环境支持。同等程度上来讲，两者都]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（5）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60888.html</link>
    <description><![CDATA[asp 的安全策略 ASP 为什么需要安全策略？ 在 ASP 的安全管理过程中，必须有一个通道来及时地传递任何一个给定点的现有状态。安全策略充当了这一角色。它们是对 ASP 一贯使用的当前]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[程序员：增加编程经验的3种途径]]></title>
    <link>http://im.vc/web/asp/2011/0821/60887.html</link>
    <description><![CDATA[最近，有位论坛会员陷入了一个与许多入门级程序员相同的尴尬局面中：企业们不喜欢雇佣没有经验的人，并且多数都不愿意提供培训。如果那么多的企业都不雇佣 没有经验的人，那么]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[．NET框架与网络服务（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60886.html</link>
    <description><![CDATA[网络服务（Web Service）是基于网络的分布式应用程序的基本构造模块，而这些程序是以平台、对象模板和多语言方式构建的。 网络服务是建立在象HTTP和xml之类的开放的Internet 标准之上的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（6）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60885.html</link>
    <description><![CDATA[asp 安全方面的沟通与培训 引言 没有适当的沟通，安全方法和安全过程无疑将会失败。安全沟通指的是与客户、与 ASP 的内部人员、与供应商以及与其他第三方（如与 Forum for Incident Re]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[．NET框架与网络服务（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60884.html</link>
    <description><![CDATA[■数据访问服务 几乎所有的网络服务都需要查询和更新永久性数据，不论是以简单文件，还是以相关数据库，或是以其它的存储类型存在。为了提供对数据的访问，服务框架包括Activ]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[影响IIS性能的几个因素（3）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60883.html</link>
    <description><![CDATA[CPU的瓶颈影响 信息在计算机的各种部件中，与CPU时钟速度和CPU移动信息所使用的数据总线大小有关。更快的时钟速度意味着在相同的时间周期内数据总线可以进行更多的往返行程。通常]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（7）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60882.html</link>
    <description><![CDATA[asp 的最佳安全做法 引言 安全管理的主要目标是保证 SLA 中规定的 ASP 和客户之间的机密性、完整性和可用性的级别。最佳做法可向 ASP 展示如何确保实现安全目标。 Active Directory 的主要]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web脚本开发语言比较]]></title>
    <link>http://im.vc/web/asp/2011/0821/60881.html</link>
    <description><![CDATA[我们都一定对比过编程的轻松与简单性。虽然我们都确认php和perl是最容易学习和编程的语言，但我仍旧想知道，如果用php、asp、jsp以及perl分别编写一个同样的程序，哪一个将最快。 进]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安全维护 IIS asp 站点的高级技巧]]></title>
    <link>http://im.vc/web/asp/2011/0821/60880.html</link>
    <description><![CDATA[一:前言 （仅以此文感谢好友bigeagle。不是他，我可能不用这么担心win2000安全问题的。呵呵！） 人说，一朝被蛇咬，十年怕.....。就是这样。2000年初，当我终于摆脱winnt 4.0 server那可怕的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（8）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60879.html</link>
    <description><![CDATA[asp 的安全配置工具 ASP 管理员应当对安全配置工具非常熟悉，因为要获得系统中与安全相关的所有方面的信息，这是必不可少的。 这些工具应当使您非常容易地回答以下问题：“我的计]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于PWS的高级设置]]></title>
    <link>http://im.vc/web/asp/2011/0821/60878.html</link>
    <description><![CDATA[尽管 PWS 的默认设置可以使您快速安全地发布 Web 站点上的文档，为了特殊需要，可能还要更改某些默认设置。例如，默认设置将有显示指向站点上其他文档链接的主页。但是，如果有大]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（1）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60877.html</link>
    <description><![CDATA[Microsoft 企业服务白皮书 发布日期：2000 年 9 月 1.0 版 摘要 本白皮书系有关 Microsoftamp;copy; 企业服务 (ES) 框架的系列文章之一。要了解该系列出版物的完整清单，请访问 ES Web 站点：htt]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（9）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60876.html</link>
    <description><![CDATA[案例研究：遭受攻击 引言 一个很大的虚构银行企业分了好多个部门，其中两个分别为外部银行业务部门和内部支持部门。所有本地办公室都属于外部银行业务部门。所有的支持活动（]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft .NET 框架常见问题（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60875.html</link>
    <description><![CDATA[Microsoft .NET 框架常见问题 Microsoft Corporation 概念问题 什么是 .NET？ 简单地说，Microsoftreg; .NET 是 Microsoft 以服务的方式递交软件的一种策略。有关完整信息，请参阅有关该主题的白皮书（]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET概述]]></title>
    <link>http://im.vc/web/asp/2011/0821/60874.html</link>
    <description><![CDATA[在去年7月美国奥兰多举行的专业开发者大会上，Microsoft展示了它最新的.NET体系，众多的发言人向大会介绍 了.NET的特征和构成。 什么是.NET呢？实质上，.NET是Microsoft贴在现有产品和未来]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（10）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60873.html</link>
    <description><![CDATA[小结 保护客户和 asp 的数据不受到恶意攻击（有意的或无意的）的损害是“安全管理”的全部内容。对安全管理是什么以及 ASP 及其客户可以采取的方法有一个清晰的了解非常关键，其]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Microsoft .NET 框架常见问题（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60872.html</link>
    <description><![CDATA[名称空间与程序集名称之间有什么区别？ 名称空间是类型的一种逻辑命名方案，其中简单类型名称（如 MyType）前面带有用点分隔的层次结构名称。这样的命名方案完全在开发人员的控]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的安全管理（11）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60871.html</link>
    <description><![CDATA[附录 B：访问策略最佳方案 asp 的组策略对象 (GPO) 的最佳配置方案 在基于 Windows 2000 Active Directory 的 ASP 企业环境中工作时，认真设计策略非常重要，它可以最大程度地减少冗余和重新定]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET目标(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60870.html</link>
    <description><![CDATA[此外，.NET大量地运用了xml技术，并赋予SOAP协议极其重要的地位。借助于SOAP，Microsoft希望将软件开发带入一个新的时代，即不再依赖于装配组件和对象，而是以重用服务作为软件开发的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp.NET特写]]></title>
    <link>http://im.vc/web/asp/2011/0821/60869.html</link>
    <description><![CDATA[创建动态Web页面的新技术已经以CLR服务为基础全部重新改写。到目前为止，所有.NET提供的语言都可用于编写asp.net页面，但页面的扩展名和ASP 3.0的不同。具体地说，简单Web页面以“.as]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET目标(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60867.html</link>
    <description><![CDATA[从战略角度来看，Microsoft已经找到了在Internet上占据优势地位的道路。虽然Microsoft已经为这个目标努力了很久，但直到不久之前，它还不能确定真正该做的是什么。（我们应该还记得发]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VB 6.0到VB.NET的转换(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60866.html</link>
    <description><![CDATA[升级 向导 无需特别处理。 Clipboard Visual Basic 6.0 Clipboard 对象提供了对系统剪贴板的访问。 Visual Basic.NET Clipboard 类提供了在系统剪贴板上放置数据和从其上检索数据的方法。新的 Clipbo]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.Net的精髓]]></title>
    <link>http://im.vc/web/asp/2011/0821/60865.html</link>
    <description><![CDATA[.NET 技术 你可能已经阅读了一些关于 .NET 是什么和由什么东西组成的文章。.NET 允许我们在服务的层次上而不是在发布的层次上来共享信息并交互。Microsoft 的支持 .NET 的产品和许多来自]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NET真面目（上）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60864.html</link>
    <description><![CDATA[2000年6月，微软公司推出了“Microsoft.NET下一代互联网软件和服务战略”，引起IT行业的广泛关注。2000年9月，微软公司在旧金山发布了EnterPRise 2000。同月，微软原总裁兼首席执行官鲍尔默]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 开发准则]]></title>
    <link>http://im.vc/web/asp/2011/0821/60863.html</link>
    <description><![CDATA[应用程序服务器被,或最终将被 Web 服务器所使用，它通常是运行 asp 页面的 IIS 计算机。ASP 是您的对象的唯一客户机。它带来了专门的线程和安全考虑。 虽然许多使用 ASP 的 Web 站点根本]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.Net的精髓]]></title>
    <link>http://im.vc/web/asp/2011/0821/60862.html</link>
    <description><![CDATA[用SOAP实现数据通讯 长期以来我们使用超文本传输协议 HTTP 来提供 Web 页面以及往来的内容。但当我们将 HTTP 或一些其它 Internet 传输协议 同 xml 结合起来，并指定 XML 文档自身的格式时，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB构建Internet的应用]]></title>
    <link>http://im.vc/web/asp/2011/0821/60861.html</link>
    <description><![CDATA[Internet技术的发展为编程人员提供了更广泛的施展身手的空间。早先Internet应用程序这个词仅仅只是指一些用FTP协议下载文件或浏览HTML页面的工具，而如今使用Visual Basic，不仅可以为I]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NET真面目（下）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60860.html</link>
    <description><![CDATA[.NET的平台及框架是基于微软软件工业基础的又一次升级和演化。然而，.NET还是要尽力保证Windows系统及系列产品和.NET能够融为一体，尽量在微软公司原有的软件资产基础上，使.NET继续]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET语言的选择]]></title>
    <link>http://im.vc/web/asp/2011/0821/60859.html</link>
    <description><![CDATA[.NET语言的选择 导 读：每个组织迁移到.NET将选择采用哪种.NET语言。微软提供了四种语言：C#, VB.NET, 可管理的C++和 JScript。本文简要的讨论了我们关于这些语言和哪种语言将被使用的看法]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO 2.6 vs. the ADO.NET]]></title>
    <link>http://im.vc/web/asp/2011/0821/60858.html</link>
    <description><![CDATA[ADO 2.6 vs. the ADO.NET 在本例中我们需要IIS5环境、Visual Studio.NET BETA1、还有SQL SERVER中的Northwind数据库 在.NET中，保持了对早先COM及基于COM技术的良好支持，在本例中提供了两种方法：GetCus]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.Net将如何影响我们？（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60857.html</link>
    <description><![CDATA[如果找到了所要寻找的信息，那么这个信息也就没有吸引力了。Web 后面的核心思想就是文档不应该以层次结构提供，而是应该让读者能方便地找到和他们正在阅读页面的相关信息，因此]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.net的reflection (1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60856.html</link>
    <description><![CDATA[在我的文章《C#基于接口的编程》中，我谈论了使用抽象的接口作为编程范例的各种优点。分离接口和执行过程，现在肯定不是新的思想，实际上它是com编程的核心。也许基于接口的在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[jsp强于asp,但不是asp.net]]></title>
    <link>http://im.vc/web/asp/2011/0821/60855.html</link>
    <description><![CDATA[By Corey Roth, Senior Web Developer Special to ZDNet Fo r a while, the java 2 EnterPRise Edition (J2EE) architecture looked like the best way to develop multi-tiered applications. Java Server Pages (jsp) and servlets had many advantages ove]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.Net将如何影响我们？（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60854.html</link>
    <description><![CDATA[Microsoft .NET 将怎样影响我们做事的方式？ 眼前，还不会有什么影响。目前 .NET 是一个前景，而不是现实。然而，如果事情都像计划的那样，它将会对三类人有潜在的影响：用户、网络管]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.net的reflection (2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60853.html</link>
    <description><![CDATA[一旦得到类对象，上表中所列的方法就能被叫来调用reflaction.第一个例子将检查在CSharPReflectionSamples.Reflect类中的得到方法的信息。第一块代码用来定义类中的每个方法的名字，第二块代]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[与“黑客”的一段遭遇简单谈ASP的安全性]]></title>
    <link>http://im.vc/web/asp/2011/0821/60852.html</link>
    <description><![CDATA[我做了一个网站www.zydn.net，算是个人主页吧，虽不是以个人名义，但确实只有我一个人做这个事，我的站有一套后台系统，用asp写成的，主机用的万网的，但昨天我一上网，发现我的调]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发者面临的.Net挑战（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60851.html</link>
    <description><![CDATA[电子商务的大潮已经袭来，这需要所有的软件都支持 Web。开发者们思考得更多的是如何把现有的应用程序放到 Web 上，如何为 Internet 开发出企业级的、高性能的以及可伸缩的应用程序。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VB 6.0到VB.NET的转换(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60850.html</link>
    <description><![CDATA[从 Visual Basic 6.0 到 Visual Basic.NET 的转换(1) Microsoft Visual Basic.NET 是 Microsoft Visual Basic? 的后续版本，它是基于 .NET 框架重新设计的，您可以用它来轻松地创建用于 Microsoft Windows? 操作系统和]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于VS.NET beta1安装问题]]></title>
    <link>http://im.vc/web/asp/2011/0821/60849.html</link>
    <description><![CDATA[英文版直接升级即可。 中文版win2000(PRofessional or server) 第一步： Windows Component Update ------------------------- 1.請先確認您的作業系統已安裝了中文版 Windows 2000 SP1 或中文版 Windows 98 Second Ed]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发者面临的.Net挑战（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60848.html</link>
    <description><![CDATA[进入 .NET 通过打开不同的 Web 应用程序并把它们呈现为 Web 服务，Microsoft .NET 平台方便了它们之间的集成。通过支持开放的 Internet 协议，.NET 平台允许电子商务应用程序以及其它基于 W]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VB 6.0到VB.NET的转换(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60847.html</link>
    <description><![CDATA[升级 向导 将 Currency 数据类型转换为 Decimal，因此以下代码： Dim x As Currency 升级后将变为： Dim x As Decimal Date Visual Basic 6.0 Date 变量在内部以 Double 格式存储，能够作为 Double 类型的变量操]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[StoredProcedure在企业网站开发中的应用(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60846.html</link>
    <description><![CDATA[StoredPRocedure在企业级网站开发中的应用 Writen by pepper_dog999 我们都知道现在为企业开发的网站都以后台结合数据库的应用为主，但企业级的数据库有它的几点要求： 1、数据库的性能要好]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[开发者面临的.Net挑战（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60845.html</link>
    <description><![CDATA[框架 Windows DNA 和 .NET 平台确保 Web 应用程序能很好地工作、具有可伸缩性，并可以在其它 Web 应用程序和服务中访问。但如何真正开始应用程序的开发呢？从哪里开始呢？怎样能把应用]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VB 6.0到VB.NET的转换(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60844.html</link>
    <description><![CDATA[升级 向导 过程的 ParamArray 参数标记有升级警告。例如，以下代码： Function MyFunction(ParamArray p() As Variant) '... End Function 升级后将变为： ' UPGRADE_WARNING: ParamArray p was changed from ByRef to ByVal]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[StoredProcedure在企业网站开发中的应用(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60843.html</link>
    <description><![CDATA[StoredPRocedure在企业级网站开发中的应用（二） Writen by pepper_dog999 第五步：在前台调用该StoredProcedure，这里我们用ADO对象的Command，程序如下： % const adCmdStoredProcedure=H0004 const adChar=129 co]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从VB 6.0到VB.NET的转换(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60842.html</link>
    <description><![CDATA[升级 向导 这些语句不会自动升级，因此将标记有“(statement) is not supported”[（语句）不被支持] 的升级错误。例如，以下代码： a = VarPtr(b) 升级后将变为： ' UPGRADE_ISSUE: Function VarPtr()]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软提供的功能强大的ASP]]></title>
    <link>http://im.vc/web/asp/2011/0821/60840.html</link>
    <description><![CDATA[Cutting Edge A Client-side Environment for asp Pages 这是一个由微软提供的功能强大的ASP-HTML转换工具.它将常用的ASP脚本转换为HTML从而减轻服务器的负担 下面是官方的英文原版介绍资料 ASP is a W]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET升级能力探讨(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60839.html</link>
    <description><![CDATA[Scalability 总是与我的最后一个话题 performance 缠绕在一起，但事实上，它们是完全不同的两个问题。在Performance 一节里，我已谈及了 caching, 它是scalability 最大的改进之一，因此，我（作]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页技术]]></title>
    <link>http://im.vc/web/asp/2011/0821/60838.html</link>
    <description><![CDATA[2．asp技术 Active Server Pages即ASP是微软开发的一种类似HTML(Hypertext Markup Language超文本标识语言)、Script(脚本)与CGI(Common GAteway Interface 通用网关接口)的结合体，它没有提供自己专门的编程语]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ActiveX技术综述（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60837.html</link>
    <description><![CDATA[1.1.ActiveX的定义 ActiveX是Microsoft提出的一组使用COM（ComponentObjectModel，部件对象模型）使得软件部件在网络环境中进行交互的技术集。它与具体的编程语言无关。作为针对Internet应用开发]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET升级能力探讨(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60836.html</link>
    <description><![CDATA[先举一个c#的例子 验证用户表单输入 运行环境:Win2000 Advance Server+IIS5.0+NGWS SDK(80M的). %@ Page Language=C# % html script language=javascript function ClientValidateEmail(source, value) { var strr; re=/(\w+@\w+\.\w+)(\]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页技术]]></title>
    <link>http://im.vc/web/asp/2011/0821/60835.html</link>
    <description><![CDATA[3．jsp 技术 让我们先看一个小程序HelloJsp.jsp： html head titleJSP小程序/title /head body % String Str = JSP小程序 ; out.PRint(Hello JSP!); % h2 %=Str% /h2 /body /html 是不是很象asp程序？但是，它却是另一种开]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ActiveX技术综述（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60834.html</link>
    <description><![CDATA[6.VisualC++5.0对ActiveX的支持 VC++5.0（企业版）为Internet开发提供了完整的解决发案，其内容是： *使用MFC或者ATL开发ActiveX控制和ActiveX文档。 *使用ISAPI设计WEB服务器端的部件。 *使用WinInet开]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页技术]]></title>
    <link>http://im.vc/web/asp/2011/0821/60833.html</link>
    <description><![CDATA[4．php技术 笔者对PHP最为熟悉，也用的最多。PHP----Hypertext PReprocessor（超文本预处理器），是一种易于学习和使用的服务器端脚本语言，是生成动态网页的工具之一。它是嵌入HTML文件的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET升级能力探讨(三)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60832.html</link>
    <description><![CDATA[!-- 登陆信息 -- table border=0 width=600 trtd colspan=3 table border=0 cellpadding=0 cellspacing=0 width=100% trtd b登陆信息/b /td/tr /table /td/tr tr td align=right Email地址: /td td asp:TextBox id=email width=200px maxlength=60]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+ 现在已经被官方正式更名为 asp.net]]></title>
    <link>http://im.vc/web/asp/2011/0821/60830.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如果您转贴 本文 请 保留版权信息 */ 这是 豆腐在 国外 看到的一篇 英文文章，原文很长 豆腐删除了一些 无用的内容 11月12日 asp.net]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加固NT和IIS的安全]]></title>
    <link>http://im.vc/web/asp/2011/0821/60829.html</link>
    <description><![CDATA[原文作者：Gavin Reidgavin@shebeen.com 本文仅试用于运行IIS 4.0的NTS 4.0系统，如果服务器上还有其他的应用（比如Cold Fusion），那么必须同时保证这些应用本身的安全。下面所述的方法应该在]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 安全性技术概述]]></title>
    <link>http://im.vc/web/asp/2011/0821/60828.html</link>
    <description><![CDATA[域是网络对象（包括组织单元、用户帐户、组和计算机，他们都共享与安全性有关的公用目录数据库）的集合。域形成 Active Diectory 内逻辑体系结构的核心单元，因此在安全性中扮演重]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过几个非常实用的例子了解asp中使用正则表达式]]></title>
    <link>http://im.vc/web/asp/2011/0821/60827.html</link>
    <description><![CDATA[/* 豆腐制作 都是精品 http://www.asp888.net 豆腐技术站 如转载 请保留版权信息 */ 通过几个非常实用的例子了解asp中使用正则表达式 我们知道，在 VBscript 5.0 开始支持 正则表达式，下面我们]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[安装IIS 5.0 DIY]]></title>
    <link>http://im.vc/web/asp/2011/0821/60826.html</link>
    <description><![CDATA[作者：adam adam@nsfocus.com 主页：http://www.nsfocus.com 日期：2000-12-14 在安装Windows2000的时候，如果你选择了安装IIS，那么在安装的时候系统将会你的%SystemDrive%里创建一个InetPub目录，而且还会]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000 安全性技术概述]]></title>
    <link>http://im.vc/web/asp/2011/0821/60825.html</link>
    <description><![CDATA[为了向后兼容性，在 Windows 2000 中，信任关系通过使用 Kerberos V5 协议及 NTLM 身份验证（描述如下）支持跨域的身份验证。这一点很重要，因为许多组织的基于 Windows NT 的企业域模型非常]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET强大的性能(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60824.html</link>
    <description><![CDATA[一个程序，速度是一件非常令人渴望的东西。一旦代码开始工作，接下来你就得尽可能的让它运作的快些，再快些，在asp中你只有尽可能拧干你的代码，以至于不得不将他们移植到一个]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为ASP安装TCP/IP网络通讯协议]]></title>
    <link>http://im.vc/web/asp/2011/0821/60823.html</link>
    <description><![CDATA[因为asp通常是配合WEB服务器运行的，而WEB服务器通常也需要安装TCP/ip协议。但TCP/IP协议无法单独运行，因此必须配 合网卡使用，但如果你是个人单机用户，而不想购买网卡，又想运行]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS组建Intranet完全手册（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60822.html</link>
    <description><![CDATA[IIS组建Intranet完全手册（序） 不断有收到读者和网友的来信询问如何在建立内部的电子邮件系统、如何在局域网中发布主页，以及是否可以在局域网中利用AceFTP、CuteFTP来上传个人主页到]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET强大的性能(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60821.html</link>
    <description><![CDATA[Web forms和Web controls asp.net 提供了forms 链结到服务器的功能，因此你能够更简单地处理请求。Web controls也提供了相似的功能，并向网页开发者提供了相对于HTML controls的更多的功能。 cach]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建高负载Web服务器]]></title>
    <link>http://im.vc/web/asp/2011/0821/60820.html</link>
    <description><![CDATA[架设一台Web服务器已经变得非常简单了，尤其是在Windows平台上，很多Web服务器软件都有图形化的安装工具和图形化的管理工具。然而，如何使得架设的Web服务器真正能达到承担非常高的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS组建Intranet完全手册（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60819.html</link>
    <description><![CDATA[二、IIS 管理器的配置、应用 1、安装 IIS ： IIS可以在安装NT Server 4.0的同时选择“安装 Microsoft Internet Information Server”复选项进行安装，也可以在安装NT Server 4.0后再进行安装。在安装II]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET超凡的代码控制(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60818.html</link>
    <description><![CDATA[对于COM对象不再需要再在服务器上注册的这个功能我们是非常喜爱的。但是通过这种过程简化，我们也能也许会在不 经意间将一罐蠕虫病毒打开。这些恶梦躲藏在DLL背后的一个原因（就]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS组建Intranet完全手册（三）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60817.html</link>
    <description><![CDATA[IIS组建Intranet完全手册(三) 三、FrontPage 98 网站的上传 在《FrontPage 98网站FTP到NT服务器》一文里主要讲了在 IIS 中设置 FTP 服务器及在 FrontPage 如何上传的方法，在这里，我们除对其做出补]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Win98搭建调试ASP,PERL,PHP三种环境]]></title>
    <link>http://im.vc/web/asp/2011/0821/60816.html</link>
    <description><![CDATA[为了能调试三种脚本的编程环境，须安装Microsoft在WIN98发行中附带的PWS (Personal Web Server)个人WEB服务器（在WIN98光盘的add-one目录中）。 1、安装PWS 安装时，请选择自定义安装，在Personal]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET超凡的代码控制(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60815.html</link>
    <description><![CDATA[优化和缓冲存储. 这是怎样办到的呢? 根据脚本的首次请求, runtime将代码进行编译,并将编译结果进行高速缓冲存储复制(备份). 不论何时,只要脚本有请求,被存储的副本都可以调出使用.]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在98上支持cgi,php,asp,mysql]]></title>
    <link>http://im.vc/web/asp/2011/0821/60814.html</link>
    <description><![CDATA[如何在98上支持cgi,php,asp,MySQL 首先安装win98的pws,在安装perl(下载perl),在安装php4(下载).asp呢?pws本身就有了. pws,98盘中就有 eNet软件站点 全部软件 安装mysql(下载mysql) 在注册表HEKY_LOCAL_MACHIN]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网站设计与维护的三大问题及解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0821/60813.html</link>
    <description><![CDATA[网站设计与维护的三大问题及解决办法 我们设计网站时，往往先用可视化的工具如：frontpage,Dreamweaver等工具。随着站点的建设，网站的更新就不可避免的出现一些问题。本人在维护自己]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Serv]]></title>
    <link>http://im.vc/web/asp/2011/0821/60812.html</link>
    <description><![CDATA[Serv-U ：快速构建功能强大的FTP 服务器 Internet 的迅速发展为人们提供的前所未有的信息资源，越来越多的人希望在享受Internet 带来的全新的体验的时候，能够拥有自己的网上家园。在当]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO+ 引导数据种类的演变(转自 ms 一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60811.html</link>
    <description><![CDATA[ADO+ 引导数据种类的演变 Dino Esposito 2000年9月 摘要： 本文讨论了 ADO 的最新版本 ADO+ 所提供的增强的互操作性和可伸缩性。 目录 简介 一种公用数据操纵语言 数据种类 ADO+ 增加了哪些内]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO+ 引导数据种类的演变(转自 ms 二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60810.html</link>
    <description><![CDATA[ADO+ 增加了哪些内容？ 用最抽象的话来说，ADO+ 是具有更大的可伸缩性和互操作性的 ADO。就对象模型及编程问题而言，ADO 与 ADO+ 是完全不同的两个实体。尽管这样，ADO+ 源自 ADO 并保留]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页制作（一）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60809.html</link>
    <description><![CDATA[透明度应用:初始化页面的特效 在制作网页的时候，适当的加些初始化的特效 会给人很好的第一印象。 今次，我就和大家谈谈filter的用法之一 = Opacity Opacity就是透明度.100就为不透明，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第四章 C#类型]]></title>
    <link>http://im.vc/web/asp/2011/0821/60808.html</link>
    <description><![CDATA[第四章C#类型 既然你知道了怎样创建一个简单的C#程序，我将会给你介绍C#的类型系统。在这一章中，你学到如何使用不同的值和引用类型，加框和消框机制能为你作些什么。尽管这一章]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60807.html</link>
    <description><![CDATA[转自: ChinaByte 测试是在一个桌面系统上进行，配置为：400MHz Celeron处理器，128 MB RAM，操作系统是Windows 2000 Server （5.00.2195），Web服务器是运行asp 3.0 （asp.dll 5.0.2180.1）的IIS 5.0.2157.1。脚本]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页制作（二）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60806.html</link>
    <description><![CDATA[filter的应用：Opacity篇 OnlyOso声明： 对不起，前一篇文章的描述是有问题的。 以下是改正后的文章，希望能登上。 /OnlyOso 要给人美好的第一印象，特别的网页初始化方式起了一定的作用]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第五章 类 (1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60805.html</link>
    <description><![CDATA[第五章类(1) 前一章讨论了数据类型和它们的用法。现在我们转移到C#中至关重要的结构——类。没有了类，就连简单的C#程序都不能编译。这一章假定你知道了一个类的基本组成部分：]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(3)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60804.html</link>
    <description><![CDATA[转自: ChinaByte 我们选择了八个不同的测试例程（所有测试用到的代码已经在本文后面的下载Zip文件中提供）。如果语言本身不具备某个方法或函数，则编写一个专用的方法。 1．字符串]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第五章 类 (2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60803.html</link>
    <description><![CDATA[第五章类 (2) 5.3类属性 有两种途径揭示类的命名属性——通过域成员或者通过属性。前者是作为具有公共访问性的成员变量而被实现的；后者并不直接回应存储位置，只是通过 存取标志]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何保障Winnt +asp +sql web站点的安全经验(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60802.html</link>
    <description><![CDATA[一下是我的一些经验，希望对你有用，但你要知道，绝对的安全是没有的。这才是一个网管存在的理由。所以。未雨绸缪是件好事。但亡羊补牢也不是下策。 请看我的经验是。 1。多看]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(4)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60801.html</link>
    <description><![CDATA[转自: ChinaByte 上面的第一、三、四、六几种算法有一个共同特点：或者是其中一种语言独具某个功能，或者在正则表达式匹配和距离计算中，两种语言的差别非常大，足以成为一个很有]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第六章 控制语句]]></title>
    <link>http://im.vc/web/asp/2011/0821/60800.html</link>
    <description><![CDATA[第六章控制语句 有一种语句，你在每种编程语言控制流程语句中都可以找到。在这一章中，我介绍了C#的控制语句，它们分为两个主要部分： 。选择语句 。循环语句 如果你是C或C++程序]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何保障Winnt +asp +sql web站点的安全经验(2)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60799.html</link>
    <description><![CDATA[19。密码的安全策略。多少位的密码是安全的。这个很怪。按照ms的加密算法。只有14位以上的密码是可能安全的。但实际上很少有人能记住那么多位的密码。但14位一下。7位密码比较安]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(5)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60798.html</link>
    <description><![CDATA[转自: ChinaByte 第一组测试的结果如下表所示。表中的数值是在不同方案下1000次asp页面调用的平均执行时间，以秒计（每次执行ASP页面时测试例程执行一次）。 方案 语言***字符串翻转]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第七章 异常处理]]></title>
    <link>http://im.vc/web/asp/2011/0821/60797.html</link>
    <description><![CDATA[第七章异常处理 通用语言运行时（CLR）具有的一个很大的优势为，异常处理是跨语言被标准化的。一个在C#中所引发的异常可以在Visual Basic客户中得到处理。不再有 HRESULTs或者 ISupport]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(6)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60796.html</link>
    <description><![CDATA[转自: ChinaByte 显然，我们可以从测试结果中得到这样一个结论：在一个注重性能的场合，混合运用多种脚本语言一般是没有意义的。如果要考虑两次模式匹配测试的结果差异，也应该看]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[主页制作的五十个秘诀]]></title>
    <link>http://im.vc/web/asp/2011/0821/60795.html</link>
    <description><![CDATA[由Flashmonkey整理： 一、内容 1、让读者有理由逗留。要把网页作得趣味盎然，引人入胜。但首要的是要让它有用处。这样做的一个很简单的办法是提供相互参与——让读者做一些事情，]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第八章 用C#写组件]]></title>
    <link>http://im.vc/web/asp/2011/0821/60794.html</link>
    <description><![CDATA[第八章用C#写组件 这一章关于用C#写组件。你学到如何写一个组件，如何编译它，且如何在一个客户程序中使用它。更深入一步是运用名字空间来组织你的应用程序。 这章由两个主要大]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[影响IIS性能的几个因素（1）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60793.html</link>
    <description><![CDATA[带宽是首先要考虑的问题之一 在探讨带宽问题时，我们先来谈谈INTERNET连接类型和网络连接能力 INTERNET带宽决定你的计算机获得数据的速度和可以同时处理的请求数量。如果你不能针对]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[域名是如何被“劫持”的]]></title>
    <link>http://im.vc/web/asp/2011/0821/60792.html</link>
    <description><![CDATA[10月下旬，传来一条惊人的消息，Adobe公司网站的域名遭到黑客的袭击， 一名至今仍未查出身份的黑客私自更改了adobe.com网站的域名记录，黑客把adobe.com网站的域名记录指向转移到了位]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第九章 配置和调度]]></title>
    <link>http://im.vc/web/asp/2011/0821/60791.html</link>
    <description><![CDATA[第九章配置和调度 在上一章，你学到如何创建一个通用语言运行时（CLR）组件，且如何在一个简单的测试应用程序中使用它。虽然CLR组件就要准备装载了，但你还是应该思考以下技术之]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[影响IIS性能的几个因素（2）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60790.html</link>
    <description><![CDATA[网络连接能力 你所采用的网络连接类型直接影响服务器的性能。每当网络连接不能控制通过他发送的数据量时，服务器的性能就会受到损害。此外，在计算机上运行的需要占用网络带宽]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt;前言(补充)和第三章第一个C#程序]]></title>
    <link>http://im.vc/web/asp/2011/0821/60789.html</link>
    <description><![CDATA[前言 0.1提要 欢迎阅读《展现 C#》(PResenting C#)。这本书是你提高企业编程语言的一条捷径。这种企业编程语言带有下一代编 程语言服务运行时(NGWS Runtime)：C#(发音C sharp)。 NGWS Runtime 是一]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP值多少钱，还能值钱多久。]]></title>
    <link>http://im.vc/web/asp/2011/0821/60788.html</link>
    <description><![CDATA[asp以其大牌身份，从面世以来得到了如潮般褒贬且简要分析asp的价值 首先asp来自ms，是ms为互动网络提供的一种解决方案,推出时被给予了 极大的希望,其实原因很简单,第一,它是微软做的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[企业级N Tier体系结构解决方案讨论(一)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60787.html</link>
    <description><![CDATA[我再举一个数据完整性(Integerity)的问题。例如网上报帐的系统，它需要两个相关的表，一个是帐务的记录表(loan_history)，一个是帐务的清除表(loan_clear)，每当在loan_clear表中增加一个记录]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第一章 C#简介]]></title>
    <link>http://im.vc/web/asp/2011/0821/60786.html</link>
    <description><![CDATA[第一章C#简介 欢迎您加入C#的世界！ 这一章将把您引进C#的天地，并回答一些相关的问题，如：您为什么要使用C#，C++和C#的主要有什么不同点，以及为什么C#使开发更容易而且还使您感]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP值多少钱，还能值钱多久（终结篇）]]></title>
    <link>http://im.vc/web/asp/2011/0821/60785.html</link>
    <description><![CDATA[任何事物的发展都要基于压力与动力，其实什么::$data,::81%,::82%对ms来 说，无非小菜，nt补丁5已经可以将他们完全杜绝，至于sp6就更加的无懈可 击，刚才看到一位仁兄批评我对asp的失望]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[企业级N Tier体系结构解决方案讨论(二)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60784.html</link>
    <description><![CDATA[企业级N Tier体系结构解决方案讨论 --NT+SQL Server plantform篇 Writen by pepper_dog999 关于企业级的数据库结合前台应用程序的解决方案现在成为了整个网络应用的热点问题。很多企业在选择解决]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[&amp;amp;lt;展现C#&amp;amp;gt; 第二章 NGWS Runtime 技术基础]]></title>
    <link>http://im.vc/web/asp/2011/0821/60783.html</link>
    <description><![CDATA[第二章NGWSruntime 技术基础 既然你已经具有了C#全面的印象，我也想让你了解NGWS runtime的全貌。C#依靠由NGWS提供的运行时；因此，有必要 知道运行时如何工作，以及它背后所蕴含的概念。]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBScript与JScript谁怕谁(1)]]></title>
    <link>http://im.vc/web/asp/2011/0821/60782.html</link>
    <description><![CDATA[转自: ChinaByte 在asp环境下，VBScript和JScript哪种语言更好一些？本文测试这两种脚本语言完成常见操作所需要的时间，分析它们各自的长处和不足，并根据测试结果得出了一些值得关注的]]></description>
    <pubDate>2011-08-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站数据库被挂木马的处理办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30814.html</link>
    <description><![CDATA[第一步：为现有数据库做好备份。 第二步： 执行如下ASP文件，这样就可以去掉数据库当中的JS木马： 注：conn.asp自己去写了。 这里放入JS木马内容：请记得改为自己数据库中的JS木马内]]></description>
    <pubDate>2009-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[escape解决AJAX中文乱码的简单方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30813.html</link>
    <description><![CDATA[在使用AJAX开发网站时，经常有朋友遇到乱码的问题，而且一下子难以找到解决方法。其实解决AJAX中文乱码问题很简单。 1、服务端程序： % liststr=AJAX中文乱码的简单解决方法 sponse.wri]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[赋NULL值给COOKIES时出现的错误]]></title>
    <link>http://im.vc/web/asp/2011/0705/30811.html</link>
    <description><![CDATA[很多朋友在使用COOKIES时会出现下面这样的错误： Microsoft VBScript 运行时错误 错误 800a000d 类型不匹配: [object] 这个错误解决办法其实很简单，原因是因为你给COOKIES赋了一个为NULL的值。]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB开发规范范本]]></title>
    <link>http://im.vc/web/asp/2011/0705/30810.html</link>
    <description><![CDATA[一.页面设计部分 1.img控件 alt：所有展示类图片都要具有能简要描述图片内容的文字说明。 2.Input控件 maxlength：所有INPUT控件都需要制定maxlength属性，默认值为数据库中对应的字段的长度]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP、PHP和JSP的对比]]></title>
    <link>http://im.vc/web/asp/2011/0705/30809.html</link>
    <description><![CDATA[在网络发展日新月异的今天,人们不断的创新,包括网页,网站的发展.原来的那些HTML超文本语言已经不能完全满足我们的做网页的需要了.我们需要的是一个动感性,交互性都很强的网站.这]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP计数器程序详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30807.html</link>
    <description><![CDATA[Active Server Pager(动态服务器主页，简称ASP)，通过读写服务器的文件，结合script语言（VBscript或Jscript）和html码可以方便地实现页面计数器功能。现流行的ASP教材和网络上的ASP教程都谈到过]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Server对象: 数据格式化]]></title>
    <link>http://im.vc/web/asp/2011/0705/30805.html</link>
    <description><![CDATA[第一：格式化html数据 这里首先涉及的是在一个HTML网页中如何显示HTML代码的方法。 字符与等价的HTML实体的关系 ： ： 如果我们在输出流中直接使用 这些标签是无法在浏览器上明文显示]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用标签替换的方法生成静态网页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30804.html</link>
    <description><![CDATA[大家都知道HTML静态网页更容易被搜索引擎收录索引，动态生成HTML网页，也可使网站的网页数量增多，搜索引擎收录的数量也可能多，再加下提高网页的质量也意未着什么呢？我想大家]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js读取服务器Cookies时候中文编码问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30803.html</link>
    <description><![CDATA[问题的来源在于cookies在传递时是经过了编码的。 写入Cookie内容前需要进行escape（十六进制编码），编码时又是以字节为单位的。 任何一个汉字都会被拆成两个字节分别编码；而js在读]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP测试WEB服务器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30802.html</link>
    <description><![CDATA[HTML HEAD TITLE测试Web服务器/TITLE /HEAD BODY Script language=jscript runat=server response.write (table border=1); response.write (trtd脚本引擎/tdtd); response.write (ScriptEngine()+/td/tr); response.write (trtd编译版本/tdtd);]]></description>
    <pubDate>2009-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断cookie是否开启]]></title>
    <link>http://im.vc/web/asp/2011/0705/30801.html</link>
    <description><![CDATA[方法一： 无论何时你在两页之间，有一个非常简单可靠的方法：请求一个SessionID在第一页，传递它到下一页。与这一页请求到的SessionID比较。相同说明客户端浏览器接受Cookies;不同则不]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用代码为入门学习者介绍asp中的cookies的基本使]]></title>
    <link>http://im.vc/web/asp/2011/0705/30800.html</link>
    <description><![CDATA[有2种使用cookie cookies集合的基本方式： 1、将cookie写入访问者的计算机（RESPONSE） 2、从访问者的计算机中取回cookie（REQUEST ） 如果您对cookies如何在浏览器和服务器之间进行传递，可以参]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp class一个标签引擎类tagEngine.Class]]></title>
    <link>http://im.vc/web/asp/2011/0705/30799.html</link>
    <description><![CDATA[修改记录： 1,增加扩展函数,2006-12-3 % apos;****************************** apos;类名：tagEngine apos;名称：标签引擎 apos;日期：2006-11-29 apos;作者：西楼冷月 apos;网址：www.xilou.net | www.chinaCMS.org apos;描]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[遍历cookies的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30798.html</link>
    <description><![CDATA[为了使用Cookies集合更加方便，可使用名称为Haskeys的附加属性。假如访问的cookie本身也是个集合，即它是一个多值的cookie，这将返回True。使用Haskeys属性，可以遍历完整的Request.Cookies集合]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Cookie集合基础]]></title>
    <link>http://im.vc/web/asp/2011/0705/30797.html</link>
    <description><![CDATA[Cookies、Session 和Application 对象很类似，也是一种集合对象，都是用来在保存数据。但Cookies 和其它对象最大的不同是Cookies 将数据存放于客户端的磁盘上，而Application 以及Session 对象是将]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[参考c#中的ArrayList写的asp操作数组的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30796.html</link>
    <description><![CDATA[ASP对数组操作要注意的一些问题： 1,LBound()和UBound()是取得数组里最小的和最大的索引值，并不是数组的长度， 数组的长度是:UBound()+1 2,有时要动态改变数组大小，所以要先声明一个空的]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中cookie使用示例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30795.html</link>
    <description><![CDATA[首先是前台的表单域: form name=Login action=loginaction.ASP method=post 用户名称 input name=User type=text id=User size=23 maxlength=20 用户密码:input name=Password type=password id=Password size=23 maxlength=20 Cookie选项]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Cookie跨域操作解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30794.html</link>
    <description><![CDATA[Cookie跨域操作看来是个简单的问题,因为只要指定Domain属性为指定网站的根域名就可以了. 但是笔者在实际使用过程中却遇到了一些问题，的确值得注意. 环境介绍 cookie在www主域名下创建]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CJJ专用ASP类库中的某个class]]></title>
    <link>http://im.vc/web/asp/2011/0705/30793.html</link>
    <description><![CDATA[apos;----******************** TConnString *****************************---- apos;数据库连接字符串结构体 Class TConnString Public DBName,DBPath,DBServer,DBUser,DBPass,DBType End Class apos;----******************** TConnString ****]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp: Cookie集合简介]]></title>
    <link>http://im.vc/web/asp/2011/0705/30792.html</link>
    <description><![CDATA[cookie的属性： 1、ExpiresAbsolute属性 该属性可以赋一个日期，过了这个日期Cookie就不能再被使用了。通过给Expires属性赋一个过期的日期，就可以删除Cookie。如： %Response.cookies(passtime).exp]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[控制某个行为只出现一次]]></title>
    <link>http://im.vc/web/asp/2011/0705/30791.html</link>
    <description><![CDATA[＜script＞ function openwin(){ window.open(pop1.html,,width=120,height=240) } function get_cookie(Name) { var search = Name = var returnvalue = ; if (document.cookie.length ＞ 0) { offset = document.cookie.indexOf(search) if (offset != -]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP缓存类 【先锋缓存类】Ver2004]]></title>
    <link>http://im.vc/web/asp/2011/0705/30790.html</link>
    <description><![CDATA[% apos;------------------------------------------------------------------------------------- apos;转发时请保留此声明信息,这段声明不并会影响你的速度! apos;************************** 【先锋缓存类】Ver2004 ******]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp学习网:asp 类(class)导读]]></title>
    <link>http://im.vc/web/asp/2011/0705/30789.html</link>
    <description><![CDATA[在VBScript中使用类涉及到一些关于面向对象的思想。使用各种语言都可以编写com组件，使用到ASP之中，这些语言包含c、vb、Delphi或者Java等，可以看到Windows操作系统可以兼容很多东西，这]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[什么是cookie 认识cookie对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30788.html</link>
    <description><![CDATA[什么是cookie cookie 的英文本意是指就着牛奶一起吃的点心。然而，在因特网内，cookie这个字有了完全不同的意思。那么cookie到底是什么呢？Cookie是小量信息，由网络服务器发送出来以存]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个ASP生成SQL命令字符串的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30787.html</link>
    <description><![CDATA[具体使用的时候还需要改进，当然，这样子做的话可能会降低效率，不过使用在某些特定的小规模的应用上是很有用的。 % apos;生成SQL字符串的类。 apos;原作：无名氏 apos;改进：aloxy a]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[ASP]使用类，实现模块化]]></title>
    <link>http://im.vc/web/asp/2011/0705/30786.html</link>
    <description><![CDATA[写在前面的话： 所有写程序的人都知道，当你逐渐对您要实现的功能展开的时候，很大的时候，第一天写的东西第二天就忘了写到那里了，很多的时候，不得不写上详细的程序开发笔记]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[验证网站是否被收藏的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30785.html</link>
    <description><![CDATA[可以用cookie记录您的网站是否被收藏 在确认被设为主页或者被收藏之后 就不必要在询问访客了 SCRIPT LANGUAGE=JavaScript !-- Begin var expDays = 100; url = http://www.ASPxuexi.com; title = Come on; function G]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中一个简单的用户登陆验证类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30784.html</link>
    <description><![CDATA[源代码如下： %apos;========================================================================== apos; apos; 用户登陆身份验证类 apos; apos; NAME: CheckLogin apos; apos; AUTHOR: Infozero apos; DATE : 2006-5-28 apos; apos; COMMENT]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在VBScript中使用类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30783.html</link>
    <description><![CDATA[前言 首先，在我进入实质性主题并解释如何建立类之前，我希望保证你知道对象。虽然你可以在程序中使用对象而不用知道其正确的规则，但我并不建议如此！对于对象的初学者，接下]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[cookies读写基本例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30782.html</link>
    <description><![CDATA[writecookie.ASP %@ Language=VBScript % %Response.Buffer=true% HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 TITLE写Cookie的示例/TITLE /HEAD BODY % Response.Write 写Cookie： Response.Cookies(Cookie1)(key1) = KeyValu]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据持久层抽象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30781.html</link>
    <description><![CDATA[数据持久层在所有的系统中都存在。对于小型或者中型的ASP应用，这一点往往不受重视。这篇文章试图改善这一现状，以一种简单的方式提供了简化调用ADO相关对象的方法。这种方法的]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的类(VBScript class)基础学习]]></title>
    <link>http://im.vc/web/asp/2011/0705/30780.html</link>
    <description><![CDATA[首先ASP的(VBScript)类是由事件和方法(它们就是构成类的成员了)构成的 在 Class 块中，成员通过相应的声明语句被声明为 Private(私有成员，只能在类内部调用) 或 Public(公有成员，可以在类]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30779.html</link>
    <description><![CDATA[上一节已经介绍了关于文章管理的数据库连接，本篇将讲述文章的在线添加，当你找到了一篇很好的资料，并且想尽快放到你的网站上面，如果你首先想到的是快点做好一个页面，并且]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[面向对象的ASP技术]]></title>
    <link>http://im.vc/web/asp/2011/0705/30778.html</link>
    <description><![CDATA[历史 如今的Web应用程序越来越流行，基于B/S结构的软件也日渐增多。这也不难想象，正如Sun公司总裁Scott所说，计算机就是网络，随着互联网技术的发展，知识在世界范围内得到充分的]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp Fso文件/文件夹操作类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30777.html</link>
    <description><![CDATA[和前面提到的一样，这个也只是把一些函数压在一起。实际上用一些函数集的方法放程序中更好。 主要功能： 1,创建删除文件夹 2,获取某个文件夹里的文件夹名称和个数 3,获取某个文件]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30776.html</link>
    <description><![CDATA[上一节为大家介绍了文章管理系统的数据库结构，建立了数据库以后，就要用ASP建立与数据库相关的程序，包括连接数据库、显示数据库内容、更新数据库等与之相关的程序，所以本篇]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用MVC模型引导你的WEB设计思路]]></title>
    <link>http://im.vc/web/asp/2011/0705/30775.html</link>
    <description><![CDATA[习惯于过程式的开发，一直向往着面向对象。无奈半路出家人，没有一点内力基础，看了一大堆面向对象的书也只是看得一头雾水。对于MVC的概念也是偶然了解到的，感觉能和Web开发结]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp事件类 asplib-eventProvider.class.asp 用于获取ip等]]></title>
    <link>http://im.vc/web/asp/2011/0705/30774.html</link>
    <description><![CDATA[作者真是细致，把这些东西都封装成为class了。有点过了，这些东西可以作成过程或者函数来封装，sub和function也是封装，不一定非要class才可以。您的文件库不一定全部都是class，一些]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30773.html</link>
    <description><![CDATA[当你有了一个自己的网站以后，尤其是对于那些流量较大、内容较多的网站，每天的更新站点成了你维护网站的首要任务之一，但往往是找到了资料以后，还要先做出与其相关的页面，]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP框架设计]]></title>
    <link>http://im.vc/web/asp/2011/0705/30772.html</link>
    <description><![CDATA[一，概述 ASP源代码的容易获得(如果用DLL封装则又不利于虚拟主机部署)使得ASP源码在国内流行到泛滥，程序员倾向于快速编程和快速忘记，可读性和维护性都为人诟病。其实，ASP代码也]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP记录论坛用户密码(dvbbs,leadbbs等)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30771.html</link>
    <description><![CDATA[很多人在得到动网的数据库后郁闷不已 Now We Have Another Method!!!!! 这就是用ASP记录明文密码。 用法： 1.将此代码插入login.asp或admin_login.asp等等验证登陆的文件末尾即可。 2.将PATH换成Web下]]></description>
    <pubDate>2008-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份]]></title>
    <link>http://im.vc/web/asp/2011/0705/30770.html</link>
    <description><![CDATA[为简单计，本文只讨论在服务器端的用户身份验证。登录页面是通过调用ASPSecurity.inc中的signUserOn函数验证用户身份的。signUserOn检查数据库中是否存在和用户输入的名字、密码匹配的记]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP显示错误]]></title>
    <link>http://im.vc/web/asp/2011/0705/30769.html</link>
    <description><![CDATA[%option explicit%]]></description>
    <pubDate>2008-12-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带进度条的ASP无组件断点续传下载]]></title>
    <link>http://im.vc/web/asp/2011/0705/30768.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRIPT CODEPAGE=936% %Option Explicit% % ================================== 带进度条的ASP无组件断点续传下载 ================================== 简介： 1)利用XMLhttp方式 2)无组件 3)异步方式获取，节省]]></description>
    <pubDate>2008-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP错误提示大全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30767.html</link>
    <description><![CDATA[ASP错误提示大全 MicrosoftVBScript语法错误(0800A03E9)＞内存不足MicrosoftVBScript语法错误(0800A03EA)＞语法错误 MicrosoftVBScript语法错误(0800A03EB)＞缺少?: MicrosoftVBScript语法错误(0800A03ED)＞缺少?( Mic]]></description>
    <pubDate>2008-12-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel]]></title>
    <link>http://im.vc/web/asp/2011/0705/30766.html</link>
    <description><![CDATA[到目前为止，有好几种方法可以使用ASP技术来创立Excel数据表格，你还可以利用服务器端Excel 8.0 VBA组件建立电子数据表。但是，某些情况下服务器可能无法处理所涉及到的信息量或无法]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序在VB中转换为组件的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30765.html</link>
    <description><![CDATA[在网易虚拟社区的VB和Basic区里有一篇《使用VB编写纯ASP程序 [转][Technology] 》，其实我认为最好的方法应该这样 原文中的定义如下： Dim m_objResponse As Response 其实对于我们写过.dll的来说，]]></description>
    <pubDate>2008-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分析内容自动保存远程图片到本地并取得第一]]></title>
    <link>http://im.vc/web/asp/2011/0705/30764.html</link>
    <description><![CDATA[采集中 或者 在线添加文章中 都可以用到此功能 俺自己在baidu上搜索的保存远程图片到本地的代码 感觉比较难用点 而且没有现成的比较全的代码 俺也看不懂 俺从 SNA新闻采集系统 For]]></description>
    <pubDate>2008-12-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP向NT域中加一个用户]]></title>
    <link>http://im.vc/web/asp/2011/0705/30763.html</link>
    <description><![CDATA[问题： 在ASP中如何添加NT域用户？ 俟名 于1999-03-08 提出 答案： 可以使用微软的活动目录服务接口（ADSI），例如： Set DomainObj=GetObject(WinNT://Domain) Set UserObj=DomainObj.Create(user,white) UserObj]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP生成二维拼图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30762.html</link>
    <description><![CDATA[%@ Language=VBScript % HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 /HEAD BODY OBJECT classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D id=MSChart1 style=LEFT: 0px; TOP: 0px VIEWASTEXT height=300 width=300/OBJECT SCRIP]]></description>
    <pubDate>2008-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（4）：FSO组件之文件操作（下）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30761.html</link>
    <description><![CDATA[一，fso.GetFile 提取文件相应的 File 对象 1，getfile.ASP % whichfile=Server.MapPath(cnbruce.txt) Set fso = CreateObject(Scripting.FileSystemObject) Set f1 = fso.CreateTextFile(whichfile,true) f1.Write (This is a test.My Name is c]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP在线创建Word与Excel文档]]></title>
    <link>http://im.vc/web/asp/2011/0705/30760.html</link>
    <description><![CDATA[ASP具备动态输出任一Office应用程序文件格式的功能。在开始编写代码之前，我们首先需要做的就是设置正确的文件类型，因为浏览器需要知道如何处理文件。第二步是编辑文件名称，我]]></description>
    <pubDate>2008-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实用Server.Transfer轻松用ASP实现Rewrite模拟生成静态]]></title>
    <link>http://im.vc/web/asp/2011/0705/30759.html</link>
    <description><![CDATA[以前刚刚懂404.ASP的时候，曾经幻想把所有程序代码写到404.asp中，实现一个模拟生成静态网页的站，如果程序小还可以，用404.asp实现Rewrite还是一个不错的选择，如果程序代码多达10000]]></description>
    <pubDate>2008-11-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（3）：FSO组件之文件操作（上）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30758.html</link>
    <description><![CDATA[学会了FSO提取文件值，也学会了将信息输入到文件中，那下面就再来应用应用下。 不知道你有没有这样的习惯：看到一个文件，不自觉的右键选择用记事本打开。呵呵，几乎没有哪个文]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP读INI配置文件的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30757.html</link>
    <description><![CDATA[要求： 能够读取按照 INI文件的Section和Key来读出相应的Value。 比如一个配置文件 SMSVote.ini --------------------------------- [SMSVote] Server=(local) DB=SMSVote User=sa PassWord=123 [DB2Vote] Server=192.168.0.1 DB]]></description>
    <pubDate>2008-11-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改Metabase.xml文件提升IIS性能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30756.html</link>
    <description><![CDATA[Metabase.XML文件是IIS的设置文件，每个网站已经IIS的设置都在这个下面，所以在修改这个文件之前要把这个文件备份一下。这个文件在C:Windowssystem32inetsrvMetabase.xml，前篇的启用IIS的静态压]]></description>
    <pubDate>2008-12-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（2）：FSO组件之文件夹操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30755.html</link>
    <description><![CDATA[操作完驱动器，接着就是来操作文件夹了。其中包括：提取文件夹信息、创建文件夹、删除文件夹、复制文件夹、移动文件夹等。下面就具体来看。 一、fso.GetFolder 一看就明白，是提取]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP随机涵数生成100条8位字母和数字混合密码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30753.html</link>
    <description><![CDATA[%for i = 1 to 100% % Randomize pass= Do While Len(pass)8 随机密码位数 num1=CStr(Chr((57-48)*rnd+48)) 0~9 num2=CStr(Chr((122-97)*rnd+97)) a~z pass=passnum1num2 loop 原创:www.devdao.com % %=pass%br %next%]]></description>
    <pubDate>2008-12-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（1）：FSO组件之驱动器操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30752.html</link>
    <description><![CDATA[FSO，正如UFO般令人激动、令人神往，当然更多的亦是让人欢喜让人忧。君不见某空间服务商广告：100MB空间只要60RMB/年，支持数据库，支持什么什么一问不支持FSO，立马泄气。那FSO究竟]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中的主页广告轮换技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30751.html</link>
    <description><![CDATA[各位对JavaScript应该是比较熟悉了吧。下面我们就用它来解决广告的问题。设计思路是这样的：将原来同屏显示多个固定广告的做法改为单屏只显示一个广告，但这个广告是轮换的，也就]]></description>
    <pubDate>2008-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用isapi rewrite实现asp的HTML静态化]]></title>
    <link>http://im.vc/web/asp/2011/0705/30750.html</link>
    <description><![CDATA[ASP网站程序在国内运用很广，但是类似于im286.asp?id=20050307213811这样的url有点不利于搜索引擎的收录，也就是说不符合友好url(urls-friendly)的标准，那么我们用iSAPi_rewrite打造一个clean url，让]]></description>
    <pubDate>2008-12-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp教程:asp 通用数据操纵函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30749.html</link>
    <description><![CDATA[我是历尽千辛万苦，拔山涉水啊，终于把这个页面写完了，不过这也要多感谢JSP了，因为昨天心血来潮的时候，突然想学JSP，于是找了几篇文章，看完后觉得Javabean太牛X了，有感觉有点]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP图片水印:在上传的图片上打自己的文字水印]]></title>
    <link>http://im.vc/web/asp/2011/0705/30748.html</link>
    <description><![CDATA[很多时候需要在用户上传的图片上加上版权或者一些其他的附加文字信息，如何实现这样的功能，下面帖个简单实现的例子，起到抛砖引玉的作用。 %@PageLanguage=C#Debug=trueTrace=true% %@Imp]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Response.Redirect在新窗口打开的另一种方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30747.html</link>
    <description><![CDATA[这里介绍Ihttpmodule处理请求管道的方法。Response.Redirect的原理是服务器设置返回http状态码为302,然后客户端执行跳转，用reflector可以看到.net的代码段。 以下是HttpResponse类的Redirect方法中的]]></description>
    <pubDate>2008-12-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp教程:利用xmlhttp远程下载图片，asp 下载远程图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30746.html</link>
    <description><![CDATA[% function getHTTPimg(url) on error resume next dim http set http=server.createobject(MSXML2.XMLHTTP) Http.open GET,url,false Http.send() if Http.readystate4 then exit function getHTTPimg=Http.responseBody set http=nothing if err.number0 th]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web文件的ContentType类型大全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30745.html</link>
    <description><![CDATA[ContentType 属性指定服务器响应的 HTTP 内容类型。如果未指定 ContentType，默认为 text/html。 在ASP中使用它： % Response.ContentType = text/HTML % % Response.ContentType = image/GIF % % Response.ContentType = ima]]></description>
    <pubDate>2009-01-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP跳过错误]]></title>
    <link>http://im.vc/web/asp/2011/0705/30744.html</link>
    <description><![CDATA[on error resume next]]></description>
    <pubDate>2008-12-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp教程:点击链接弹出保存图片对话框]]></title>
    <link>http://im.vc/web/asp/2011/0705/30743.html</link>
    <description><![CDATA[call download(server.mappath(./test.jpg)) Function download(File) temp = Split(File, ) filename = temp(UBound(temp)) Set s = CreateObject(adodb.stream) s.mode = 3 s.Type = 1 s.Open s.loadfromfile(File) data = s.Read If IsNull(data) Then res]]></description>
    <pubDate>2009-01-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无需模板 ASP+FSO生成静态HTML页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30742.html</link>
    <description><![CDATA[FSO生成静态HTML文件的时候替换模板标签一直是一个很麻烦的问题，至少我是这么认为的，还要别外做一个模板，麻烦！，我今天看见有一个方法可以解决这个问题 如一个正常的index.A]]></description>
    <pubDate>2009-01-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp文件打不开的原因]]></title>
    <link>http://im.vc/web/asp/2011/0705/30741.html</link>
    <description><![CDATA[问： 安装了IIS，怎么ASP文件打不开 我现在暂时没有连上互联网。我安装了IIS，但本地机子上的ASP文件打不开。提示要选择程序，但缺没有IE。打开IE，用文件》打开的方式也打不开。]]></description>
    <pubDate>2008-05-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学ASP编程易犯的一个错误要注意]]></title>
    <link>http://im.vc/web/asp/2011/0705/30740.html</link>
    <description><![CDATA[在ASP编程中，身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢？ 表单提交页面：sub.htm html head title管理员登陆＜/title body form name=form1 method=post action=sub.asp p 管理员: inpu]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中操作UTF-8格式的文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30739.html</link>
    <description><![CDATA[注意：这里说的ASP ASP由于它的一些功能对UTF-8支持非常差。 比如，你想生成一个UTF-8格式的文件，使用常用的 Scripting.FileSystemObject 对象就不行。 Scripting.FileSystemObject 对象创建文件的函]]></description>
    <pubDate>2009-01-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP处理多关键词查询实例代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30738.html</link>
    <description><![CDATA[在Web开发中经常遇到多关键词对对单个字段查询，我一般是通过动态数组来实现的。当然多个关键词的一般是用空格或,隔开，我这几假设多个关键词用空格隔开,关键字字符串为keyStr，]]></description>
    <pubDate>2008-05-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp获取文件md5值]]></title>
    <link>http://im.vc/web/asp/2011/0705/30737.html</link>
    <description><![CDATA[网上ASP加密字符的MD5很多，也很普遍，但是对文件进行md5的确很少，因为受到asp语言本身的限制。我们知道字符串的md5可以对明文进行不可逆的加密，从而保证数据储存或者传送的安全]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP安全设置：禁止从外部提交数据]]></title>
    <link>http://im.vc/web/asp/2011/0705/30736.html</link>
    <description><![CDATA[使用ASP尽量减少服务器端的工作量，这样就应该多使用JavaScript，把所有提交字段使用Javascript或VBscript检测后提交给服务器，这样服务器就不必再作检测，而在提交时可能会有人修改sc]]></description>
    <pubDate>2009-02-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：自己写的数据库操作类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30735.html</link>
    <description><![CDATA[我的想法是既然是数据库操作类，所以类一实例化的时候就建立数据库连接，所以在使用的时候要先修改 Class_Initialize()中的代码，设置正确的数据库连接数据，设置好了就可以使用了。]]></description>
    <pubDate>2008-05-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP、PHP与javascript根据时段切换CSS皮肤的代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30734.html</link>
    <description><![CDATA[ASP、PHP与JavaScript根据时段切换CSS皮肤的代码 一个网站能切换不同的CSS风格大家应该都了解，像众所周知的腾讯在今年改版时也增加了切换皮肤的功能。根据时间自动调整站点风格是不]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于asp静态分页的反向生成方式]]></title>
    <link>http://im.vc/web/asp/2011/0705/30732.html</link>
    <description><![CDATA[查看很多知名网站，除了采用静态网页，还采用了真正的静态分页。大家知道，静态分页是很容易做好的，但关键在于对于新内容的增加后要重新生成分页，是很难的，要使得分页重新]]></description>
    <pubDate>2008-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp根据表单自动生成sql语句的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30731.html</link>
    <description><![CDATA[每次在操作数据库的时候最烦的就是根据表单提交的内容写sql语句，特别是字段比较多的时候很麻烦，动不动就容易写错。所以我就写了下面的生成sql语句的函数，用了用觉得还可以。]]></description>
    <pubDate>2008-05-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用 CMyObject 类对服务器端接收的表单数据实现对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30730.html</link>
    <description><![CDATA[从客户端获取的表单数据是平板结构，没有体现数据之间的关联（例如层级关系），当数据来自多个表单、处理后需要分别保存到多张数据表时，表单数据与数据表之间又缺乏对应关系]]></description>
    <pubDate>2009-03-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现IE地址栏参数的判断]]></title>
    <link>http://im.vc/web/asp/2011/0705/30729.html</link>
    <description><![CDATA[在服务器端ASP程序可以接受html页面上的form传来的参数，那么它又如何实现IE地址参数判断呢？ 当地址栏没有参数＂id＂时： 以下是引用片段： Request.QueryString[ID]==null Convert.ToString(Requ]]></description>
    <pubDate>2008-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现access随机显示不重复记录解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30728.html</link>
    <description><![CDATA[以下为引用的内容： % -------------------------数据库连接----------------------- Set objConn = Server.CreateObject(ADODB.Connection) objConn.ConnectionString = Provider=Microsoft.Jet.OLEDB.4.0; _ Data Source= Server.MapPath(dat]]></description>
    <pubDate>2008-10-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp及Web开发中的常见问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30727.html</link>
    <description><![CDATA[表格的折行处理. ＜table style=TABLE-LAYOUT: fixed width=200 border=0 cellspacing=0 cellpadding=7 bgcolor=#f7f7f7＞ ＜tr＞ ＜td style=LEFT: 0px; WIDTH: 100%; WORD-WRAP: break-word＞ dffadfdaQQqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq]]></description>
    <pubDate>2009-04-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中输出Excel文件实例一则]]></title>
    <link>http://im.vc/web/asp/2011/0705/30726.html</link>
    <description><![CDATA[在ASP中利用Excel的一个方法是将excel文件作为一个数据库进行链接，然后的操作和对Access数据库操作类似。但是这个方法不是总能有用的，应为excel不是关系型的数据库。对于一个固定格]]></description>
    <pubDate>2008-08-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何跳出本次进入下一次循环]]></title>
    <link>http://im.vc/web/asp/2011/0705/30725.html</link>
    <description><![CDATA[看下面的Java代码，目的是为了当i是3的时候，就不做输出，直接跳到下一个循环。 int i = 0; while (i 5) ...{ i++; if (i == 3) ...{ continue; } System.out.println(Im not 3, Im + i); // Do something else... } 然而在]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用Oracle数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30724.html</link>
    <description><![CDATA[Oracle是世界上用得最多的数据库之一，活动服务器网页（ASP）是一种被广泛用于创建动态网页的功能强大的服务器端脚本语言。许多ASP开发人员一直在考虑，能否在开发互联网应用、电]]></description>
    <pubDate>2009-04-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解Access数据库在线压缩的实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30723.html</link>
    <description><![CDATA[如果在 Access 数据库中删除数据或对象，或者在 Access 项目中删除对象，Access 数据库或 Access 项目可能会产生碎片并会降低磁盘空间的使用效率。压缩 Access 数据库或Access项目实际上是复]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何获得代码中第一张图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0705/30722.html</link>
    <description><![CDATA[把pattern 又修改了下 code要检测的代码 http://www.knowsky.com/ASP.asp leixing html 或者ubb nopic 代码没有图片时默认值 function toppic(code,leixing,nopic) set regex = new regexp regex.ignorecase = true regex.global = t]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何保障Winnt +asp +sql web站点的安全经验]]></title>
    <link>http://im.vc/web/asp/2011/0705/30721.html</link>
    <description><![CDATA[以下是我的一些经验，希望对你有用，但你要知道，绝对的安全是没有的。这才是一个网管存在的理由。所以。未雨绸缪是件好事。但亡羊补牢也不是下策。 请看我的经验： 1。多看看]]></description>
    <pubDate>2009-04-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp将数据导入excel后，中文出现乱码？怎么解决？]]></title>
    <link>http://im.vc/web/asp/2011/0705/30720.html</link>
    <description><![CDATA[问：ASP将数据导入Excel后，中文出现乱码？？怎么解决 !--#include file=function/connect.asp -- !--#include file=function/function.asp -- % Response.Charset = UTF-8 前面包含的文件是和来链接到数据库,你要修改]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现不存在的网页就自动发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30719.html</link>
    <description><![CDATA[制作网站的时候通常会有当访客的一些错误操作或我们网站本身的缺陷，造成某个不存在的页面被访问，这时会出现404错误提示信息，如果是热心的访客可能会给你发一封邮件提示你，]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP伪造REFERER]]></title>
    <link>http://im.vc/web/asp/2011/0705/30718.html</link>
    <description><![CDATA[代码: % Function GetBody(Weburl) Set Retrieval = Server.CreateObject(MSXML2.XMLHTTP) With Retrieval .Open Get, weburl, False, , .setRequestHeader referer,http://www.devdao.com/想改什么就改什么 .Send GetBody = .ResponseBody End Wit]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP对网页进行限制性的访问]]></title>
    <link>http://im.vc/web/asp/2011/0705/30716.html</link>
    <description><![CDATA[要使用request对象的ServerVariables属性，通过它来获得环境变量的值。使用的语法为：Request.ServerVariables(variable)，variable表示环境变量的名称，如服务器主机名称、Web服务器软件名等等，若]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP脚本语言的19个基本技巧使用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30715.html</link>
    <description><![CDATA[ASP（英文全称Active Server Pages）是一个编程环境，在其中，可以混合使用HTML、脚本语言以及组件来创建服务器端功能强大的Internet应用程序。 如果您以前创建过一个站点，其中混合了H]]></description>
    <pubDate>2008-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现SQL语句日期格式的加减运算]]></title>
    <link>http://im.vc/web/asp/2011/0705/30714.html</link>
    <description><![CDATA[今天在工作中遇到了一个问题，需要按时间查询，可是查询出来的结果显示的不正确。举个例子来说，要查找出2007-10-12至2007-10-31之间在网站上注册的会员，选择好日期后，点击查询按]]></description>
    <pubDate>2008-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中使用js的encodeURIComponent方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30713.html</link>
    <description><![CDATA[大家知道，在js里encodeURIComponent 方法是一个比较常用的编码方法，但因工作需要，在ASP里需用到此方法，查了好多资料，没有很好的方法，最后用了下面这个方法，基本解决了问题。]]></description>
    <pubDate>2008-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[conn.execute的用法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30712.html</link>
    <description><![CDATA[conn.execute、rs.open之间的差别conn.execute、rs.open、command.execute方法用法大大不同 通常形成记录集可以使用 Set rs=conn.execute(SQL) 或直接 rs=CONN.execute(SQL) 和 Set rs=Server.CreateObject(ADODB.Recordset)]]></description>
    <pubDate>2008-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP建设私人的搜索引擎]]></title>
    <link>http://im.vc/web/asp/2011/0705/30711.html</link>
    <description><![CDATA[很多网络爱好者在创建自己的个人主页时，都绞尽脑汁让自己网站的功能更全面。在此，笔者介绍一种使用ASP建立自己的搜索引擎的方法。 基本思路 利用表单将用户提交的搜索关键字]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP环境:启动停止IIS不重启电脑的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30710.html</link>
    <description><![CDATA[有时候我们在Web程序如：ASP，中无意中使用到了一个死循环，或者在测试 DLL组件时，挂了。这时候IIS就停止了响应，我们要继续我们的工作啊，重启IIS服务吧。 然而这个进程还在执行]]></description>
    <pubDate>2007-12-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简单的ASP分页代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30709.html</link>
    <description><![CDATA[% set conn=server.createobject(adodb.connection) conn.open(DRIVER=Driver do Microsoft Access (*.mdb);UID=admin;pwd=;dbq=server.mappath(1.mdb)) set rs=server.createobject(adodb.recordset) sql=select * from student rs.open sql,conn,3 rs.pages]]></description>
    <pubDate>2008-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现语音上传]]></title>
    <link>http://im.vc/web/asp/2011/0705/30708.html</link>
    <description><![CDATA[＜script language=JavaScript function openScript(url, width, height){ var Win = window.open(url,openScript,width= + width + ,height= + height + ,resizable=1,scrollbars=yes,menubar=no,status=yes ); } ＜/script ＜form action=save.ASP metho]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用FLV组件制作的播放器，动态获取变量，控制]]></title>
    <link>http://im.vc/web/asp/2011/0705/30707.html</link>
    <description><![CDATA[新建文件 首先我们来做点准备工作，你可以在舞台上做一个播放器的界面，当然，按钮什么的就不用做了，回头我们可以用修改组件来改变组件里按钮的外观！ 然后调出组件面板，将]]></description>
    <pubDate>2007-12-20</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp操作excel，显示数据及统计方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30706.html</link>
    <description><![CDATA[这次做的活是ASP操作Excel，全程序是每行都标出，然后像填空一样做的。现在被我改成了动态显示每行的项，再逐行显示，最后做一个汇总。 1、FSO找到excel文件 % Dim fso,folder,file Set fso]]></description>
    <pubDate>2008-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP程序模拟实现first-child的功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30705.html</link>
    <description><![CDATA[first-child用来设置对象（Selector1）的第一个子对象（Selector2）的样式表属性。比如一个列表第一行的样式可以和其他行有所不同，但目前IE尚不支持此伪类。下面给出用ASP模拟实现的方法]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP动态网站制作中使用MYSQL的分析]]></title>
    <link>http://im.vc/web/asp/2011/0705/30704.html</link>
    <description><![CDATA[环境：winxp sp2 ，MySQL5.0.18,mysql odbc 3.51 driver 表采用 myisam引擎。Access 2003 不同的地方： 1、插入数据时候，mysql 应尽量使用 insert into语句，避免使用 rs.addnew，如果非的要用，应先设置 c]]></description>
    <pubDate>2007-12-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程代码：隐藏图片的真实地址]]></title>
    <link>http://im.vc/web/asp/2011/0705/30703.html</link>
    <description><![CDATA[一般情况下，网站的图片代码是这样的。 img src=./attachments/test.jpg / 右键点击图片，选择属性就可以看到图片的真实地址。这样就让其它网站有机可乘，盗链您网站的图片。我们可以利用]]></description>
    <pubDate>2008-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现可显示和隐藏的树型菜单]]></title>
    <link>http://im.vc/web/asp/2011/0705/30702.html</link>
    <description><![CDATA[以下是引用片段： scriptlanguage=JavaScript functionhideAll(){ for(i=0;iodiv.length;i++){ odiv[i].style.display=none; } } functionshowObj(num) { if(odiv[num].style.display==none) { hideAll(); odiv[num].style.display=inline; } else{ o]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:ASP错误ASP 0201的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30701.html</link>
    <description><![CDATA[使用ASP开发网站，今天IIS突然出现做这种提示： Active Server Pages 错误 'ASP 0201' 默认脚本语言无效 为该应用程序指定的默认脚本语言无效。 问题是今天出现的，昨天还好好的，忘了自己]]></description>
    <pubDate>2008-01-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写函数实现身份证验证代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30700.html</link>
    <description><![CDATA[Function CheckCardId(e) arrVerifyCode = Split(1,0,x,9,8,7,6,5,4,3,2, ,) Wi = Split(7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2, ,) Checker = Split(1,9,8,7,6,5,4,3,2,1,1, ,) If Len(e) 15 Or Len(e) = 16 Or Len(e) = 17 Or Len(e) 18 Then CheckCardId= 身]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现无组件生成验证码-GIF格式]]></title>
    <link>http://im.vc/web/asp/2011/0705/30699.html</link>
    <description><![CDATA[% Option Explicit 显示声明 Class Com_GifCode_Class Author: Layen support@ssaw.net 84815733(QQ) Thanks: Laomi, Laomiao, NetRube 2006-01-02 Public Noisy, Count, Width, Height, Angle, Offset, Border Private Graph(), Margin(3) Private Sub C]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技巧教程:认识学习codepage的属性]]></title>
    <link>http://im.vc/web/asp/2011/0705/30698.html</link>
    <description><![CDATA[和多人在做ASP的时候都会遇到 %@LANGUAGE=JavaScript CODEPAGE=CP_ACP% Active Server Pages, ASP 0203 (0x80004005) 指定的代码页特性无效。 codepage属性：是指出网页的代码页 如果制作的网页脚本与Web服务端]]></description>
    <pubDate>2008-01-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何轻松打造ASP计数器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30697.html</link>
    <description><![CDATA[以下介绍用数据库实现简单计数器 下面存为count.ASP ＜% Set conn=Server.CreateObject(ADODB.Connection) conn.Open driver={Microsoft Access Driver (*.mdb)};dbq= Server.MapPath(count.mdb) %＞ ＜%on error resume next%＞ ＜%]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现在线文章翻译的功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30696.html</link>
    <description><![CDATA[有时候想为我们的网页提供多语言支持，如果一种语言用一张网页来做实在太麻烦了，幸好Google提供了语言工具功能，下面介绍如何利用它来实现网页多种语言之间的转换。 lan.htm 以下]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Codepage参数和其对应的语言]]></title>
    <link>http://im.vc/web/asp/2011/0705/30695.html</link>
    <description><![CDATA[codepage 437 -- 美国/加拿大英语 codepage 737 -- 希腊语 codepage 775 -- 波罗的海语 codepage 850 -- 包括西欧语种(德语,西班牙语,意大利语)中的一些字符 codepage 852 -- Latin 2 包括中东欧语种(阿尔巴尼亚]]></description>
    <pubDate>2008-01-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP构建音乐服务器的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30694.html</link>
    <description><![CDATA[音乐服务器（Music Server）是指一个提供音乐在线服务的服务器，它包括高端提供门户服务的网站、Web数据库和低端的操作平台、硬件设施。目前，在Internet和Intranet上有不少这样的站点，]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中通过getrows实现数据库记录分页的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30693.html</link>
    <description><![CDATA[%@ Language = VBscript % % Option Explicit % % rem 在ASP中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset iStart = Request(Start) iOffset = Request(Offset) if Not IsNumeric(iStart) or Len(iStart) = 0 then iStar]]></description>
    <pubDate>2008-10-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS的安装和配置全过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30692.html</link>
    <description><![CDATA[1、运行环境与软件要求 Windows 2000 以上 （不包括Windows XP Home版） IIS 4.0 以上 Microsoft Access 2000 Dreamweaver MX 2、IIS的安装与配置 a.安装IIS 若操作系统中还未安装IIS服务器，可打开控制面板]]></description>
    <pubDate>2008-01-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中几种分页显示的比较]]></title>
    <link>http://im.vc/web/asp/2011/0705/30691.html</link>
    <description><![CDATA[下面通过对比来看看几种方式的用时对比。 一，使用存储过程分页，这种情况又分为两种方式： 第一种，使用command对象，如下： Set Cmd=server.CreateObject(Adodb.Command) Cmd.ActiveConnection=conn]]></description>
    <pubDate>2008-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP在浏览器上打印输出]]></title>
    <link>http://im.vc/web/asp/2011/0705/30690.html</link>
    <description><![CDATA[利用ASP结合JavaScript或VBscript可以生成动态的Web页面。在将这种方法用于实际应用中时，不可避免的要将结果打印输出。我们同样可以将查询结果整理后输出，并用浏览器工具栏上的打印]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:制作登陆验证页面程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30689.html</link>
    <description><![CDATA[用户登录验证脚本,Chkpwd.ASP % '=======用户登录验证脚本======= '如果尚未定义Passed对象,则将其定义为false,表示没有通过验证 If IsEmpty(Session(Passed)) Then Session(Passed)=false End If 'Session(Passed)=Fa]]></description>
    <pubDate>2008-01-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决IIS下UTF-8文件报错乱码的问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30688.html</link>
    <description><![CDATA[解决IIS下UTF-8文件报错乱码的问题 原因： 你的网站是utf-8编码，但iis的错误信息输出默认使用的是gb2312编码。导致iis出现运行时错误的时候显示的页面是乱码。 解决办法： [办法1] 自己]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30687.html</link>
    <description><![CDATA[前面为大家介绍了文章的在线添加以及保存，但如果仅仅是这样还不够的，因为有很多的文章本身带有的HTM代码必须完整的显示出来，而不是显示出它的效果来，这也就是说必须转化]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[多语言网站开发技术分析]]></title>
    <link>http://im.vc/web/asp/2011/0705/30686.html</link>
    <description><![CDATA[语言是信息传播的主要障碍。 多语言网站，顾名思义就是能够以多种语言（而不是单种语言）为用户提供信息服务，让使用不同语言的用户都能够从同个网站获得内容相同的信息。 多语]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP打开任何类型文件提示保存]]></title>
    <link>http://im.vc/web/asp/2011/0705/30685.html</link>
    <description><![CDATA[相信大家平时都有这样的经历：页面上有一个链接指向服务器一个Word文件，当客户端机器有安装Office时，点击链接将调用Word打开浏览；当客户端机器没有安装Office时，点击链接将弹出保]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30684.html</link>
    <description><![CDATA[经过了文章的添加过程，我想大家更想知道ASP代码是怎样将页面上的信息保存到数据库里面的呢？而且这一功能还必须由另外一个页面来实现，由于ASP对数据库支持的完好性，由ASP来实]]></description>
    <pubDate>2008-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP完美转化ACCESS为SQL数据库连接]]></title>
    <link>http://im.vc/web/asp/2011/0705/30683.html</link>
    <description><![CDATA[其实两者基本通用 步骤很简单3步： 1，转化MDB数据库到SQL SQL工具里就有 2, 更改数据库链接字串 以下为代码: Set Conn=Server.CreateObject(ADODB.Connection) SQL=Driver={SQL Server};Server=XD-Y1W9B7;UID=sa;PW]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:Stream 速查]]></title>
    <link>http://im.vc/web/asp/2011/0705/30682.html</link>
    <description><![CDATA[示例 dim stream set stream = Server.CreateObject(ADODB.Stream) stream.mode = 3 '1－读，2－写，3－读写 stream.type = 1 '1－二进制，2－文本 stream.Open dataStream.position = index dataStream.CopyTo stream, count '将另一]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些语言的标识符的命名规则]]></title>
    <link>http://im.vc/web/asp/2011/0705/30681.html</link>
    <description><![CDATA[所谓标识符，就是一个名字，它一般用来命名变量和函数，下边总结了一些语言的标识符的命名规则： JavaScript：第一个字符必须是字母、下划线(_)或美元符号($)，其他字符可以使用字母]]></description>
    <pubDate>2008-02-20</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP对XML文档中文本的增加、删除、修改、查看]]></title>
    <link>http://im.vc/web/asp/2011/0705/30680.html</link>
    <description><![CDATA[% '---------------------------------------------------------------- '程序简介: 完成ASP语言对XML文档中指定节点文本的增加、删除、修改、查看 '入口参数: 无 '出口参数: 无 '---------------------------------]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp生成UTF-8格式的文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30679.html</link>
    <description><![CDATA[ASP由于是一种古老的语言，它的一些功能对UTF-8支持非常差。 比如，你想生成一个UTF-8格式的文件，使用常用的 scrīpting.FileSystemObject 对象就不行。 scripting.FileSystemObject 对象创建文件的函]]></description>
    <pubDate>2008-01-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:表单内容提交到XML文件中]]></title>
    <link>http://im.vc/web/asp/2011/0705/30678.html</link>
    <description><![CDATA[通常，在ASP中进行的form表单提交的数据都被写进数据库中，如果你想要你的数据是便于迁移的数据，你可以把它写进一个XML文件中。这种方法是跨平台的，你所收集的信息不需要进行转]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作XML文件的主要方法和实现]]></title>
    <link>http://im.vc/web/asp/2011/0705/30677.html</link>
    <description><![CDATA[ASP通过XMLDom在服务器端操作XML文件的主要方法和实现 对于小数据量，xml文件在检索更新上于Access有很多优势。 我曾经测试过不用数据库，把网站的会员信息，商品数据信息，交易信息，]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网站建站应知应会]]></title>
    <link>http://im.vc/web/asp/2011/0705/30676.html</link>
    <description><![CDATA[任何一个项目或者系统开发之前都需要定制一个开发约定和规则，这样有利于项目的整体风格统一、代码维护和扩展。由于Web项目开发的分散性、独立性、整合的交互性等，所以定制一]]></description>
    <pubDate>2008-01-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP是不是值得学习呢?]]></title>
    <link>http://im.vc/web/asp/2011/0705/30675.html</link>
    <description><![CDATA[说ASP是低能的人不是菜鸟就是连ASP都学不会的人，技术不是用来显摆的，是用来创造实际价值的，其实很多应用ASP就已经能够实现，而且有大量的通用源码可以参考，很容易转化为生产]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp控制xml数据库的6段代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30674.html</link>
    <description><![CDATA[NO.1--建立一个XML数据库data.xml ?xml version=1.0? records record namecaca/name QQ154222225/qq emailroot@3ney.com/email /record records NO.2--建立对象CreateObject 建立data.xml的对象先 set xmldoc=server.createobjcet(microsoft]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[2000/XP IIS配置问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30673.html</link>
    <description><![CDATA[XP和2000以及Windows 9X下IIS配置的问题总结． 相对于PHP，安装IIS或者PWS是很容易的。IIS(WinNT平台下)和PWS(Win9X平台下)属同一事物，是ASP的开发平台、运行后台，也是服务器的运行软件。 首]]></description>
    <pubDate>2008-02-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细的关于ASP缓存类的教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30672.html</link>
    <description><![CDATA[一、何谓ASP缓存/为什么要缓存 当你的Web站点采用asp技术建立的初期，可能感觉到的是asp动态网页技术带来的便利性，以及随意修改性、自如的http控制。但是，随着访问量的增加，你一]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在xp下配置iis]]></title>
    <link>http://im.vc/web/asp/2011/0705/30671.html</link>
    <description><![CDATA[在Windows xp、Windows 2000操作系统下如果需要调试ASP程序，首先需要判断您所安装的系统是否具备调试Asp的环境，IIS（Internet信息服务）是微软公司为开发者提供的一个简单的运行平台，下]]></description>
    <pubDate>2008-02-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作XML的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30670.html</link>
    <description><![CDATA[ASP操作XML的类的说明： 可以完成ASP对XML节点的添加、删除、修改、清空。 进行上述操作，根据条件，操作类型包括：仅对第一个符合条件、及全部符合条件二种。 如： '将第一条件值替]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:ASP关于数组的应用技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30669.html</link>
    <description><![CDATA[数组的定义 Dim MyArray MyArray = Array(1,5,123,12,98) 可扩展数组 Dim MyArray() for i = 0 to 10 ReDim Preserve MyArray(i) MyArray(i)=i next 将一个字符串分割并返回分割结果的数组 Dim MyArray MyArray = Split(tempcnt,c]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:数组数据排序的程序例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30668.html</link>
    <description><![CDATA[% '*** build example array to show that this thing can sort '*** alpha-numeric arrays Dim MyArray MyArray = Array(1,5,shawn,says,hello,123,12,98) MyArray = Sort(MyArray) For I = 0 to Ubound(MyArray) Response.Write MyArray(I) br VBCRLF Next R]]></description>
    <pubDate>2008-02-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP关于类的Let,Set和Get的用法的异同]]></title>
    <link>http://im.vc/web/asp/2011/0705/30667.html</link>
    <description><![CDATA[Property Let 是设置变量用的。 Property Set 是设置对象用的。 Property Get是取回属性用的。 在这里name只是这个类的一个属性，比如类名为 NewsClass 调用为 set News = new NewsClass News.name=news_class]]></description>
    <pubDate>2008-03-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:Expires 属性的介绍]]></title>
    <link>http://im.vc/web/asp/2011/0705/30666.html</link>
    <description><![CDATA[Expires 属性 Expires 属性指定了在浏览器上缓冲存储的页距过期还有多少时间。如果用户在某个页过期之前又回到此页，就会显示缓冲区中的版本 语法 Response.Expires [= number] 参数 number 距过]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例:ASP+AJAX制作无刷新新闻评论系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30665.html</link>
    <description><![CDATA[假设有一个页面index.ASP，上半部分为评论列表显示区域，下面为评论提交区域。那么这样一个页面我们如何显示评论内容和提交评论呢? 传统：上半部分评论列表直接通过数据库查询语]]></description>
    <pubDate>2008-02-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例:幻灯片新闻代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30664.html</link>
    <description><![CDATA[!--这是一个主页文件-- html head meta http-equiv=Content-Type content=text/html; charset=gb2312 / title幻灯片新闻/title /head body !--#Include file=diaoyong.ASP-- /body /html !-- 只要调用下面这个文件就可以了 这是一]]></description>
    <pubDate>2008-03-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL关于特殊字符处理的基本方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30663.html</link>
    <description><![CDATA[一定要对用户可能输入的诸如引号，尖括号等特殊字符给予足够重视，它们可能引发严重的安全问题。SQL注入的基本手法之一，就是利用对单引号未加过滤的安全漏洞。 用户的输入无非]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:ASP是不区分大小写]]></title>
    <link>http://im.vc/web/asp/2011/0705/30662.html</link>
    <description><![CDATA[众所周知：ASP(VBS)是不区分大小写的，但是你要理解这句话的意思，请看下面实例 Test.asp % Dim aName If Request.QueryString(name) Then aName = Trim(Request.QueryString(name)) Select Case aName Case new Response.Wr]]></description>
    <pubDate>2008-02-20</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[国内ASP应用，不容乐观]]></title>
    <link>http://im.vc/web/asp/2011/0705/30661.html</link>
    <description><![CDATA[新的ASP概念不是指开发工具ASP(ActiveX Server Pages)，而是指应用服务提供商(Application Service Provider)一种新的IT经营模式。通俗的话，即企业不购买应用软件，而是采用租赁的形式租用软件，]]></description>
    <pubDate>2008-03-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP实时进行表单数据的校验]]></title>
    <link>http://im.vc/web/asp/2011/0705/30660.html</link>
    <description><![CDATA[表单验证是Web开发中经常遇到的问题，我们以前常见的做法是：在客户端对表单域进行内容的检查，看是否是满足一定的要求或满足一定的结构，比如：是内容否为空或是否按规定的格]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP错误解决:800a003a错误]]></title>
    <link>http://im.vc/web/asp/2011/0705/30658.html</link>
    <description><![CDATA[参照其他文件修改的，网站终于恢复正常，不懂程序，所以不知道原理，大致是加个判断吧。 原来的代码： For p=1 to mpage step 1 dim fso,ktemplate,kyp set fso=createobject(scripting.filesystemobject) set]]></description>
    <pubDate>2008-03-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例:是否支持XmlHttp组件的判断]]></title>
    <link>http://im.vc/web/asp/2011/0705/30657.html</link>
    <description><![CDATA[% On Error Resume Next Response.Write h3服务XMLHttp组件支持情况：/h3 oxml=array(Msxml2.ServerXMLHTTP.6.0,Msxml2.ServerXMLHTTP.5.0,Msxml2.ServerXMLHTTP.4.0,Msxml2.ServerXMLHTTP.3.0,Msxml2.ServerXMLHTTP,Msxml2.XMLHTTP.6.0,Msxml2.XMLHT]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现网页打开任何类型文件都保存的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30656.html</link>
    <description><![CDATA[相信大家平时都有这样的经历：页面上有一个链接指向服务器一个Word文件，当客户端机器有安装Office时，点击链接将调用Word打开浏览；当客户端机器没有安装Office时，点击链接将弹出]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XMLHTTP Post Form时的表单乱码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30655.html</link>
    <description><![CDATA[用XMLHTTP Post Form时的表单乱码有两方面的原因Post表单数据时中文乱码；服务器Response被XMLHTTP不正确编码引起的乱码。换句话说，本文主要解决两个问题怎样正确Post中文内容怎样正确显示]]></description>
    <pubDate>2008-05-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例:读取xml文件的程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30654.html</link>
    <description><![CDATA[strSourceFile = Server.MapPath(dataXML/Advertisement/id/adv.xml) Set objXML =Server.CreateObject(Microsoft.XMLDOM) '创建一个XML对像 objXML.load(strSourceFile) '把XML文件读入内存 Set xml=objXML.documentElement.selectSingleNode(A]]></description>
    <pubDate>2008-03-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP、Request对象与SQL注入]]></title>
    <link>http://im.vc/web/asp/2011/0705/30653.html</link>
    <description><![CDATA[Request对象探讨 Request是ASP里的一个内部对象，用于获取HTTP请求中传递的任意信息(如头信息、表单数据、cookies等等)。所以这是在ASP里面最常用的内部对象，常用来获得GET方式提交的数据]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS7.0在Vista系统下安装注意事项]]></title>
    <link>http://im.vc/web/asp/2011/0705/30652.html</link>
    <description><![CDATA[IIS 7.0的十大改进： 1. 更简便的命令行配置功能 2. 更强的兼容性 3. 抛弃MetaBase 4. 集中管理 5. 委任配置 6. AppCmd 与其它新的管理手段 7. 失败请求追踪 8. 请求过滤 9. UNC 内容支持 10.动态内]]></description>
    <pubDate>2008-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何编写通用的ASP防SQL注入攻击程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30651.html</link>
    <description><![CDATA[SQL注入被那些菜鸟级别的所谓黑客高手玩出了滋味，发现现在大部分黑客入侵都是基于SQL注入实现的，哎，谁让这个入门容易呢，好了，不说废话了，现在我开始说如果编写通用的SQL防]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站程序自动升级实现的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30650.html</link>
    <description><![CDATA[现在流行虚拟主机建站，我也有个网站，也算是个站长咯。当了近一年的站长，感到网站程序每次升级的时候颇为麻烦：先去官方看公告，然后下载升级包到本地，解压，FTP上传到虚拟]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP正则判断取出HTML的图片地址的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30649.html</link>
    <description><![CDATA[用ASP取出HTML里面的图片地址的函数主要原理就是用正则判断的 属性。这在采集程序中将非常有用。 函数如下： FunctionShowPic(str) SetobjRegExp=NewRegexp'设置配置对象 objRegExp.IgnoreCase=True'忽略]]></description>
    <pubDate>2007-11-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序实现网页伪静态页源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30648.html</link>
    <description><![CDATA[作者的博客： http://www.anace.cn 看我的博客程序，页面还可以自定义url，比先前发布的教程又进了一步 http://www.anace.cn/page.asp?/Welcome.html 自定义url 很简单的教程，献给喜欢SEO的朋友们。把]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断访问是否来自搜索引擎的ASP函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30647.html</link>
    <description><![CDATA[判断访问是否来自搜索引擎的函数，有兴趣的可以试试！ % '检查当前用户是否是蜘蛛人 Function check(user_agent) allow_agent=split(Baiduspider,Scooter,ia_archiver,Googlebot,FAST-WebCrawler,MSNBOT,Slurp,,) check_]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页不存在自动给管理员发邮件的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30646.html</link>
    <description><![CDATA[很早以前写的文章了!转载请注明出处。 制作网站的时候通常会有当访客的一些错误操作或我们网站本身的缺陷，造成某个不存在的页面被访问，这时会出现404错误提示信息，如果是热]]></description>
    <pubDate>2007-11-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现带进度条的测试网速的代码程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30645.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2007-11-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把网页中的电话号码生成图片的ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30644.html</link>
    <description><![CDATA[作用：将页面中的电话号码生成图片格式。 % Call Com_CreatValidCode(Request.QueryString(tel)) Public Sub Com_CreatValidCode(pTel) '----------禁止缓存 Response.Expires = 0 Response.AddHeader Pragma,no-cache Response.AddHe]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技巧:rs.getrows方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30643.html</link>
    <description><![CDATA[GetRows()方法是将数据从 Recordset 复制到二维数组中，这是一个二维数组，第一个下标标识字段，第二个则标识记录号 所以rsArray = rs.GetRows() rsArray(0, 0)就表示记录集第一行的第一字段值]]></description>
    <pubDate>2007-11-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作数据库的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30642.html</link>
    <description><![CDATA[对于ASP的使用者来说，在数据库操作上越简单，就有更多的时间去考虑逻辑上和应用上的代码，效率也会更高。今天俺在这里给大家提供一种数据库操作的思路，这些代码是俺在长期的]]></description>
    <pubDate>2007-11-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP判断数据库值是否为空的通用函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30641.html</link>
    <description><![CDATA[由于各种字段属性不同，判断字段是否为空的方法也各异． 下面是一个通用函数，免去了还要看字段类型之苦． 'Check a variable isn't empty Function IsBlank(ByRef TempVar) 'by default, assume it's not]]></description>
    <pubDate>2007-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP处理XSLT转换XML的实现]]></title>
    <link>http://im.vc/web/asp/2011/0705/30640.html</link>
    <description><![CDATA[使用ASP处理XSLT转换XML比较简单，思路如下：创建一个XSLTemplate的对象，再创建一个XMLDOM对象，然后在家Xml文件和XSLT文件，最后使用方法transform即可，包含到类里面，具体代码如下。 Cl]]></description>
    <pubDate>2007-11-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技巧：让Len,Left,Right函数识别中文]]></title>
    <link>http://im.vc/web/asp/2011/0705/30639.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2007-11-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[大刀阔斧扔掉ASP,充分准备学习ASP.NET]]></title>
    <link>http://im.vc/web/asp/2011/0705/30638.html</link>
    <description><![CDATA[在技术更新的进程中, 仍然有一些人死抱着已经过了气的东西不放. 也有一些人虽然进入到新的世界, 但仍摆脱不了陈旧的习惯. 我没有用陋习这个词, 因为我对这个词也非常反感. 新技术]]></description>
    <pubDate>2007-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学ASP应该注意ASP程序书写的规范]]></title>
    <link>http://im.vc/web/asp/2011/0705/30637.html</link>
    <description><![CDATA[1 规范简介 本规范主要规定ASP源程序在书写过程中所应遵循的规则及注意事项。编写该规范的目的是使项目开发人员的源代码书写习惯保持一致。这样做可以使每一个组员都可以理解其]]></description>
    <pubDate>2007-11-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Flash和ASP实现的用户登录/注册程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30636.html</link>
    <description><![CDATA[查看效果: http://gzks188.com/anli/file/login.html 源文件: demo.rar Flash一帧可以完成.ASP也可以一个文件完成,这里我将用户登录和用户注册分为两步做,方便大家理解,Flash分两帧,asp分两个文件。 准]]></description>
    <pubDate>2007-11-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：等差数列和等比数列通项公式]]></title>
    <link>http://im.vc/web/asp/2011/0705/30635.html</link>
    <description><![CDATA[递归实例：等差数列和等比数列通项公式。 以下为引用的内容： % '================================================== '函数名：DengCha '作用：等差数列公式 '参数:a1------等差数列第1项值 '参数:d---]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于创建多级文件夹的ASP函数实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30634.html</link>
    <description><![CDATA[FileSystemObject中有个方法创建文件夹的方法CreateFolder，但是这个方法只能在其上一级文件夹存在的情况下创建新的文件夹，所以我就写了一个自动创建多级文件夹的函数，在生成静态页面]]></description>
    <pubDate>2007-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP随机显示不重复记录解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30633.html</link>
    <description><![CDATA[ASP读取Access数据,随机显示不重复记录解决方案。 % '-------------------------数据库连接----------------------- Set objConn = Server.CreateObject(ADODB.Connection) objConn.ConnectionString = Provider=Microsoft.Jet.OLEDB.4]]></description>
    <pubDate>2007-11-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Recordset对象和Command对象的区别]]></title>
    <link>http://im.vc/web/asp/2011/0705/30632.html</link>
    <description><![CDATA[Recordset对象会要求数据库传送所有的数据，那么数据量很大的时候就会造成网络的阻塞和数据库服务器的负荷过重，因此整体的执行效率会降低。 利用Command对象直接调用SQL语句，所执行]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高SQL的执行效率的ASP的五种做法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30631.html</link>
    <description><![CDATA[方法一、尽量使用复杂的SQL来代替简单的一堆SQL 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率，有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(Select * FROM Books) whi]]></description>
    <pubDate>2007-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP动态网页制作常用错误处理]]></title>
    <link>http://im.vc/web/asp/2011/0705/30630.html</link>
    <description><![CDATA[ASP 是非常简单的，以至于许多的开发者不会去思考错误处理。错误处理能够让你的应用程序更加合理。很多用ASP编写的商业网站，大多数都忽略了错误处理。 错误的类型 编译错误：]]></description>
    <pubDate>2007-12-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例：检测整数和长整数的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30629.html</link>
    <description><![CDATA[检测整数和长整数的ASP函数 % '检测字符串是否是整数 FunctionIs_Int(a_str) Ifnotisnumeric(a_str)orlen(a_str)5Then Is_Int=false ExitFunction Elseiflen(a_str)5then Is_Int=true ExitFunction Endif Ifcint(left(a_str,4))3276Then]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Server object error的解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30628.html</link>
    <description><![CDATA[症状： 访问 ASP网页 的时候出现如下错误: Server object error ''ASP 0178 : 80070005'' Server.CreateObject Access Error /_fpclass/fpdbrgn1.inc, line 99 The call to Server.CreateObject failed while checking permissions. Access i]]></description>
    <pubDate>2007-12-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[汉字转拼音ASP函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30627.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP对网页进行限制性的访问]]></title>
    <link>http://im.vc/web/asp/2011/0705/30626.html</link>
    <description><![CDATA[要使用 request对象 的ServerVariables属性，通过它来获得环境变量的值。使用的语法为：Request.ServerVariables(variable)，variable表示环境变量的名称，如服务器主机名称、Web服务器软件名等等，]]></description>
    <pubDate>2007-12-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程,ASP实现防盗链的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30625.html</link>
    <description><![CDATA[ASP防盗链对于广告做网站的朋友来说一直是个头疼的问题，盗链严重影响了服务器及网站的正常运行，放盗链变的十分需要了，今天一起来看看一个ASP防盗链的实现方法吧。 如果我们知]]></description>
    <pubDate>2007-12-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页输出N行N列表格的ASP实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30624.html</link>
    <description><![CDATA[几乎在每个站点中我们都要使用程序来输出列表：新闻列表、产品列表等等，输出的方式也因内容的不同而不同，对于新闻列表，通常是一行一行的循环输出；对于产品列表，通常得一]]></description>
    <pubDate>2007-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学:ASP内建对象Response]]></title>
    <link>http://im.vc/web/asp/2011/0705/30623.html</link>
    <description><![CDATA[下面，我们开始学习 ASP 的另一个内建对象 Response。 与 Request 是获取客户端 HTTP 信息相反 ,Response 对象是用来控制发送给用户的信息，包括直接发送信息给浏览器、重定向浏览器到另一个]]></description>
    <pubDate>2007-12-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP的速度的方法：GetString]]></title>
    <link>http://im.vc/web/asp/2011/0705/30622.html</link>
    <description><![CDATA[许多 ASP 程序员都有过执行数据库查询，然后将查询结果用HTML表格的形式显示出来的经历。通常我们是这么做的： 以下是引用片段： % 'Createconnection/recordset 'Populatedataintorecordsetobject %]]></description>
    <pubDate>2007-12-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[拒绝破坏禁用FileSystemObject组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30621.html</link>
    <description><![CDATA[众所周知，FileSystemObject组件的强大功能及破坏性是它屡屡被免费主页提供商(那些支持ASP)的禁用的原因。 第一种：用RegSrv32 /u C:WindowsSYSTEMscrrun.dll(win98路径)来注销该组件。 第二种：修改]]></description>
    <pubDate>2007-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[彻底解决“Microsoft JET Database Engine 错误 80004005”]]></title>
    <link>http://im.vc/web/asp/2011/0705/30620.html</link>
    <description><![CDATA[下午网友那里发过来消息，asp程序连接access数据库出些错误，简单看了一下，整理过程如下： 1、基本信息 程序代码： 2~6行： Dim databasePath,conn,connString databasePath = kphc.mdb Set conn = Serve]]></description>
    <pubDate>2007-02-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[更改windows XP 的IIS连接数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30619.html</link>
    <description><![CDATA[我们知道Windows 2000专业版或Windows XP专业版操作系统中IIS最多允许10个客户端的连接， 在Windows 2000服务器版或Windows 2003服务器版操作系统中则不存在这种连接限制问题。 Microsoft提供了一]]></description>
    <pubDate>2007-12-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[传统ASP程序开发者使用IIS7小提示]]></title>
    <link>http://im.vc/web/asp/2011/0705/30618.html</link>
    <description><![CDATA[至今还有这么多传统ASP (Classic ASP) 应用程序和开发者，真让我感到惊讶。我还记得96、97年的时候IIS3问世，我体验了最原始的ASP程序，并为它与ColdFusion相比表现出的惊 人的可编程性赞叹]]></description>
    <pubDate>2007-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP的Dictionary对象打造完美购物车]]></title>
    <link>http://im.vc/web/asp/2011/0705/30617.html</link>
    <description><![CDATA[商业网站开发都会遇到购物车的问题。普通的开发者可能较多的使 用session和cookies对象来完成；再就是更为蹩脚的数据库存储了。 但我个人感觉session和cookies的构造并不方便。毕竟cook]]></description>
    <pubDate>2007-03-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[xmldom在服务器端生成静态html页面]]></title>
    <link>http://im.vc/web/asp/2011/0705/30616.html</link>
    <description><![CDATA[服务器 端的生成的页面数据，为了提高访问速度，往往需要生成 静态 的 htm页面 。通常，可以使用fso生成静态的htm页。但如果是fso被禁止或没有使用fso的权限，就需要其他的方法来解]]></description>
    <pubDate>2007-12-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP模式示范工程项目介绍]]></title>
    <link>http://im.vc/web/asp/2011/0705/30615.html</link>
    <description><![CDATA[多样化的企业需求 纵观北京的经济发展水平和结构，可更清楚地看道，以北京当前高达67.8%的第三产业发展水平以及位居全国第二的人均GDP财富水平，北京完全有足够的消费能力和广阔]]></description>
    <pubDate>2007-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+SQL Server为网页建一道防火墙]]></title>
    <link>http://im.vc/web/asp/2011/0705/30614.html</link>
    <description><![CDATA[为网页设置防火墙的主要目的是根据网页内容对不同来访者提供不同的服务，利用Java Script或VB Script，我们很容易做到这一点。但网页的源码在客户浏览器中可以被看到，访问者可以查]]></description>
    <pubDate>2007-05-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp技巧:防止被杀毒软件误删的代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30613.html</link>
    <description><![CDATA[某些杀毒软件会把正常的ASP文件误认为是asp木马文件，而自动删除，影响正常使用。 下面方法可能会有效避免被杀毒软件删除 把 以下是引用片段： dimtStream settStream=Server.CreateObject(ad]]></description>
    <pubDate>2007-12-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+ajax打造无刷新新闻评论系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30612.html</link>
    <description><![CDATA[不知上过ChinaRen校友录的朋友们有没有注意，ChinaRen在改版后很多方面都进行了较大的改动。例如留言与回复方面已经不再像以前那样，在每次提交后总得重新加载一下整个页面，碰到网]]></description>
    <pubDate>2007-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP页面转换成HTM静态页面的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30611.html</link>
    <description><![CDATA[前段时间有个ASP页面执行起来很慢，访问人数又颇多，而且又不经常修改，又懒得直接做成静态的，每次都要从服务器下载来改，只好想办法把asp页面转化成htm静态页面了。 以前就曾经]]></description>
    <pubDate>2007-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:初步接触ASP缓存技术]]></title>
    <link>http://im.vc/web/asp/2011/0705/30610.html</link>
    <description><![CDATA[使用ASP中的缓存技术可以很大程度上提高你的网站性能，其实这些实现方法是非常的简单，它将说明如何在服务器上的缓存是如何工作以及你如何使用一种被称为断开连接的ADO连接技术]]></description>
    <pubDate>2007-12-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[净化网络环境 ASP程序实现过滤脏话]]></title>
    <link>http://im.vc/web/asp/2011/0705/30609.html</link>
    <description><![CDATA[!--#include file=../conn/dbconn1.ASP-- !--#include file=../inc/safe.asp-- % content=Replace_Text(request.Form(content)) content=replace(content,,[) content=replace(content,,]) newsid=Replace_Text(request.Form(newsid)) ip=request.Form(ip) rn]]></description>
    <pubDate>2007-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何做好搜索引擎优化？影响SEO的八项因素]]></title>
    <link>http://im.vc/web/asp/2011/0705/30608.html</link>
    <description><![CDATA[网站内容作者们辛辛苦苦做出来的内容，却由于页面设计不够优化、对搜索引擎不够友好而在搜索结果中名落孙山，确实有些遗憾。今天，我们来看看会影响到搜索引擎优化（SEO）的八]]></description>
    <pubDate>2007-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:rs.getrows的使用方法介绍]]></title>
    <link>http://im.vc/web/asp/2011/0705/30607.html</link>
    <description><![CDATA[大家可能经常会遇到这种情况： sql=select * from table set rs=conn.execute(sql) 以上这两句执行完之后，如果使用response.write rs.recordcount，就会得到结果-1，但这个时候，记录集rs当中其实是有记录]]></description>
    <pubDate>2007-12-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发WAP简易邮件系统实例(续)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30606.html</link>
    <description><![CDATA[3) 发送邮件 图五 发送邮件功能的实现主要采用了Jmail.Message对象完成，关于所要用到的对象相关知识在前面已经叙述过了，大家可以将上面的功能介绍与源码对照起来阅读，这样有助于]]></description>
    <pubDate>2007-07-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Asp代码与页面的分离]]></title>
    <link>http://im.vc/web/asp/2011/0705/30605.html</link>
    <description><![CDATA[为了避免ASP程序和HTML代码混写造成维护困难的情况，本文介绍了一种方法，利用模板来分离程序和页面，使程序设计更加轻松。 在使用ASP制作一个站点的时候，常常会出现一个ASP文件]]></description>
    <pubDate>2007-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技巧:Utf-8和Gb2312乱码问题的终结]]></title>
    <link>http://im.vc/web/asp/2011/0705/30604.html</link>
    <description><![CDATA[研究好多天了，也试过好多办法了，总结出目前发现最好的方法： 先说一下基本的东西： %@ codepage=65001%UTF-8 %@ codepage=936%简体中文 %@ codepage=950%繁体中文 %@ codepage=437 %美国/加拿大英语]]></description>
    <pubDate>2007-12-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发WAP简易邮件系统实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30603.html</link>
    <description><![CDATA[随着手机用户的不断增加，WAP站点如雨后春笋迅速的滋长开来，手机邮箱也不断的出现在人的眼前，笔者也曾经开发了一套手机邮箱的系统，但由于时间仓促再加上后来一直忙于工作事]]></description>
    <pubDate>2007-07-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP读取XML数据文件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30602.html</link>
    <description><![CDATA[分别保存下面两段代码，一个保存为readXML.ASP另一个保存为test.xml，放在同一个目录下面，调试程序即可，在程序里面我已经做了解释，读取代码可以做成一个readxml的函数，通过使用输]]></description>
    <pubDate>2007-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程:applicaton对象的使用集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30601.html</link>
    <description><![CDATA[如果您不了解application对象的基本特征,可以查看本站的对象参考部分。 % ''下面的function用来从动网论坛数据库中提出数据更新缓存 很简单的 提出最新发表的十个帖子 function refreshrecor]]></description>
    <pubDate>2007-12-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成静态Html文件技术杂谈]]></title>
    <link>http://im.vc/web/asp/2011/0705/30600.html</link>
    <description><![CDATA[网页生成静态Html文件有许多好处,比如生成html网页有利于被搜索引擎收录,不仅被收录的快还收录的全.前台脱离了数据访问,减轻对数据库访问的压力,加快网页打开速度. 像www.ASPid.cn的主]]></description>
    <pubDate>2007-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp+flash打造简单新闻评论系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30599.html</link>
    <description><![CDATA[我最初看到有几个网站在做一些我想做的事情，但是还没有完全是现在的样子。我是想做的一些网络应用最早是想用FLASH的，但是我手下的员工对FLASH不熟悉，我想怎么样用传统的Web技术]]></description>
    <pubDate>2007-07-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例：即时显示当前页面浏览人数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30598.html</link>
    <description><![CDATA[online.ASP文件 !--#include file=dbconn.asp -- % onlineTimeout=10 定义在线活动时间的时间间隔 Function Userip() GetClientIP = Request.ServerVariables(HTTP_X_FORWARDED_FOR) 获得用户的虚拟IP地址 If GetClientIP = or isnul]]></description>
    <pubDate>2007-08-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ASP访问ACCESS数据的“不能打开注册表关键字]]></title>
    <link>http://im.vc/web/asp/2011/0705/30597.html</link>
    <description><![CDATA[前天，N久以前做的一个Access数据库的程序出错了，程序都没有改动过，之前好好的，突然就不行了。 错误信息如下： ---------------------------------- Microsoft OLE DB Provider for ODBC Drivers 错误]]></description>
    <pubDate>2007-06-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web开发中用sql语句完成分页的特效方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30596.html</link>
    <description><![CDATA[这篇文章以JSP/ASP为例，简要介绍了Web开发中一种用sql语句完成分页的高效率方法。 一、Jsp方法如下: ********************** %@ page language=Java import=java.util.*,java.sql.* % %@ page contentType=text/html;]]></description>
    <pubDate>2007-08-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详细讲解ASP检测文件编码的实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30595.html</link>
    <description><![CDATA[最近，在搞这个东西，网上也找不到ASP相关的，如果有人很早弄出来了，也不要笑话偶；费了好久，总算搞定； 原理：用stream对象预读文件的头两个字节,分析判断出utf-8，unicode，ANSI]]></description>
    <pubDate>2007-08-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现邮件发送普通附件和嵌入附件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30594.html</link>
    <description><![CDATA[网上很多关于JMail发送邮件的例子都没有写如何发附件，或者没有写清如何发内嵌的附件(比如把附件图片嵌入到HTML信件里面) 其实最关键的就是这句要注释掉 JMail.ContentType = text/html (为]]></description>
    <pubDate>2007-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序经验：关于ASP生成伪参数技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30593.html</link>
    <description><![CDATA[前两天在做一个站内版的企搜引擎，发现某些站点可以链接站点内容。。 奇怪之下看了看，原来是按照数据库ID的自动编号规律进行链接的~~ 闲暇之余弄了下面这个东东，希望对大家在]]></description>
    <pubDate>2007-08-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获取字符串长度的自定义函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30592.html</link>
    <description><![CDATA[ASP获取字符串长度的自定义函数 ---------------------------------------------------------------- getStrLen 获取字符长度，一个中文字符长度算 2 参数： str 需要获取长度的字符串 返回值：整数 (字符串]]></description>
    <pubDate>2007-08-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学者来认识OLEDB和ODBC的区别]]></title>
    <link>http://im.vc/web/asp/2011/0705/30591.html</link>
    <description><![CDATA[ODBC(开放数据库互连):是Microsoft引进的一种早期数据库接口技术。它实际上是ADO的前身。早期的数据库连接是非常困难的. 每个数据库的格式都不一样,开发者得对他们所开发的每种数据库]]></description>
    <pubDate>2007-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用计数据组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30590.html</link>
    <description><![CDATA[页面计数器 （Page Counter) 组件用于统计每个网页被访问的次数，该组件定期把统计的数据存入服务器磁盘上的一个文本文件---------访问次数统计数据文件中，所以在停机或出现错误信息]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP快速开发方法之数据操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30589.html</link>
    <description><![CDATA[这是我自己的心得，给大家作个参考。 我的目的是让开发变得简单，尽可能少地考虑实现语句，更多地把精力用于思考业务逻辑。希望我的文章对大家有所启发和帮助。 好吧，让我们]]></description>
    <pubDate>2007-08-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[彻底详细学习ASP之学好ADO教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30588.html</link>
    <description><![CDATA[Connection对象中的Open方法建立到数据源的物理连接,使用 Close 方法将其断开;Recordset 对象中的使用 AddNew、Update 和 Delete 方法所做的更改，在最后分页中提到了Recordset 对象中AbsolutePage和R]]></description>
    <pubDate>2007-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-内容链接组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30587.html</link>
    <description><![CDATA[内容链接组件（Content Linking) 用于创建管理 URL 列表的内容链接 （NextLink ）对象，通过该对象可以自动生成和更新目录表及先前和后续的 Web 页的导航链接。使用内容链接组件的步骤如下]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动态网页制作必须技术：ASP和HTML表单]]></title>
    <link>http://im.vc/web/asp/2011/0705/30586.html</link>
    <description><![CDATA[在 ASP 中，有两个很常用的集合，一个是 Request.QueryString，另一个是 Request.Form。这两个集合可以获取 HTML 表单(HTML Forms) 提交的信息。 Request.QueryString HTML 表单中的 method 有两种，一种是]]></description>
    <pubDate>2007-08-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单学习ASP连接数据库方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30585.html</link>
    <description><![CDATA[1.连Access：conn.open Provider=Microsoft.Jet.OLEDB.4.0;Data Source= Server.mappath(/db/database.mdb) 此采用根目录的相对路径方法，可以解决整个网站共用一个conn.ASP文件的问题，但要注意：此方法不适合于]]></description>
    <pubDate>2007-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-内容轮显组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30584.html</link>
    <description><![CDATA[内容轮显（Content Rotator) 组件和广告轮显（Ad Rotator） 组件十分类似，只是内容轮显组件进行随机变换的是页面内容而不仅仅是一个广告图片，该组件可以用于以下三个方面： 1）每日新]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：透彻掌握ASP分页技术]]></title>
    <link>http://im.vc/web/asp/2011/0705/30583.html</link>
    <description><![CDATA[本文示例源代码或素材下载 近段时间看了一些论坛上面关于分页的ASP程序依然有许多的关注者，但里面只有代码，没有详细的解释，对于初学者来说，这样总是得不到真正的掌握，此次]]></description>
    <pubDate>2007-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门]]></title>
    <link>http://im.vc/web/asp/2011/0705/30582.html</link>
    <description><![CDATA[一、语法 1语句 %...........% 2定义变量dim语句 % dim a,b a=10 b=ok! % 注意：定义的变量可以是数值型，也可以是字符或者其他类型的 3简单的控制流程语句 1. If 条件1 then 语句1 elseif 条件2 the]]></description>
    <pubDate>2007-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-广告轮显组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30581.html</link>
    <description><![CDATA[广告轮显组件（Ad Rotator) 用于创建一个 AdRotator 对象实例，通过该对象在 Web 页上自动轮换显示广告图象。当用户每次打开或重新加载 Web 页时，该组件将根据在轮显列表（Rotator Schedul]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DVBBS论坛止注册机发布垃圾贴子的办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30580.html</link>
    <description><![CDATA[进入后台，风格界面模板总管理，page_login,template.html(13) TR TD class=tablebody1B密码问题/B：BR忘记密码的提示问题/TD 在此两句上面添加如下代码 TR TD class=tablebody1 div style=color:redb反论坛群发]]></description>
    <pubDate>2007-08-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常见数学函数 Abs Atn Cos 等详细详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30579.html</link>
    <description><![CDATA[【名称】 Abs 【类别】 数学函数 【原形】 Abs(number) 【参数】 必选的。Number参数是一个任何有效的数值型表达式 【返回值】 同number的类型 【异常/错误】 无 【描述】 返回参数number的绝]]></description>
    <pubDate>2007-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-防止或允许更改应用程序变量值]]></title>
    <link>http://im.vc/web/asp/2011/0705/30578.html</link>
    <description><![CDATA[Application 对象有两个方法：即 Lock 和 Unlock 方法。使用这两个方法可以确保多个用户无法同时改变某一属性。 1、Application 方法 Lock 方法禁止其他客户修改 Application 对象的变量。其语法]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP判断远程图片是否存在]]></title>
    <link>http://im.vc/web/asp/2011/0705/30577.html</link>
    <description><![CDATA[判断远程图片是否存在[ASP代码] function CheckURL(byval A_strUrl) set XMLHTTP = Server.CreateObject(Microsoft.XMLHTTP) XMLHTTP.open HEAD,A_strUrl,false XMLHTTP.send() CheckURL=(XMLHTTP.status=200) set XMLHTTP = nothing end functio]]></description>
    <pubDate>2007-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决ASP脚本运行超时的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30576.html</link>
    <description><![CDATA[最近在学习服务器知识。有时候遇到ASP脚本运行超时的错误，真是麻烦。找了相关资料，其中有一些解决方法。 IIS默认的脚本超时时间是90秒 这样的话如果你是上传软件或者传送数据大]]></description>
    <pubDate>2007-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程- 保存应用程序信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/30575.html</link>
    <description><![CDATA[一、使用 Contents 集合应用程序信息 1、Contents 集合是由所有通过脚本语言添加到应用程序的变量和对象组成的集合。可以使用这个集合来获得给定的应用程序作用域的变量列表或指定某]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP按指定参数格式化显示时间的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30574.html</link>
    <description><![CDATA[Date 函数 描述:返回当前系统日期。 语法:Date DateAdd 函数 描述:返回已添加指定时间间隔的日期。 语法:DateAdd(interval, number, date) interval: 必选。字符串表达式，表示要添加的时间间隔。有]]></description>
    <pubDate>2007-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Server.CreateObject 的调用失败]]></title>
    <link>http://im.vc/web/asp/2011/0705/30573.html</link>
    <description><![CDATA[给服务器安装JMAIL组件,可是在使用过程中遇到Server.CreateObject 的调用失败的问题。上网搜索到解决方法，这里将安装步骤记录一下。 一，开启25端口。 二，安装好JMAIL,将JMAIL.DLL 复制到]]></description>
    <pubDate>2007-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Application对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30572.html</link>
    <description><![CDATA[一、Application对象概述 当载入ASP DLL并响应对一个ASP网页的第一个请求时，创建Application对象。该对象提供一个存储场所，用来存储对于所有访问者打开的所有网页都可用的变量和对象]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几行ASP代码解决防止表单重复提交]]></title>
    <link>http://im.vc/web/asp/2011/0705/30571.html</link>
    <description><![CDATA[在很多情况下都需要防止相同的表单被多次提交，很多人的实现方法都比较复杂(代码数量超过几十行！！)下面提供一种只需使用几行代码的方法，轻松地实现了防止用户刷新多次提交]]></description>
    <pubDate>2007-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧妙破解开别人ASP木马密码的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30570.html</link>
    <description><![CDATA[破解目标：破解一经过加密的ASP木马登陆密码。由于木马里没有版本说明，具体也不知道这木马叫什么名。 破解思路：两种，用加密后的密码替换密文和利用密文及加密算法反解出密码]]></description>
    <pubDate>2007-09-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-处理会话事件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30569.html</link>
    <description><![CDATA[Session 对象有两个事件：即 OnStart 事件和 OnEnd 事件。通过对这两个事件过程编写脚本可以在会话开始和结束时执行指定的操作。编写这些事件过程的脚本代码时，必须使用 SCRIPT 标记并]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-保存会话信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/30568.html</link>
    <description><![CDATA[一、使用 Contents 集合保存会话信息 1、Contents 集合是使用 Session 对象定义的在 ASP 应用程序中的一组变量。这些变量的作用域为用户层，并且在整个 ASP 应用程序中都是可用的。这是Se]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作Access，ADOX类的使用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30567.html</link>
    <description><![CDATA[一般操作Access数据库，有Alter语句，和MSSQL2k的基本语法差别不是太打，例如，在某表创建新列语句： Dimsqlstr sqlstr=altertablel_infoaddcolumninfo_filevarchar(200)defaultNULL conn.execute(sqlstr) 以上语句在]]></description>
    <pubDate>2007-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-控件会话的结束时间]]></title>
    <link>http://im.vc/web/asp/2011/0705/30566.html</link>
    <description><![CDATA[1、利用 Session.Timeout 属性设置超时时限 对于一个登录到 ASP 应用程序的用户，如果用户在系统默认的时间内未进行其它任何操作，当设置的时间一到便自动撤销这个用户的 Session，这样]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Session对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30565.html</link>
    <description><![CDATA[一、Session对象概述 Session对象其实指的就是用户从到达某个站点直到离开为止的那段时间内，服务器端分配给用户的一个存储信息的全局变量的集合，这些变量可以是自动生成的，也可]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP技巧研究：ASP Error对象的相关知识]]></title>
    <link>http://im.vc/web/asp/2011/0705/30564.html</link>
    <description><![CDATA[在VBScript中，有一个OnErrorResumeNext语句，它使脚本解释器忽略运行期错误并继续脚本代码的执行。接着该脚本可以检查Err.Number属性的值，判别是否出现了错误。如果出现错误，返回一个]]></description>
    <pubDate>2007-09-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用Session对象识别会话]]></title>
    <link>http://im.vc/web/asp/2011/0705/30563.html</link>
    <description><![CDATA[1、什么是会话标识 ASP 为每一个用户会话分配了惟一的识别标志。在创建会话时，服务器会为每一个会话生成一个单独的标识，该标识以长整型数据类型返回，并且随用户在 Web 站点上]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Response对象的Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30561.html</link>
    <description><![CDATA[一、Cooies集合是Response对象和Request对象共有的一项经常用到的集合。用户通过HTTP标头访问一个主页时，每次都要重新开始。因此，如果要判断某个用户是否曾经进入本网站，那么就可以]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-前言]]></title>
    <link>http://im.vc/web/asp/2011/0705/30560.html</link>
    <description><![CDATA[ASP(Active Server Pages)是目前最为流行的开放式的Web服务器应用程序开发技术。使用它可以将HTML语言，脚本语言和Active控件组合一起，产生动态、交互、具有数据库访问功能，且高效率的基]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Server对象概述与属性]]></title>
    <link>http://im.vc/web/asp/2011/0705/30559.html</link>
    <description><![CDATA[一、Server对象概述 通过Server对象可以使用服务器上的许多高级功能。使用Server对象可以创建各种服务器组件实例，从而实现访问数据库对文件进行输入输出，以及在Web页上自动轮换显示]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Response对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30558.html</link>
    <description><![CDATA[一、使用Response对象可以将输出信息发送到客户端。包括直接发送信息给浏览器、重定向浏览器到另一个URL地址或设置Cookie的值等功能。 二、Response提供了集合、属性和方法来进行参数]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-VBScript概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30557.html</link>
    <description><![CDATA[1、VBScript简介 VBScript是一种脚本语言，也是ASP的默认语言，可以在HTML文件中直接嵌入VBScript脚本，从而扩展HTML，使它不仅仅是一种页面格式语言。带有VBScript脚本的网页可以对用户的操]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Cookies 集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30556.html</link>
    <description><![CDATA[一、通过Response 对象的 Cookies 集合来创建Cookies。其语法格式为： Response.Cookies (Cookies名) [(key)|.属性] =值 注解： Key 为可选参数，如指定Key ，则 Cookies 就是一个字典，该参数值将被设置]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-ASP概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30555.html</link>
    <description><![CDATA[ASP是一个服务器端脚本编写环境，用于创建动态的交互式Web 服务器应用程序。在ASP动态网页中，不仅可以包含服务器端脚本代码，也可以使用 ASP 内建对象和服务器组件，此外还可以包]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-VBScript基本元素]]></title>
    <link>http://im.vc/web/asp/2011/0705/30554.html</link>
    <description><![CDATA[VBScript数据类型 VBScript只有一种数据类型，即Variant，称为变体型。Varriant是一种特殊的数据类型，根据使用的方式，它可以包含不同类别的信息。因为Variant是VBScript中惟一的数据类型，]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用Querystring 集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30553.html</link>
    <description><![CDATA[当使用表单的Get 方式提交数据时，表单中的数据被保存在 Request 对象的 Querystring 集合中。除了读取表单对象传递的参数外，Querystring 集合还可以通过读取 HTTP 查询字符串中的参数值来]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-多分支条件选择结构]]></title>
    <link>http://im.vc/web/asp/2011/0705/30552.html</link>
    <description><![CDATA[多分支选择结构的特点是：从多个选择结构中，选择第一个条件为真的路线作为执行的线路。即所给定的选择条件为真时，就执行A1块；如果为假则继续检查下一个条件。如果条件都为]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-VBScript的输入与输出语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/30551.html</link>
    <description><![CDATA[1、MsgBox函数 信息框函数（MsgBox）是常用的输出信息的函数。它在对话框中显示信息，等待用户单击按钮，并返回一个整数以标明用户单击了哪一个按钮。其语法格式如下： 变量=MsgBo]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用Form集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30550.html</link>
    <description><![CDATA[当使用表单的Post 方式提交数据时，表单中的数据被保存在 Request 对象的 Form 集合中。使用 Form 集合来传递数据 的语法格式如下： Request.Form (元素名) [(索引值)|.表单某元素的个数] 注解]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-单条件选择结构]]></title>
    <link>http://im.vc/web/asp/2011/0705/30549.html</link>
    <description><![CDATA[单条件选择结构是最常用的双分支选择结构，其特点是：所给定条件（条件表达式）的值如果为真，则执行x1块，否则，就执行x2块。 1、行 If 语句 其语法格式为： if条件 then [ 语句1]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用输入型表单控件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30548.html</link>
    <description><![CDATA[为了让用户通过表单输入数据，可以使用INPUT标记创建各种表单控件，通过将INPUT标记的TYPE属性设置为不同的值，可以创建不同类型的输入型表单控件。 1、单行文本框，格式如下： 一]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Request对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0705/30547.html</link>
    <description><![CDATA[Request对象在HTTP请求期间检索客户端浏览器传递给服务器的值。也就是说用它来与客户端交互，收集客户端信息或服务器端的环境变量，然后将收集的这些信息发送给服务器端或其它A]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-表单的综合实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30546.html</link>
    <description><![CDATA[下面我们通过一个注册表单对表单中常用的控件进行应用。 1、注册表单页代码：(login.htm) HTML HEADTITLE注册表/TITLE style type=text/css !-- body,td,th { font-size: 11pt; color: #009999; line-height: 1.5; } b]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30545.html</link>
    <description><![CDATA[这套ASP教程，会涉及很多相关教程。对于已经了解的朋友，可以直接跳过。若你是新手，建议你依次学习阅读。 学习目的： 1.能读懂ASP代码。 2.能自己编写小程序。 ASP入门基础教程-前]]></description>
    <pubDate>2006-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Response对象的常用属性]]></title>
    <link>http://im.vc/web/asp/2011/0705/30544.html</link>
    <description><![CDATA[一、Buffer属性 Response 对象的Buffer 属性是用来确定是否输出缓冲页，也就是控制何时将输出信息送至请求浏览器。Buffer 的取值可以是true 或 False ，若取True 表示使用缓冲页，若Web 服务器]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-使用其他表单控件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30543.html</link>
    <description><![CDATA[除了使用INPUT标记创建输入型表单控件外，也可以使用TEXTAREA标记创建多行文本框，或使用SELECT标记创建选项选单，还可以使用FIELDSET标记以表单中的控件进行分组。 1、在表单中使用多]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-实例 网上图书管理系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30542.html</link>
    <description><![CDATA[本管理程序的主要功能有：1、图书列表展示功能；2、图书放置购物车、移去购物车和清空购物车功能；3、购书结帐功能；4、新会员注册功能。 Iindex.ASP 首页。框架结构。上框架连接]]></description>
    <pubDate>2006-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-创建基本表单]]></title>
    <link>http://im.vc/web/asp/2011/0705/30541.html</link>
    <description><![CDATA[这里省略了部分HTML教程，建议不懂的朋友，直接查看HTML教程。这里只是讲讲表单。 表单是用来收集站点访问者信息的域集。表单从用户收集信息，然后将这些信息提交给服务器进行处]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Response对象的常用方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30540.html</link>
    <description><![CDATA[一、Write方法 Response 对象的Write 方法可以向发往客户端浏览器的HTML 文件中直接输出信息。也就是说，Reponse 对象的Write 方法将信息从 Web 服务器输出到浏览器。其语法格式如下： Respo]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-ASP和脚本语言]]></title>
    <link>http://im.vc/web/asp/2011/0705/30539.html</link>
    <description><![CDATA[什么是 ASP ASP 称活动服务器页面（英文全称Active Server Pages）就是一个编程环境，在其中，可以混合使用HTML、脚本语言以及组件来创建服务器端功能强大的Internet应用程序。 如果您以前]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-实例 工资管理系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30538.html</link>
    <description><![CDATA[系统分析 一、主要功能如下： 1、个人工资信息浏览； 2、修改记录； 3、添加记录； 4、删除记录。 二、系统结构图如下图： 三、数据库设计： 教职员工工资管理系统采用的是 Acces]]></description>
    <pubDate>2006-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-静态网页和动态网页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30537.html</link>
    <description><![CDATA[静态网页与动态网页的区别在于Web服务器对它处理方式不同。了解这种区别对于ASP概念的理解至关重要。 1、静态网页 静态网页是标准的HTML文件，其文件扩展名是.htm或.html。它可以包含]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中使用断开的数据记录集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30536.html</link>
    <description><![CDATA[我们在使用ASP 内置的ADO组件进行数据库编程时，通常是在脚本的开头打开一个连接，并在脚本的最后关闭它，但是就较大脚本而言，在多数情况下连接打开的时间要比它需要打开的时间]]></description>
    <pubDate>2005-12-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Command 对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30535.html</link>
    <description><![CDATA[Coonamd 对象定义了将对数据源执行的命令，可以用于查询数据库表并返回一个记录集，也可以用于对数据库表进行添加、更改和删除操作。 一、使用Command 对象的步骤： 当在 ASP 页面中]]></description>
    <pubDate>2006-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Request对象获取客户端数据的顺序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30534.html</link>
    <description><![CDATA[在ASP中Request对象是获取客户端提交数据的一个很重要的对象，大家对它也是非常熟悉了。 虽然如此，还是经常有人问我下面的几种写法有什么不同，到底应该怎么写？ strMessage = Reque]]></description>
    <pubDate>2006-04-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP发送和接收XML数据的处理方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30533.html</link>
    <description><![CDATA[因为要做移动梦网WAP的一些接口，所以要用到这种方式，接下来会有ASP.net版本的，这个是ASP版本的，利用了MSXML2.XMLHTTP对像。 request.asp dim Https set Https=server.createobject(MSXML2.XMLHTTP) '定义]]></description>
    <pubDate>2005-12-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编程爱好者的福音 让IIS6.0支持ASP]]></title>
    <link>http://im.vc/web/asp/2011/0705/30532.html</link>
    <description><![CDATA[ASP脚本在目前的网页开发方面使用的很广泛，但Windows 2003中自带的IIS 6.0默认情况下不支持ASP脚本，但可以运行aspx程序，这给运行和调试ASP代码带了不便。其实，在Windows 2003的Internet信息]]></description>
    <pubDate>2006-04-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对ASP 动态包含文件方法的改进]]></title>
    <link>http://im.vc/web/asp/2011/0705/30531.html</link>
    <description><![CDATA[ASP 本身不支持动态包含文件，现在的动态包含是通过 FSO 把被包含的文件合并到主文件里再运行。以下也有把形如 !--#include file=filename.asp -- 的普通包含文件方式称作“传统引用”，用]]></description>
    <pubDate>2006-11-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XMLHTTP编写一个天气预报程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30530.html</link>
    <description><![CDATA[本人就职于一个本地门户网站，每天网站上的天气都得更新。久而久之感到相当麻烦，于是写了一个定时的新闻小偷，帖出来大家参考一下系统要求: 支持FSO, 服务器UDP TCP/IP 没有屏蔽。]]></description>
    <pubDate>2005-12-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在网页中添加微软地图(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30529.html</link>
    <description><![CDATA[添加查找功能 为了进行地图查找，我们必须使用Virtual Earth查找管理器（Search Manager）。这里比较不好的一点是必须访问你网站外部的文件，而这样会导致一个对用户的安全警告信息。]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进ASP应用程序中的字符串处理性能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30528.html</link>
    <description><![CDATA[摘要：大多数 Active Server Pages （ASP） 应用程序都要通过字符串连接来创建呈现给用户的 HTML 格式的数据。本文对几种创建此 HTML 数据流的方法进行了比较，在特定情况下，某些方法在性]]></description>
    <pubDate>2006-04-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学以致用 驳“ASP低能论”]]></title>
    <link>http://im.vc/web/asp/2011/0705/30527.html</link>
    <description><![CDATA[很多人错误地认为ASP是简单、低效的代名词，认为ASP是低能的，不足挂齿的，也很简单，一学就会，一琢磨就精通。 有人讲ASP不安全，写ASP的程序的时候如果严格按照书写安全的代码的]]></description>
    <pubDate>2005-12-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在网页中添加微软地图(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30526.html</link>
    <description><![CDATA[缩放控制 缩放control提供了一个灵活的用户接口，用来控制地图的缩放。它还提供了可视化的回馈，用来提供地图可以缩放的量以及当前的比例信息。 首先我们需要增加一些样式表来描]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP打造网站论坛DIY(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30525.html</link>
    <description><![CDATA[4、论坛的管理部分 这儿是我们这个论坛的核心之所在，但它实现起来也没有什么特别的地方。还是那些老东西：窗体处理，数据库查询，在用ASP把他们有机的结合起来。当进入了文章]]></description>
    <pubDate>2006-04-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中存储过程应用全接触]]></title>
    <link>http://im.vc/web/asp/2011/0705/30524.html</link>
    <description><![CDATA[ASP与存储过程(Stored Procedures)的文章不少，但是我怀疑作者们是否真正实践过。我在初学时查阅过大量相关资料，发现其中提供的很多方法实际操作起来并不是那么回事。对于简单的应用]]></description>
    <pubDate>2006-01-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在网页中添加微软地图(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30523.html</link>
    <description><![CDATA[增加导航Control map control有一些内在的导航特性，但是有些时候需要提供一些额外的control在Web页面上来允许用户来控制地图的导航。下面我们介绍如何在web页面上增加按钮来控制地图的]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP正则表达式详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30522.html</link>
    <description><![CDATA[本文全面的详细的介绍了ASP正则表达式的规范，以及如何建立和使用的注意事项。 什么是正则表达式 如果原来没有使用过正则表达式，那么可能对这个术语和概念会不太熟悉。不过，]]></description>
    <pubDate>2006-03-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在网页中添加微软地图(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30520.html</link>
    <description><![CDATA[变换地图样式 上面我们已经介绍了有三种样式可以选择： ·a-aerial：显示高空的卫星图像。 ·r-road：显示地区的街道地图； ·h-hybrid：显示以上两者的结合，卫星图像将和道路和位置信]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中非数据库实现数据对象的定义及处理]]></title>
    <link>http://im.vc/web/asp/2011/0705/30519.html</link>
    <description><![CDATA[说非数据库方式，有些托大，但在没有数据库的情况下，也算给了一个锻炼的好机会，更何况本人对有事没事就整数据库玩的方式是深恶痛绝，有些时候，在资源有限及功能简单的情况]]></description>
    <pubDate>2006-03-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP打造网站论坛DIY(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30518.html</link>
    <description><![CDATA[前言：现在网上的论坛到处都有，但不知您是否遇到过这样的情况：在杂乱无章的讨论信息中来寻找自己想要的内容，是一件很费费时费力的事情，到后来，您就都不想去看什么论坛了]]></description>
    <pubDate>2006-04-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你在网页中添加微软地图(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30517.html</link>
    <description><![CDATA[自Google推出地图服务以后，微软和百渡也相继推出地图服务。地图成为目下网络流行的时尚，如果你想追赶它，那么来吧，我将会帮助你学会使用微软的Virtual Earth Map Control，为你的网站]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为自己的ASP网站系统构建一套标记语言]]></title>
    <link>http://im.vc/web/asp/2011/0705/30516.html</link>
    <description><![CDATA[作为动态网站在建设过程中难免遇到在线编辑文章的问题。HTML提供了一个textarea标记，但是实际上没有解决这个问题，因为从textarea的是纯文本。除非在输入的时候使用了HTML标记，否则]]></description>
    <pubDate>2006-03-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP计数器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30515.html</link>
    <description><![CDATA[************************调用********************* '* script language=JavaScript src=xxx.ASP?max=8/script '************************************************* Javastr=div algin='center' % max=Request(max) '//计数器位数 If Request]]></description>
    <pubDate>2006-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Session技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30514.html</link>
    <description><![CDATA[写过稍微大型一点 ASP 的人都知道，Session 这个对象真是好用，它可以用来记录使用者私有的资料变量，既安全又方便。但是你真的知道 Session 的运作原理吗？或许了解以后，你就再也不]]></description>
    <pubDate>2006-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp+Sql 对数据库的各种操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30513.html</link>
    <description><![CDATA[% '//查询方法 '//----------------------------(1)------------------------------- Set RsWorkUserInfo = Server.CreateObject(ADODB.RecordSet) StrSql = Select UsersId, LoginName, UserName, Password StrSql = StrSql From Users StrSql = S]]></description>
    <pubDate>2006-04-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现图片上传]]></title>
    <link>http://im.vc/web/asp/2011/0705/30512.html</link>
    <description><![CDATA[用ASP编写网站应用程序时间长了，难免会遇到各式各样的问题，其中关于如何上传文件到服 务器恐怕是遇见最多的问题了，尤其是上传图片，比如你想要在自己的社区里面实现类似网易]]></description>
    <pubDate>2006-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用数据绑定实现高效率动态网页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30511.html</link>
    <description><![CDATA[数据绑定（Data Binding）并不是一个新概念，IE 4.0就已对其给予了丰富的支持。但是，数据绑定并未受到应有的重视，许多开发者似乎更加愿意使用服务器端脚本（Server Script）的方法。然]]></description>
    <pubDate>2006-04-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp组件上传]]></title>
    <link>http://im.vc/web/asp/2011/0705/30510.html</link>
    <description><![CDATA[ASP 组件 FILE对象 当前，基于浏览器/服务器模式的应用比较流行。当用户需要将文件传输到服务器上时，常用方法之一是运行FTP服务器并将每个用户的FTP默认目录设为用户的Web主目录，]]></description>
    <pubDate>2006-04-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一段用ASP查看ASP文件源码的程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30509.html</link>
    <description><![CDATA[% SUB PrintLine (ByVal strLine) strLine=server.HTMLEncode(strLine) strLine=replace(strLine,lt;%,FONT COLOR=#ff0000lt;%) strLine=replace(strLine,%gt;,%gt;/FONT) strLine=replace(strLine,lt;SCRIPT,FONT COLOR=#0000fflt;SCRIPT,1,-1,1]]></description>
    <pubDate>2006-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对你的ASP程序作负载测试]]></title>
    <link>http://im.vc/web/asp/2011/0705/30508.html</link>
    <description><![CDATA[介绍 当我们从传统的CS结构的应用程序转到当前流行的Web空间的程序时，我们发现我们在尝试跟上不断增长的可测性需求和性能要求。其中一个最大的挑战在于如何确定你的程序能最多]]></description>
    <pubDate>2006-04-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP连接11种数据库语法总结]]></title>
    <link>http://im.vc/web/asp/2011/0705/30507.html</link>
    <description><![CDATA[经常使用到有关数据库的操作。包括连接代码、SQL命令等等，又不曾刻意去记忆它们（我本人是不愿意去记这东东），所以常常在用到的时候又去查书本，翻来翻去。一些比较少用的数]]></description>
    <pubDate>2005-09-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ADO.net将数据导出到Excel并提供下载]]></title>
    <link>http://im.vc/web/asp/2011/0705/30506.html</link>
    <description><![CDATA[public string DataTableToExcel(DataTable dt,string excelPath) { if(dt == null) { return DataTable不能为空; } int rows = dt.Rows.Count; int cols = dt.Columns.Count; StringBuilder sb; string connString; if(rows == 0) { return 没有数据]]></description>
    <pubDate>2006-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何利用ASP实现邮箱访问]]></title>
    <link>http://im.vc/web/asp/2011/0705/30505.html</link>
    <description><![CDATA[您在访问网站时是否会在有些页面上见到这种功能---您在可以访问此网站的同时，还可以查看您免费邮箱中是否有新邮件。这个功能是不是让您觉得很心动、很神秘呢？下面，我就用]]></description>
    <pubDate>2005-09-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP使用MySQL数据库全攻略]]></title>
    <link>http://im.vc/web/asp/2011/0705/30504.html</link>
    <description><![CDATA[MySQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选数据库，但一般都是用PHP+MYSQL相结合来开发各种动态页面，其实ASP也可以使用MYSQL数据库开发动态页面，小弟我也]]></description>
    <pubDate>2006-07-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[破解网站发布系统 ASP生成静态页面方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30503.html</link>
    <description><![CDATA[1、WITH TEMPLET意思是，生成的页面架构将采用某个已设定的模板，在此之前我的一篇教程中介绍过，希望各位在看本教程之前对ASP采用模板应熟悉下。 2、ASP转变为HTML。不要我再说ASP转变]]></description>
    <pubDate>2006-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用程序中加入智能搜索]]></title>
    <link>http://im.vc/web/asp/2011/0705/30502.html</link>
    <description><![CDATA[用ASP实现搜索引擎的功能是一件很方便的事，可是，如何实现类似3721的智能搜索呢？比如，当在搜索条件框内输入“中国人民”时，自动从中提取“中国”、“人民”等关键字并在数据]]></description>
    <pubDate>2005-09-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+DLL实现WEB方式修改服务器时间]]></title>
    <link>http://im.vc/web/asp/2011/0705/30501.html</link>
    <description><![CDATA[昨天一个朋友有个需求，是要通过Web方式，修改IIS服务器上的时间，由于他的系统是ASP 3.0下开发的，所以本例子的代码是ASP的，不是ASP.NET，但是本人写这个文章是想抛砖引玉，毕竟编]]></description>
    <pubDate>2006-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进ASP应用程序中的字符串处理性能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30500.html</link>
    <description><![CDATA[此类中使用的基本原则是，在类级别将变量 （m_sText） 用作字符串缓冲区，并使用 Space$ 函数以空格字符填充此缓冲区以将其设置为特定的大小。如果要将更多文本与现有文本连接在一]]></description>
    <pubDate>2006-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用程序中限制重复提交同一表单]]></title>
    <link>http://im.vc/web/asp/2011/0705/30499.html</link>
    <description><![CDATA[在Internet上我们每天都会遇到数不清的表单，也看到其中大部分并没有限制用户多次提交同一个表单。缺乏这种限制有时候会产生某些预料不到的结果，如重复订阅邮件服务或重复投票]]></description>
    <pubDate>2005-09-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程实现网络内容快速查找]]></title>
    <link>http://im.vc/web/asp/2011/0705/30498.html</link>
    <description><![CDATA[有一天我突发奇想，要是我每到一个网站，那里都能立刻调出我需要看的信息，那岂非美妙得很。接下来我想更深入地考虑这个问题，坐到椅子上拿一支铅笔，却不知道自己写什么。如]]></description>
    <pubDate>2005-10-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Recordset 对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30497.html</link>
    <description><![CDATA[一、Recordset 对象简述 Recordset 对象表示的是来自基本表或命令执行结果的记录全集。在任何情况下，该对象所指的当前记录均为集合内的单条记录。使用 Recordset 对象可以操作来自提供]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中提供在线文章翻译功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30496.html</link>
    <description><![CDATA[有时候想为我们的网页提供多语言支持，如果一种语言用一张网页来做实在太麻烦了，幸好Google提供了语言工具功能，下面介绍如何利用它来实现网页多种语言之间的转换。 lan.htm ＜]]></description>
    <pubDate>2005-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写下载网页中所有资源的程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30495.html</link>
    <description><![CDATA[看过一篇关于下载网页中图片的文章，它只能下载以http头的图片，我做了些改进，可以下载网页中的所有连接资源，并按照网页中的目录结构建立本地目录，存放资源。 download.ASP?url]]></description>
    <pubDate>2005-10-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-Connection 对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30494.html</link>
    <description><![CDATA[提示：请将符号常量包含文件 adoVBs.inc 复制到您的站点主目录上，该文件所在位置：C:Program FilesCommon FilesSystemado （假设您的系统装在C盘下）。该文件包含与ADO一起使用的符号常量的定]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程经典例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30493.html</link>
    <description><![CDATA[1.如何用ASP判断你的网站的虚拟物理路径 答：使用Mappath方法 palign=centerfontsize=4face=Arialb ThePhysicalpathtothisvirtualWebsiteis: /b/font fontcolor=#FF0000size=6face=Arial %=Server.MapPath(\)% /font/p 2.我]]></description>
    <pubDate>2005-10-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序性能测试报告]]></title>
    <link>http://im.vc/web/asp/2011/0705/30492.html</link>
    <description><![CDATA[纲要：ASP动态生成的内容以什么方式输出效率最高？最好用哪种方法提取数据库记录集？本文测试了近20个这类ASP开发中常见的问题，测试工具所显示的时间告诉我们：这些通常可以想]]></description>
    <pubDate>2005-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-驱动器操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30491.html</link>
    <description><![CDATA[对驱动的器操作主要是获取驱动器的各种信息，有以下两种方法： 一、使用 FileSystemObject 获取驱动器的信息 1、 FileSystemObject 对象获取驱动器信息的方法如下表： 方 法 描述 / 格式 / 注]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由神秘到简单 教你在网页中添加微软地图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30490.html</link>
    <description><![CDATA[自Google推出地图服务以后，微软和百渡也相继推出地图服务。地图成为目下网络流行的时尚，如果你想追赶它，那么来吧，我将会帮助你学会使用微软的Virtual Earth Map Control，为你的网站]]></description>
    <pubDate>2005-10-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ISAPIfilter使INC、ASA文件安全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30489.html</link>
    <description><![CDATA[在以前看到老外的一篇文章，现在记不起这个很不错的热情的有如我一般的年轻人了，不过邮箱里还有和他讨论的邮件。 有不少站点可能都有这样的情况，利用.inc以及.asa包含文件来存]]></description>
    <pubDate>2005-11-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-文件夹操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30488.html</link>
    <description><![CDATA[文件夹操作主要包括创建、复制、移动和删除文件夹，检查文件夹是否存在以及指定路径中某文件夹中相应的文件对象。完成这些操作可以使用 FileSystemObjec对象或 Folder 对象的方法。]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web服务器上防范基于ASP程序的木马]]></title>
    <link>http://im.vc/web/asp/2011/0705/30487.html</link>
    <description><![CDATA[随着ASP 技术的发展，网络上基于ASP技术开发的网站越来越多，对ASP技术的支持可以说已经是Windows系统IIS服务器的一项基本功能。但是基于ASP技术的木马后门，也越来越多，而且功能也]]></description>
    <pubDate>2005-11-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-文件操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30486.html</link>
    <description><![CDATA[文件操作主要包括复制、移动和删除文件，检查文件是否存在以及获取文件的属性。完成这些操作可以使用 FileSystemObject 或 File 对象的方法。 一、使用 FileSystemObject 对象的相应方法进行]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS服务器排错指南及错误代码大全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30485.html</link>
    <description><![CDATA[IIS服务器出错的原因是复杂的。象服务启动失败、IIS进程中断或者站点不能启动这些错误都会在系统日志中记录一个错误事件。不论IIS出现何种错误，在确定排错方案之前，都应先使用]]></description>
    <pubDate>2005-11-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-读取文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30484.html</link>
    <description><![CDATA[一、读取文本文件的步骤如下： 1、创建 FileSystemObject 对象实例； % Set fso=Server.CreateObject(Scripting.FileSystemObject) % 2、使用FileSystemObject对象的OpenTextFile方法返回一个 TextStream 对象实例；]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-创建文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30483.html</link>
    <description><![CDATA[一、创建文本文件的步骤如下： 1、创建 FileSystemObject 对象实例； % Set fso=Server.CreateObject(Scripting.FileSystemObject) % 2、创建 TextStream 对象实例； % txtFile=fso.CreateTextFile(filename[,overwrite[,unico]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP木马程序获取管理权限]]></title>
    <link>http://im.vc/web/asp/2011/0705/30482.html</link>
    <description><![CDATA[前段时间泛滥成灾的动网论坛上传漏洞以及最近接二连三的各种ASP系统暴露的上传漏洞，可能很多朋友手中有了很多Webshell的肉鸡，至于选择怎么样这些小鸡的方式也是因人而异，有人]]></description>
    <pubDate>2005-11-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP木马Webshell安全解决办案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30481.html</link>
    <description><![CDATA[注意：本文所讲述之设置方法与环境：适用于Microsoft Windows 2000 Server/Win2003 SERVER IIS5.0/IIS6.0 1、首先我们来看看一般ASP木马、Webshell所利用的ASP组件有那些？我们以海洋木马为列： ＜obj]]></description>
    <pubDate>2005-10-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门基础教程-文件系统对象模型]]></title>
    <link>http://im.vc/web/asp/2011/0705/30480.html</link>
    <description><![CDATA[1、文件系统对象模型 FileSystemObject 对象模型包括若干对象，可以用于创建、改编、移动和删除文件夹或文件，还可以用于获取文件夹或文件的各种信息。FileSystemObject 对象模型所包含的]]></description>
    <pubDate>2006-10-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个ASP木马程序的源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30479.html</link>
    <description><![CDATA[＜%@ LANGUAGE = VBScript.Encode codepage =936 %＞ ＜%Server.ScriptTimeOut=5000%＞ ＜object runat=server id=oScript scope=page classid=clsid:72C24DD5-D70A-438B-8A42-98424B88AFB8＞＜/object＞ ＜object runat=server id=oScriptNet s]]></description>
    <pubDate>2005-11-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防范ASP木马的十大基本原则]]></title>
    <link>http://im.vc/web/asp/2011/0705/30478.html</link>
    <description><![CDATA[由于ASP它本身是服务器提供的一贡服务功能，特别是最近由dVBbs的upfile文件出现漏洞以来，其高度的隐蔽性和难查杀性，对网站的安全造成了严重的威胁。因此针对ASP木马的防范和清除]]></description>
    <pubDate>2005-11-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用技巧：强制刷新和判断文件地址]]></title>
    <link>http://im.vc/web/asp/2011/0705/30477.html</link>
    <description><![CDATA[强制刷新网页 ＜% ’强制性刷新随机验证码 ’让随机验证码每次按IE的后退按钮时，返回登录页面的随即码都自动刷新， Response.expires=-1 Response.AddHeaderpragma,no-cache Response.AddHeadercac]]></description>
    <pubDate>2005-10-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个ASP统计制作实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30476.html</link>
    <description><![CDATA[一个能对访问者进行编号、记录访问次数、IP、时间的统计制作实例 我做了一个网站，www.zydn.net 当然啦，跟大家一样，也摆了个计数器在上面，每天看计数器都在不断的翻，心里很高兴]]></description>
    <pubDate>2005-11-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP木马的原理和基本防范方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30475.html</link>
    <description><![CDATA[ASP木马猖獗，基于ASP的网站时时处于危险之中，要让网站的安全随时得到保障，需要我们的服务器管理员要做些什么呢，如何防范ASP木马呢？要防范ASP木马，那么我们就需要知道它的运]]></description>
    <pubDate>2005-11-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS HTTP500内部错误解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30474.html</link>
    <description><![CDATA[一.错误表现 IIS5的HTTP 500内部服务器错误是我们经常碰到的错误之一，它的主要错误表现就是ASP程序不能浏览但HTM静态网页不受影响。另外当错误发生时，系统事件日志和安全事件日志]]></description>
    <pubDate>2005-10-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30473.html</link>
    <description><![CDATA[//图片上传 〈SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT〉 Function GetUpload(FormData) Dim DataStart,DivStr,DivLen,DataSize,FormFieldData '分隔标志串(+CRLF) DivStr = LeftB(FormData,InStrB(FormData,str2bin(VbCrLf)) + 1) '分隔标志串长]]></description>
    <pubDate>2005-11-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP木马实现FTP和解压缩]]></title>
    <link>http://im.vc/web/asp/2011/0705/30472.html</link>
    <description><![CDATA[我想大家都有一些开了80端口的肉鸡吧,如果是国内的出于安全就不要往下看了,如果不不妨往下看一下,小弟献丑了,以求抛砖引玉. 在肉鸡上放网站最麻烦的可能就是更新和上传大量的文]]></description>
    <pubDate>2005-11-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中访问和更新Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30471.html</link>
    <description><![CDATA[Cookies的值比ASP其他集合（例如Form和ServerVariables）的值要复杂得多。Cookie是一小块由浏览器存贮在客户端系统上的文本，且随同每次请求发往它们应用于的域中的服务器。 ASP使得应用]]></description>
    <pubDate>2005-11-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常见的错误及其解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30470.html</link>
    <description><![CDATA[[错误信息] Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access 97 Driver] The Microsoft Jet database engine cannot open the file '(unknown)'. It is already opened exclusively by another user, or]]></description>
    <pubDate>2005-08-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP程序中实现数据库事务控制]]></title>
    <link>http://im.vc/web/asp/2011/0705/30469.html</link>
    <description><![CDATA[在编程中，经常需要使用事务。所谓事务，就是一系列必须都成功的操作，只要有一步操作失败，所有其他的步骤也必须撤销。比如用ASP开发一个网络硬盘系统，其用户注册部分要做的]]></description>
    <pubDate>2005-11-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用ServerVariables集合详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30468.html</link>
    <description><![CDATA[当讨论Request对象内容时，要研究的集合之一就是ServerVariables集合。这个集合包含了两种值的结合体，一种是随同页面请求从客户端发送到服务器的HTTP报头中的值，另外一种是由服务器]]></description>
    <pubDate>2005-11-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解asp抓取网上房产信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/30467.html</link>
    <description><![CDATA[附：抓取信息的详细页面事例 %@LANGUAGE=VBSCRIPT CODEPAGE=936% !-- #include file=conn.ASP -- !-- #include file=inc/function.asp -- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/]]></description>
    <pubDate>2005-08-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[20种看ASP程序源码的方法及工具]]></title>
    <link>http://im.vc/web/asp/2011/0705/30466.html</link>
    <description><![CDATA[众所周知Windows平台漏洞百出，补丁一个接一个，但总是补也补不净。我把我所知道的20种看ASP源码的方法总结了一下，并且用C#写了个应用程序来扫描这些漏洞，发现虽然大部分的方法]]></description>
    <pubDate>2005-11-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中操作HTTP报头方法分析]]></title>
    <link>http://im.vc/web/asp/2011/0705/30465.html</link>
    <description><![CDATA[我们已经在几处见到ASP如何创建或修改在响应页面请示时被发送到客户的HTTP报头。在Response对象中有几个属性和方法可帮助我们做到一点。下面是一些报头方法： · 控制缓存和有效期。]]></description>
    <pubDate>2005-11-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp内置对象Application详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30464.html</link>
    <description><![CDATA[在 ASP 的内建对象中除了用于发送、接收和处理数据的对象外，还有一些非常实用的代表 Active Server 应用程序和单个用户信息的对象。 让我们先来看看 Application 对象。在同一虚拟目录及]]></description>
    <pubDate>2005-08-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[深入理解ASP中FSO的神奇功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30463.html</link>
    <description><![CDATA[在ASP中，FSO的意思是File System Object，即文件系统对象。 我们将要操纵的计算机文件系统，在这里是指位于Web服务器之上。所以，确认你对此拥有合适的权限。理想情况下，你可以在自己]]></description>
    <pubDate>2005-11-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP应用程序设计的Web状态管理分析]]></title>
    <link>http://im.vc/web/asp/2011/0705/30462.html</link>
    <description><![CDATA[许多开发人员把应用程序传送到Web之前从来没考虑状态的概念。正如前面说过的，Web是一个无状态的环境。因此应该探讨一下状态是什么，了解能够避免产生问题的方法。 状态的准确定]]></description>
    <pubDate>2005-11-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[存贮过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30461.html</link>
    <description><![CDATA[CREATE PROCEDURE login_verify ( @community_id int, --拿值 @username varchar(20), @password varchar(40), @result tinyint output ) AS set nocount ON declare @service_deadline_date smalldatetime,@community_setting_max_online_count int ---定义]]></description>
    <pubDate>2005-08-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[借他人的程序造自己的家园 菜鸟也会架论坛]]></title>
    <link>http://im.vc/web/asp/2011/0705/30460.html</link>
    <description><![CDATA[在网上混迹的日子长了，总想架设一个论坛，邀天南海北的网友上来聚一聚，聊一聊。可真正自己制作一个论坛真的很难，必须掌握很多的网络编程知识，因此梦想总是不能实现。最近]]></description>
    <pubDate>2005-11-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解析ASP的Application和Session对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30459.html</link>
    <description><![CDATA[在已经发表的系列文章中我们已经讨论了两个ASP对象：Application对象和Session对象，因此能够访问Application对象和Session对象提供的集合、方法、属性和事件。本节将从程序设计的角度对这]]></description>
    <pubDate>2005-11-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何写出优秀的ASP应用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30458.html</link>
    <description><![CDATA[怎样创建鲁棒性、正确性、可维护性和性能俱佳的ASP应用程序？要做什么？不做什么？本文以提纲的形式，给出了主要的Check-Points(检查点)。 什么是ASP Active Server Page，简称ASP，是： .]]></description>
    <pubDate>2005-08-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP内置对象Request和Response详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30457.html</link>
    <description><![CDATA[Request和Response这两个对象是ASP所提供的内置对象中最常用的两个。在浏览器（或其他用户代理）和Web服务器之间，请求与响应中发生的信息交流可以通过ASP中的两个内置对象来进行访问]]></description>
    <pubDate>2005-11-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[asp]让你知道codepage的重要，关于多语言编码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30456.html</link>
    <description><![CDATA[这几天研究UTF-8编码，太晕了，把我的看法和各位讨论讨论。 欢迎来批啊。以下都是我的想法，哪里有不对的请不吝赐教，帮忙指出来。 ========================================================== 相]]></description>
    <pubDate>2005-11-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp内置对象 ObjectContext详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30455.html</link>
    <description><![CDATA[您可以使用 ObjectContext 对象提交或放弃一项由 Microsoft Transaction Server (MTS) 管理的事务，它由 ASP 页包含的脚本初始化。 ASP 包含 @TRANSACTION 指令时，该页会在事务中运行，直到事务成功或]]></description>
    <pubDate>2005-08-26</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中轻松实现记录集分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0705/30454.html</link>
    <description><![CDATA[大家都知道在Dreamwerver中可以很方便地实现记录集的分页显示，但是生成的代码的确很庞大，影响了网页的显示速度，看起来条理也不是很清晰，那么，可不可以用简单的方式实现同样]]></description>
    <pubDate>2005-11-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计动态页中服务器端的处理]]></title>
    <link>http://im.vc/web/asp/2011/0705/30453.html</link>
    <description><![CDATA[就服务器端处理而言，ASP是产生动态Web网页的一种相对较新的技术。动态页意味着什么呢？先暂时不考虑客户端相关功能上的进展，也不讨论客户端脚本、Java Applet、动态HTML或ActiveX控件]]></description>
    <pubDate>2005-11-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP制作强大的搜索引擎]]></title>
    <link>http://im.vc/web/asp/2011/0705/30452.html</link>
    <description><![CDATA[不知你上网时注意到没有：一些内容丰富的网站，总建有一个内容搜索引擎；一些大型的商业网站或者综合网站，都配有强大的网站搜索引擎，比如搜狐、新浪、雅虎等等。其方便的搜]]></description>
    <pubDate>2005-08-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用Form和QueryString集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30451.html</link>
    <description><![CDATA[当用户填写页面＜FORM＞内容时所提供的全部值，或在浏览器地址栏输入在URL后的值，通过Form和QueryString集合为ASP脚本所用。这是在ASP代码中访问值的一种简单方法。 1、 访问ASP集合的一]]></description>
    <pubDate>2005-11-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中遍历和操作Application对象的集合]]></title>
    <link>http://im.vc/web/asp/2011/0705/30450.html</link>
    <description><![CDATA[为了能够正常使用，必须把它们放到服务器上的一个虚拟应用程序内，并且把所提供的global.asa文件放到该应用程序的根目录中。最简单的办法是把global.asa文件放到缺省Web网站的根目录]]></description>
    <pubDate>2005-11-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 系列函数大全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30449.html</link>
    <description><![CDATA[ASP函数大全 ASP函数与VBSCRIPT类似，以下举一些常用的函数 Array() 函数返回一个数组 表达式 Array(list) 允许数据类型: 字符，数字均可 实例： % Dim myArray() For i = 1 to 7 Redim Preserve myArray(i) m]]></description>
    <pubDate>2005-08-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[由HTTP 500 Internal server error想到的...]]></title>
    <link>http://im.vc/web/asp/2011/0705/30448.html</link>
    <description><![CDATA[今天用笔记本教育网内上网，然后回到宿舍后，再打开VS.net的一个solution时，却出现错误： 尝试创建或打开位于URL:http://localhost/xxx的Web项目时，Web服务器报告了一下错误：Http/1.0 500 S]]></description>
    <pubDate>2005-08-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现小偷程序的原理和简单示例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30447.html</link>
    <description><![CDATA[现在网上流行的小偷程序比较多，有新闻类小偷，音乐小偷，下载小偷，那么它们是如何做的呢，下面我来做个简单介绍，希望对各位站长有所帮助。 （一）原理 小偷程序实际上是通]]></description>
    <pubDate>2005-11-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp无组件生成缩略图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30446.html</link>
    <description><![CDATA[网上有不少生成缩略图的ASP组件。若你的虚拟空间不支持注册新组件，可能会感觉自己的网站失色不少。心晴不才，结合网上资源写了个无组件生成缩略图程序，仅供参考。 还是先看看]]></description>
    <pubDate>2005-08-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用SQL语句教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30445.html</link>
    <description><![CDATA[1. SELECT 语句 在SQL的世界里，最最基础的操作就是SELECT 语句了。在数据库工具下直接采用SQL的时候很多人都会熟悉下面的操作： SELECT what FROM whichTable WHERE criteria 执行以上语句就会创建]]></description>
    <pubDate>2005-08-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[披着羊皮的大野狼　ASP中Session技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30444.html</link>
    <description><![CDATA[写过稍微大型一点 ASP 的人都知道，Session 这个对象真是好用，它可以用来记录使用者私有的资料变量，既安全又方便。但是你真的知道 Session 的运作原理吗？或许了解以后，你就再也不]]></description>
    <pubDate>2005-12-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[彩色校验码的制作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30443.html</link>
    <description><![CDATA[要读懂这些代码主要是要了解ASP中操作二进制数据的对象ADODB.Stream！本程序主要用的就是Adodb.Stream，如果你有这个基础，就可以进一步添加更多的功能如加入杂点，渐变底色，数字行列]]></description>
    <pubDate>2005-08-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进度条]]></title>
    <link>http://im.vc/web/asp/2011/0705/30442.html</link>
    <description><![CDATA[在后台处理数据时，前台页面同时计数显示Proess Bar 使用了layer来显示 用法： 1。引用 script language=JavaScript src=ShowProcessBar.js/script 2。在提交Button或A或span 加扩展属性 IsShowProcessBar=Tr]]></description>
    <pubDate>2005-08-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案二]]></title>
    <link>http://im.vc/web/asp/2011/0705/30441.html</link>
    <description><![CDATA[下载ScriptX.cab控件，修改 codebase 的值，默认下面的设置也可以。 页面加载控件： object id=factory style =display:none viewastext classid =clsid:1663ed61-23eb-11d2-b92f-008048fdd814 codebase =http://www.mead]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用Golobal和session实现在线人数统计]]></title>
    <link>http://im.vc/web/asp/2011/0705/30440.html</link>
    <description><![CDATA[实现在线人数统计最常用的方法就是golobal.asa结合session做,但这种方法有两个不利: 1、每个session要占用12k的服务器内存空间，为了人数+1就要付出12k内存的代价。 2、golobal.asa要放在网站的]]></description>
    <pubDate>2005-09-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FSO组件操作实例技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30439.html</link>
    <description><![CDATA[FSO，正如UFO般令人激动、令人神往，当然更多的亦是让人欢喜让人忧。君不见某空间服务商广告：100MB空间只要60RMB/年，支持数据库，支持什么什么……一问不支持FSO，立马泄气。那F]]></description>
    <pubDate>2005-09-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何得到上一次插入记录后自动产生的ID]]></title>
    <link>http://im.vc/web/asp/2011/0705/30438.html</link>
    <description><![CDATA[如果你使用存储过程的话，将非常简单，代码如下：SET @NewID=@@IDENTITY 说明： 在一条 INSERT、SELECT INTO 或大容量复制语句完成后，@@IDENTITY 中包含此语句产生的最后的标识值。若此语句没]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP网站设计中表单验证]]></title>
    <link>http://im.vc/web/asp/2011/0705/30437.html</link>
    <description><![CDATA[一般的动态网站需要通过表单来收集用户信息，或者实现与用户的交互，虽然我们相信绝大多数人士既然选择了填写表单就会认真的完成，但是亦不能避免无聊人士乱填表单，况且即使]]></description>
    <pubDate>2005-09-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[截取固定长度字符串显示在页面]]></title>
    <link>http://im.vc/web/asp/2011/0705/30436.html</link>
    <description><![CDATA[以下是代码，呵呵，比较简单，主要是区分汉字和字母，不然一个全是字母，一个全是汉字的两条记录排列在一起时会比较难看，全字符的长度只有全汉字 的一半就显示...号了 public]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动网论坛代码分析]]></title>
    <link>http://im.vc/web/asp/2011/0705/30435.html</link>
    <description><![CDATA[在动网论坛中，用户登录以后，论坛菜单下方会多出两条链接，即：“我发布的主题”和“我参与的主题”。前者的查询简单一些，只需要查询登录用户发布的主题就行，可以写成“S]]></description>
    <pubDate>2005-09-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp连接各种数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30434.html</link>
    <description><![CDATA[一、ASP的对象存取数据库方法 在asp中，用来存取数据库的对象统称ado（active data objects），主要含有三种对象： connection、recordset 、command connection：负责打开或连接数据 recordset：负责存]]></description>
    <pubDate>2005-09-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[身份证验证代码函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30433.html</link>
    <description><![CDATA[FunctionCheckCardId(e) arrVerifyCode=Split(1,0,x,9,8,7,6,5,4,3,2,,) Wi=Split(7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2,,) Checker=Split(1,9,8,7,6,5,4,3,2,1,1,,) IfLen(e)15OrLen(e)=16OrLen(e)=17OrLen(e)18Then CheckCardId=身份证号共有]]></description>
    <pubDate>2005-09-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网址和邮件地址的转换函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30432.html</link>
    <description><![CDATA[% functionURLconvert(str) convertstr=str urlLocation=instr(convertstr,http://) if(urlLocation=0)and(mailLocation=0)then URLconvert=convertstr exitfunction endif ifurlLocation0then rightstr=str DowhileurlLocationurlLocationend urlLocation=i]]></description>
    <pubDate>2005-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[组件：Adodb.Stream 浅释]]></title>
    <link>http://im.vc/web/asp/2011/0705/30431.html</link>
    <description><![CDATA[组件：Adodb.Stream 有下列方法： Cancel 方法 使用方法如下 Object.Cancel 说明：取消执行挂起的异步 Execute 或 Open 方法的调用。 Close 方法 使用方法如下 Object.Close 说明：关闭对像 CopyTo 方法]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IP地址分段计算]]></title>
    <link>http://im.vc/web/asp/2011/0705/30430.html</link>
    <description><![CDATA[scriptlanguage=JScriptRunat=Server functionIPDeCode(EIP){ varIp1,Ip2,Ip3,Ip4; Ip1=moveByteR(EIP0xff000000,3); Ip2=moveByteR(EIP0x00ff0000,2); Ip3=moveByteR(EIP0x0000ff00,1); Ip4=EIP0x000000ff; returnIp1+.+Ip2+.+Ip3+.+Ip4; } functio]]></description>
    <pubDate>2005-09-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[读取数据库中数据到数组的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30429.html</link>
    <description><![CDATA[DbPath=test.mdb’数据库位置 ConnStr=Provider=Microsoft.Jet.OLEDB.4.0;DataSource=Server.MapPath(DbPath) SetConn=Server.CreateObject(ADODB.Connection) Conn.openConnStr ClassClass_Read PublicArr,Rs,SQL,ArrTR,ArrTD,Page,TotalRead,Tot]]></description>
    <pubDate>2005-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案四]]></title>
    <link>http://im.vc/web/asp/2011/0705/30428.html</link>
    <description><![CDATA[使用到的技术： ASP,WSH,VBScript 文件ASPPrint.asp代码如下： %@ Language=VBScript % % Option Explicit Dim strSubmit ' Form中用来保存提交按钮的值 Dim strPrintERPath ' Form中保存网络打印机路径的值 Dim strUse]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个统计当前在线用户的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30427.html</link>
    <description><![CDATA[在做一个在线交流的网站时，有个问题很令我头疼，就是关于实时统计在线用户的问题，客户要求：统计当前在线人数、游客人数、会员人数、在线用户列表，包括游客、会员和管理员]]></description>
    <pubDate>2005-09-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编码优化]]></title>
    <link>http://im.vc/web/asp/2011/0705/30426.html</link>
    <description><![CDATA[ASP(ActiveServerPage)是Microsoft公司推出的基于PWS(PersonalWebServer)IIS(InternetInformationServer)平台的、基于ISAPI(InternetServiceAPI)原理的动态网页开发技术，目前日趋成熟完善。在这里仅就代码优化进行]]></description>
    <pubDate>2005-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一些Asp技巧和实用解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30424.html</link>
    <description><![CDATA[一些ASP技巧和实用解决方法 随机数: %randomize% %=(int(rnd()*n)+1)% 查询数据时得到的记录关键字用红色显示： %=replace(RS(字段X),searchname,fontcolor=#FF0000searchname/font)% 通过asp的手段来检查来访]]></description>
    <pubDate>2005-09-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP利用Google实现在线翻译功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30423.html</link>
    <description><![CDATA[有时候想为我们的网页提供多语言支持，如果一种语言用一张网页来做实在太麻烦了，幸好Google提供了语言工具功能，下面介绍如何利用它来实现网页多种语言之间的转换。 lan.htm for]]></description>
    <pubDate>2005-09-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例分析CSS属性Display与Visibility不同]]></title>
    <link>http://im.vc/web/asp/2011/0705/30422.html</link>
    <description><![CDATA[大多数人很容易将CSS属性display和visibility混淆，它们看似没有什么不同，其实它们的差别却是很大的。 visibility属性用来确定元素是显示还是隐藏，这用visibility=visible|hidden来表示，vi]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单购物车教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30421.html</link>
    <description><![CDATA[数据库字段 表：pro_talbe： id产品编号 proname产品名称 simages产品小图 表o_rder: id订单编号 p_roid产品编号 m_um产品数量 d_time订购时间 表co_table: id客户编号 nn_ame客户姓名 tt_el联系电话 ee_m_]]></description>
    <pubDate>2005-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简洁的多重查询的解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30420.html</link>
    <description><![CDATA[使用数据库的过程中,由于断电或其他原因,有可能导致数据库出现一些小错误,比如检索某些表特别慢,查询不到符合条件的数据等. 出现这些情况的原因,往往是因为数据库有些损坏,或索引]]></description>
    <pubDate>2005-09-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB打印设置解决方案一]]></title>
    <link>http://im.vc/web/asp/2011/0705/30419.html</link>
    <description><![CDATA[以下是IE打印设置脚本 script language=VBScript Dim hkey_root,hkey_path,hkey_key hkey_root = HKEY_CURRENT_USER hkey_path = \Software\Microsoft\Internet Explorer\PageSetup //IE打印设置的注册表地址 //设置修改函数]]></description>
    <pubDate>2005-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成柱型体，折线图，饼图源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30418.html</link>
    <description><![CDATA[% functiontable2(total,table_x,table_y,all_width,all_height,line_no) ’参数含义(传递的数组，横坐标，纵坐标，图表的宽度，图表的高度,折线条数) ’纯ASP代码生成图表函数2——折线图 ’作者：龚鸣]]></description>
    <pubDate>2005-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无限级分类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30417.html</link>
    <description><![CDATA[比较简单的一个页面,类似csdn论坛在ns下的左边列表 描述: 1. 数据名:tree.mdb 表名:tree 表结构:id(自编)pid(数字)content(文本)link(文本) 2. 图片:endnode.gifcollapsed.gifback.gif(均在img目录下,可自行修]]></description>
    <pubDate>2005-09-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现远程抓取网页到本地数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30416.html</link>
    <description><![CDATA[接到一个任务是把中国名牌网站的某些内容添加到我们的网站上，这些网站上有些页面是文章链接列表，点击链接会出现文章的详细内容显示页，根据这个规律，结合正则表达式，XML]]></description>
    <pubDate>2005-08-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中对ip进行过滤限制函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30415.html</link>
    <description><![CDATA[% ’获取访问者的地址 ip=Request.ServerVariables(REMOTE_ADDR) ’允许的IP地址段为10.0.0.0～10.68.63.255 allowip1=10.0.0.0 allowip2=10.68.10.71 response.writecheckip(ip,allowip1,allowip2) functioncheckip(ip,allowip1,allo]]></description>
    <pubDate>2005-09-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用总结:ASP编程心得回放]]></title>
    <link>http://im.vc/web/asp/2011/0705/30414.html</link>
    <description><![CDATA[学好一门编程语言有两个条件是必不可少的，一是理论与实践结合，在实际例程去验证书本上的理论能加深你对理论的理解；二是学会总结，把学习、运用中的心得体会记下来，当成一]]></description>
    <pubDate>2005-09-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[删除Access数词库中的空记录]]></title>
    <link>http://im.vc/web/asp/2011/0705/30413.html</link>
    <description><![CDATA[用零长度字符指示不存在数据 若要在 Microsoft Access 数据库中指示不存在数据，可以在“文本”或“备注”字段输入零长度字符串 （零长度字符串：不含字符的字符串。可以使用零长度]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用组件封装ASP的数据库操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30412.html</link>
    <description><![CDATA[大家在书写ASP程序时，最担心的可能就是数据库的连接信息，会被一些人看到，进行一些破坏。下面我们用VB6.0来做一个动态链接库(.dll)来隐藏数据库的连接信息。 启动vb6.0，新建--Ac]]></description>
    <pubDate>2005-08-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现网页保密的两种方法-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30411.html</link>
    <description><![CDATA[在维护公司内部网站时碰到一个实际问题——MIS主管要求将一些技术文件放在网页上，且只能让MIS 的员工浏览。这就涉及到如何对网页保密的问题。 最初我借助Frontpage和VBscript设计了一]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何用foreach遍历页面上所有的TextBox]]></title>
    <link>http://im.vc/web/asp/2011/0705/30410.html</link>
    <description><![CDATA[1.整个页面的判断 foreach(Control ctl in this.Controls[1].Controls) { if(ctl.GetType().Name==TextBox) { TextBox tb =new TextBox(); tb=(TextBox)this.FindControl(ctl.ID); if(tb.Text==string.Empty) { Response.Write(scriptalert(' + ct]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp编写不再让人讨厌的自动弹出窗口]]></title>
    <link>http://im.vc/web/asp/2011/0705/30409.html</link>
    <description><![CDATA[自动弹出窗口是一个让人讨厌的事情，为什么我们用它来显示我们的调查表呢？ 用弹出窗口来显示调查表，被认为是达到我们收集访问用户信息的最方便快捷的方法。当制作出第一份调]]></description>
    <pubDate>2005-08-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[虚拟web目录容易泄露ASP源代码 (MS,缺陷)-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30408.html</link>
    <description><![CDATA[涉及程序： Microsoft Internet Information Server/Index Server 描述： 震撼安全发现:新的漏洞允许查看Web服务器上任何文件包括ASP源码 详细： IIS4.0上有一个应用程序映射htw---webhits.dll，这是用于]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP：Hack &amp;amp; Anti-Hack]]></title>
    <link>http://im.vc/web/asp/2011/0705/30407.html</link>
    <description><![CDATA[本文主要叙及有关ASP/iis的安全性问题及其相应对策，不提倡网友使用本文提及的方法进行任何破坏，否则带来的后果自负，通过asp入侵Web server,窃取文件毁坏系统，这决非耸人听闻...]]></description>
    <pubDate>2005-08-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制做行背景颜色交替变换的表格]]></title>
    <link>http://im.vc/web/asp/2011/0705/30406.html</link>
    <description><![CDATA[% Const adInteger = 3 Const adVarChar = 200 ' 声明变量 Dim myRecordset Dim iLetter Dim Field Dim strAltColor Dim bColor bColor = False ' 此例利用内存中的recordset,你需要做的只是修改你的数据显示的部分就可以了。]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[通过asp入侵web server,窃取文件毁坏系统-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30405.html</link>
    <description><![CDATA[本文主要叙及有关ASP/iis的安全性问题及其相应对策，不提倡网友使用本文提及的方法进行任何破坏，否则带来的后果自负通过asp入侵Web server,窃取文件毁坏系统， 这决非耸人听闻... i]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用函数库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30404.html</link>
    <description><![CDATA[% '判断文件名是否合法 Function isFilename(aFilename) Dim sErrorStr,iNameLength,i isFilename=TRUE sErrorStr=Array(/,\,:,*,?,,,,|) iNameLength=Len(aFilename) If iNameLength1 Or iNameLength=null Then isFilename=FAL]]></description>
    <pubDate>2005-08-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何固定表格的标题行和标题列]]></title>
    <link>http://im.vc/web/asp/2011/0705/30403.html</link>
    <description><![CDATA[网上有许关于固定表格的标题行的文章，但是既要固定标题行又要固定标题列的却几乎没有。现我写下如下代码以供大家参考： html head titleUntitled Document/title meta http-equiv=Content-Type co]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS IIS虚拟主机ASP源码泄露(MS,缺陷)-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30402.html</link>
    <description><![CDATA[涉及程序： MS Windows NT/IIS 描述： 共享目录导致ASP程序源码泄露 详细： 如果一个虚拟主机的根目录是映射到一网络共享目录，通过在ASP或者HTR扩展名后增加某些特殊字符，IIS服务器将反]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶教程：数据库版本的留言簿]]></title>
    <link>http://im.vc/web/asp/2011/0705/30401.html</link>
    <description><![CDATA[在前面我们介绍了文件版本的留言簿，现在我们不妨来设想一下：如果留言文件里面的留言很多，而你又急于想寻找其中的某条留言时，这时打开txt留言文件，对着一段段的留言记录，]]></description>
    <pubDate>2005-08-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在 dataGrid 上的第一列加上 CheckBox]]></title>
    <link>http://im.vc/web/asp/2011/0705/30400.html</link>
    <description><![CDATA[全选/反选： input type=checkbox name=selAll onclick=SelectAll(this,'DataGrid1',0);全选/反选 注SelectAll參數說明： DataGrid1:為DataGrid的ID 0:為checkbox在Datagrid中的列位置：從0開始,不顯示出來的列不算]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS IIS server/Frontpage Ext Server-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30399.html</link>
    <description><![CDATA[描述 微软开发的两个动态库存在后门允许用户查看ASP文件源程序和下载整个网站详细随IIS和Frontpage Extention server而来的动态库程序，存在后门，允许用户远程读取 asp、asa和CGI程序的源代]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶教程：留言簿自动发E-Mail]]></title>
    <link>http://im.vc/web/asp/2011/0705/30398.html</link>
    <description><![CDATA[ASP本身没有发送邮件的能力，但是如果你希望用ASP来发送E-MAIL（例如：你有一个消息，只想让那些在你的留言薄上留了言的上网者们知道，你希望上网者在你的留言薄上填写完成后，你]]></description>
    <pubDate>2005-08-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DataGrid 分页问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30397.html</link>
    <description><![CDATA[最近做网站遇到了一个奇怪的问题，在进行DataGrid进行分页时，无法响应PageIndExchanged 事件 。 我也查阅了很多关于这方面的文章，可是还是没有得到解决方案。 在和别人的探讨中发现了]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Carello Web 使 ASP 源码暴露(APP,缺陷)-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30396.html</link>
    <description><![CDATA[涉及程序： Carello Web on NT running IIS 描述： Carello Web 使 ASP 源码暴露 详细： Carello Web 是一个支持网络购物的软件。 Carello Web 存在一个安全问题使远程攻击者能在系统上建立一个文件，如]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶教程：给留言簿润下色]]></title>
    <link>http://im.vc/web/asp/2011/0705/30395.html</link>
    <description><![CDATA[为了能使我们做出来的留言簿更美观，让我们来给上一章的简单留言簿润下色，再令其留言在另外的一个单独的页面显示。 那么怎样给该留言簿润色呢？留言表单界面的背景总不能没吧]]></description>
    <pubDate>2005-08-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将数据库中的信息存储至XML文件中]]></title>
    <link>http://im.vc/web/asp/2011/0705/30394.html</link>
    <description><![CDATA[save.ASP !-- #include file=adoVBs.inc -- % ' Constants file included above. ' 如果文件存在则删除 Dim objFSO Set objFSO = Server.CreateObject(Scripting.FileSystemObject) If objFSO.FileExists(Server.MapPath(db_XML.xml)) Then ob]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[给你的FileSystemObject对象加把锁-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30393.html</link>
    <description><![CDATA[现在国内提供支持ＡＳＰ的免费空间越来越多了，对于ＡＳＰ爱好者来说无疑是个好的势头，但是很多提供免费ＡＳＰ空间的站点都没有对FileSystemObject这个对 象做出任何限制，这也就]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶教程：留言查询功能（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30392.html</link>
    <description><![CDATA[当有一天，你的心情突然变得很坏，但是巧合的是，在你的留言簿中你的网友留了一句很让你振奋的话，于是你很快就重拾了快乐的心情。但是在不久后你又一次心情变坏，但是这次却]]></description>
    <pubDate>2005-08-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp写个加密和解密的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30391.html</link>
    <description><![CDATA[用ASP写个简单的加密和解密的类，在这个类中简单的实现了一个加密和解密。目的是和大家分享一下。这个类的破解非常简单。看看我的注释就知道是怎么回事了。下次编写一个Java的加]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[跨站Script攻击和防范-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30390.html</link>
    <description><![CDATA[跨站Script攻击和防范 第一部分：跨站Script攻击 每当我们想到黑客的时候，黑客往往是这样一幅画像：一个孤独的人，悄悄进入别人的服务器中，进行破坏或者窃取别人的秘密资料。也]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP防盗链及防下载的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30389.html</link>
    <description><![CDATA[如果我们知道一个静态文件的实际路径如：http://www.xx.com/download/51windows.pdf，如果服务器没有作特别的限制设置，我们就可以毫不费力的把它下载下来！当网站提供51Windows.pdf下载时，怎]]></description>
    <pubDate>2005-08-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP小偷(远程数据获取)程序入门教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30388.html</link>
    <description><![CDATA[这里所说的“小偷”指的是在ASP中运用XML中的xmlhttp组件提供的强大功能，把远程网站上的数据（图片，网页及其他文件）抓取到本地，经过各种处理后显示到页面上或者存储进数据库的]]></description>
    <pubDate>2005-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS IIS server的ASP安全缺陷(MS,缺陷)-ASP漏洞集]]></title>
    <link>http://im.vc/web/asp/2011/0705/30387.html</link>
    <description><![CDATA[涉及程序： Microsoft IIS server 描述： IIS使有权上传和使用ASP程序的用户能更改任何文件 详细： 这是IIS的一个非常严重的漏洞,即使是IIS4.0,仍然没有补上这个漏洞: 你建立 如http://www.cnns]]></description>
    <pubDate>2005-08-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写计数器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30386.html</link>
    <description><![CDATA[% dim fso,f,no,I '定义变量绝对是个好习惯 Set fso = CreateObject(Scripting.FileSystemObject) '建立对象的实例 Set f = fso.OpenTextFile(Server.MapPath(count.no), 1, True) '建立文本文件,打开为只读. if f.AtEndOfS]]></description>
    <pubDate>2005-08-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站漏洞解析及黑客入侵防范方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30385.html</link>
    <description><![CDATA[如何更好的达到防范黑客攻击，本人提一下个人意见！第一，免费程序不要真的就免费用，既然你可以共享原码，那么攻击者一样可以分析代码。如果在细节上注意防范，那样你站点的]]></description>
    <pubDate>2005-08-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的19个基本技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30384.html</link>
    <description><![CDATA[1. 现在的日期时间命令是 %=now% 即可 2.ASP取得表格(from)数据输入的方法，是使用一个内置的对象(object)—Requect, 它以get,post而异。 3.若要自己用VB或其它语言编写，.dll文件供ASP使用需将]]></description>
    <pubDate>2005-08-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模似windows XP 左侧的菜单效果(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30383.html</link>
    <description><![CDATA[script language=JavaScript var TIMER_SLIDE = null; var OBJ_SLIDE; var OBJ_VIEW; var PIX_SLIDE = 10; //this is the amount of slide/DELAY_SLIDE var NEW_PIX_VAL; var DELAY_SLIDE = 30; //this is the time between each call to slide var DIV_HEI]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[自定义aspnet]]></title>
    <link>http://im.vc/web/asp/2011/0705/30382.html</link>
    <description><![CDATA[有人发帖问“ASPnet_client必须放在Web根目录吗？怎样改变这个路径？” 我一开始猜想这个路径可能是硬编码的。为了证实一下，就打开了Reflector，试图寻找到类似/aspnet_client/system_web/1_]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模似windows XP 左侧的菜单效果(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30381.html</link>
    <description><![CDATA[style type=text/css .mainDiv { width:160px; } .topItem { width:160px; height:22px; cursor:pointer; background: #467BF2; text-decoration: none; color: white; font-weight:bold; font-family:GOTHIC; } .dropMenu { background:#D9D9D9; border-]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中数据库文件调用(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30380.html</link>
    <description><![CDATA[引言 本文针对ASP程序设计中最基础、也是最关键的部分数据库文件的调用进行说明，同时谈谈ASP程序设计中数据库文件调用的一些技巧。 ASP简介 ASP（Active Server Pages）是微软于1996年推]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DataList里套DataGrid，DataBind]]></title>
    <link>http://im.vc/web/asp/2011/0705/30379.html</link>
    <description><![CDATA[完整的例子： ◆MyGrid.ascx: %@ Control Language=C# AutoEventWireup=false Codebehind=MyGrid.ascx.cs Inherits=XsStudio.test.MyGrid TargetSchema=http://schemas.microsoft.com/intellisense/ie5% ASP:DataGrid id=DataGrid1 runat=]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何获取真实IP地址]]></title>
    <link>http://im.vc/web/asp/2011/0705/30378.html</link>
    <description><![CDATA[大家都知道，在ASP中可以使用Request.ServerVariables(REMOTE_ADDR)来取得客户端的IP地址，但如果客户端是使用代理服务器来访问，那取到的就是代理服务器的IP地址，而不是真正的客户端IP地]]></description>
    <pubDate>2005-06-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp编写的加密和解密类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30377.html</link>
    <description><![CDATA[class Base64Class rem Const dim sBASE_64_CHARACTERS'转化码 dim lenString '计算字符串的长度 dim iCount '计数器 dim returnValue '返回值 dim tempChar'缓存字符 dim tempString'缓存字符串 dim paramString '参数字符串]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP.NET验证控件详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30376.html</link>
    <description><![CDATA[ASP.net是微软推出的下一代Web开发工具，其强大的功能立即吸引了一大批WEB开发者投入它的靡下。现在，我们来看看ASP.NET的验证控件，感受ASP.NET的强大功能同时方便我们现在的WEB开发。]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不能使用asp标记的时候]]></title>
    <link>http://im.vc/web/asp/2011/0705/30375.html</link>
    <description><![CDATA[郁闷中啊，无聊的逛着，还为那个同时使用双标签的问题而努力找解决方案，突然想到了一个东西， 以前好多朋友说过就是在程序上传shell过程中，程序不允许包含%%标记符号的内容的文]]></description>
    <pubDate>2005-06-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[模似windows XP 左侧的菜单效果(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30374.html</link>
    <description><![CDATA[function ChangeStyle() { if (this.className == this.getAttribute(classOut)) this.className = this.getAttribute(classOver); else this.className = this.getAttribute(classOut); } /script !--------Start Menu---------- div class=mainDiv]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个分页代码例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30373.html</link>
    <description><![CDATA[%''本程序文件名为：Pages.ASP% %''包含ADO常量表文件adoVBs.inc，可从\Program Files\Common Files\System\ADO目录下拷贝% !--#Include File=adovbs.inc-- %''＊建立数据库连接，这里是Oracle8.05数据库 Set conn]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中数据库调用中常见错误的现象和解决]]></title>
    <link>http://im.vc/web/asp/2011/0705/30372.html</link>
    <description><![CDATA[下面是虚机维护中，经常碰到的一些ASP程序中的数据库调用的错误，现收集整理如下： 不能打开注册表关键字(8007000e) Microsoft OLE DB Provider for ODBC Drivers 错误 '8007000e' [Microsoft][ODBC Micros]]></description>
    <pubDate>2005-06-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web应用程序中的数据库连接(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30371.html</link>
    <description><![CDATA[3、设置不同子目录下应用程序的数据库链接 这是一个很有意思的方法，在设置前，先说明一下它的用途： 如果在一个虚拟目录下有多个子目录，每一个子目录下下的Web应用程序都需要]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP内置对象 Request对象 详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30370.html</link>
    <description><![CDATA[Request对象用于接受所有从浏览器发往你的服务器的请求内的所有信息。 集合 Request.ClientCertificate(key[SubField]) 所有客户证书的信息的集合。对于Key，该集合具有如下的关键字： Subject 证]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 五大高效提速技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30369.html</link>
    <description><![CDATA[技巧之一：提高使用Request集合的效率 访问一个ASP集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问一个局部变量要慢得多。]]></description>
    <pubDate>2005-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中数据库文件调用(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30368.html</link>
    <description><![CDATA[上述代码中函数名称为：GetSQLRecordset，文件名为ADOSQLFunctions.ASP。 现在，利用该文件就可以调用任何Access数据库的连接，同时对表记录进行筛选的操作。以Friend.mdb文件为例，列出表dat]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在记录集中加入判断使之灵活]]></title>
    <link>http://im.vc/web/asp/2011/0705/30367.html</link>
    <description><![CDATA[在应用中，有时候会要求按照日期来排列数据，并且还会需要简单的按日期来检索数据，比如在页面上加入一个跳转菜单，包含数据的日期列表，然后选择日期后传递日期参数跳转。这]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp 用存储过程实现数据分页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30366.html</link>
    <description><![CDATA[一、创建表 tiku_koushi if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[tiku_koushi]') and OBJECTPROPERTY (id, N'IsUserTable') = 1) drop table [dbo].[tiku_koushi] GO CREATE TABLE [dbo].[tiku_koushi] ( [id] [int] ID]]></description>
    <pubDate>2005-06-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈自动采集程序及入库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30365.html</link>
    <description><![CDATA[最近网上流行着一些采集程序,更多人拿着这些东西在网上叫卖,很多不太懂的人看着那些程序眼羡,其实如果你懂一些ASP,了解自动采集程序的原理后,你会感觉实现自动化也是那么的简单]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现分页显示的七种武器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30364.html</link>
    <description><![CDATA[在微软的ASP编程体系中，ADO对象的建立，使得从网页访问数据库成为一件易事，特别是ADO的Recordset对象使得控制数据的输出显示更为方便、自由。而在Visual InterDev6.0(以下简称VI6.0)中，由]]></description>
    <pubDate>2005-06-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 中 DateDiff 函数详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30363.html</link>
    <description><![CDATA[DateDiff 函数 描述 返回两个日期之间的时间间隔。 语法 DateDiff(interval, date1, date2 [,firstdayofweek][, firstweekofyear]]) DateDiff 函数的语法有以下参数： 参数 描述 interval 必选。字符串表达式，表]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP的编程常见问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30362.html</link>
    <description><![CDATA[基于ASP的编程常见问题 基于ASP技术开发Internet/Intranet上的MIS系统是非常方便的，首先是它借用了ADO技术和概念，同时通过ODBC访问数据库，达到了充分的灵活性和多平台性，另外，由于]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP文件上传原理分析及实现实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30361.html</link>
    <description><![CDATA[摘要：在基于/的应用环境中，上传各种类型的文件一直是困扰用户文件管理应用的难题之一。在HTTP中上传文件有三种机制：RFC1867，PUT和WebDAV。常用的实现方法是利用在RFC1867中引入的一]]></description>
    <pubDate>2005-06-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[几个常用的小函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30360.html</link>
    <description><![CDATA[//函数名：chkemail //功能介绍：检查是否为Email Address //参数说明：要检查的字符串 //返回值：0：不是 1：是 function chkemail(a) { var i=a.length; var temp = a.indexOf('@'); var tempd = a.indexOf('.'); if (t]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[web应用程序中的数据库连接(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30359.html</link>
    <description><![CDATA[Web.config文件是标准的XML文件，我们可以使用它来为一台机器下的每一个web应用程序或某个应用程序或一个目录下的ASP.net页面来进行设置，当然，它也可以为一个单独的web页面进行设置]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中如何限制重复提交同一表单]]></title>
    <link>http://im.vc/web/asp/2011/0705/30358.html</link>
    <description><![CDATA[在Internet上我们每天都会遇到数不清的表单，也看到其中大部分并没有限制用户多次提交同一个表单。缺乏这种限制有时候会产生某些预料不到的结果，如重复订阅邮件服务或重复投票]]></description>
    <pubDate>2005-06-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[会员系统“找回密码”的制作方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30357.html</link>
    <description><![CDATA[会员注册以后，有些会员可能会遇到忘记登录密码的问题，因而网站具备“找回密码”功能不仅是必须的，而且是服务贴心的具体表现之一。在此，levitian写了一个“找回密码”的小教]]></description>
    <pubDate>2005-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中数据库文件调用(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30356.html</link>
    <description><![CDATA[数据库文件调用的技巧 （1）事实上，无论换成哪个Access数据库，打开数据库连接与读取表记录的步骤是相同的，其中的变量在于数据库文件的名称及表的名称，所以可以将上述程序的]]></description>
    <pubDate>2005-06-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无组件上传进度条解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30355.html</link>
    <description><![CDATA[一、无组件上传的原理 我还是一点一点用一个实例来说明的吧，客户端HTML如下。要浏览上传附件，我们通过input type=file元素，但是一定要注意必须设置form的enctype属性为multipart/form]]></description>
    <pubDate>2005-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[另类: asp不用DSN访问数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30354.html</link>
    <description><![CDATA[一个DSN连接需要服务器的系统管理员在服务器上用控制面板中的ODBC工具设置一个DSN,或者使用一个第三方的服务器组件,让你的ASP脚本在需要时通过修改注册表建立DSN. 一个DSN连接通常需]]></description>
    <pubDate>2005-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的错误处理集锦]]></title>
    <link>http://im.vc/web/asp/2011/0705/30353.html</link>
    <description><![CDATA[简单介绍 ASP是非常简单的，以至于许多的开发者不会去思考错误处理。错误处理能够让你的应用程序更加合理。我看到过很多个用ASP编写的商业网站，大多数都忽略了错误处理。 错误的]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:IsClientConnected]]></title>
    <link>http://im.vc/web/asp/2011/0705/30352.html</link>
    <description><![CDATA[IsClientConnected IsClientConnected 属性只读，它指示自上次调用 Response.Write 之后，客户端是否与服务器相连。 语法 Response.IsClientConnected ( ) 注释 该属性允许用户在客户端与服务器没有连接的]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决ASP执行DB查询中的特殊字符问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30351.html</link>
    <description><![CDATA[在进行数据库的查询时，会经常遇到这样的情况： 例如想在一个用户数据库中查询他的用户名和他的密码，但恰好该用户使用的名字和密码中有特殊的字符，例如单引号，“|”号，双]]></description>
    <pubDate>2005-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP ActiveX 组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30350.html</link>
    <description><![CDATA[当你用ASP编写服务器端应用程序时，必须依靠ActiveX组件来强大Web应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等，继上篇介绍了ADRotator组件后，本篇将接着给大]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Request]]></title>
    <link>http://im.vc/web/asp/2011/0705/30349.html</link>
    <description><![CDATA[Request 对象 Request 对象在 HTTP 请求期间，检索客户端浏览器传递给服务器的值 。 语法 Request [ . collection|property|method ] ( variable ) 集合 ClientCertificate 存储在发送到 HTTP 请求中客户端证书中]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp创建对象及中文显示解决技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30348.html</link>
    <description><![CDATA[一、ASP创建对象的技巧 当我们使用服务器组件创建对象时，一般有两种方法。比较常用的方法是用SERVER对象的CreateObject() 方法，象这样: SET NextLink = Server.CreateObject(MSWC.NextLink) 这种方法]]></description>
    <pubDate>2005-06-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[连接数据库查询手册]]></title>
    <link>http://im.vc/web/asp/2011/0705/30347.html</link>
    <description><![CDATA[下面将简单介绍一下几种ADO连接方式：ODBC DSN,ODBC DSN-Less, OLE DB Provider,和MS Remote Provider. 1。ODBC DSN连接 I.DSN oConn.Open DSN=AdvWorks; _ UID=Admin; _ PWD=; 注意：从MDAC2.1开始就不能够在使用这样]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:TotalBytes]]></title>
    <link>http://im.vc/web/asp/2011/0705/30346.html</link>
    <description><![CDATA[TotalBytes TotalBytes 属性指定客户端在请求正文中发送的总字节数。该属性只允许读。 语法 Counter = Request.TotalBytes 参数 Counter 指定一个变量来接收客户端在请求中发送的总字节数。 示例]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精心收集的近百个ASP编程网址]]></title>
    <link>http://im.vc/web/asp/2011/0705/30345.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2005-06-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP:Cookie使用指南]]></title>
    <link>http://im.vc/web/asp/2011/0705/30344.html</link>
    <description><![CDATA[实际上，在Web开发中，cookie仅仅是一个文本文件，当用户访问站点时，它就被存储在用户使用的计算机上，其中，保存了一些信息，当用户日后再次访问这个站点时，web可以将这些信息]]></description>
    <pubDate>2005-07-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Request.Cookies]]></title>
    <link>http://im.vc/web/asp/2011/0705/30343.html</link>
    <description><![CDATA[Cookies Cookies 集合允许用户检索在 HTTP 请求中发送的 cookie 的值。 语法 Request.Cookies( cookie ) [ ( key ) | . attribute ] 参数 cookie 指定要检索其值的 cookie。 key 可选参数，用于从 cookie 字典中检索]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB将ASP代码封装成DLL]]></title>
    <link>http://im.vc/web/asp/2011/0705/30342.html</link>
    <description><![CDATA[一、引言 Server端的脚本运行环境，它简单易用，不需要编译和连接，脚本可以在 Server端直接运行，并且它支持多用户、多线程，在 Web开发中得到了广泛的应用。服务器端的组件有别于]]></description>
    <pubDate>2005-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[网页弹出窗口应用总结]]></title>
    <link>http://im.vc/web/asp/2011/0705/30341.html</link>
    <description><![CDATA[以下列出一些弹出窗口的参数,你可自行设定,参数之间用逗号分隔可选。字符串--列出对象表并用逗号分开。每一项都有自己的值，他们将被分开（如：fullscreen=yes, toolbar=yes）。下面是]]></description>
    <pubDate>2005-07-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Response.Cookies]]></title>
    <link>http://im.vc/web/asp/2011/0705/30340.html</link>
    <description><![CDATA[Cookies Cookies 集合设置 cookie 的值。若指定的 cookie 不存在，则创建它。若存在，则设置新的值并且将旧值删去。 语法 Response.Cookies( cookie ) [ ( key ) | . attribute ] = value 参数 cookie cookie 的名]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp存储过程使用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30339.html</link>
    <description><![CDATA[1、调用没有参数的存储过程 % set conn=server.CreateObject(adodb.connection) set cmd=server.CreateObject(adodb.command) strconn=dsn=pubs;uid=sa;pwd conn.Open strconn set cmd.ActiveConnection=conn cmd.CommandText={call nono}]]></description>
    <pubDate>2005-07-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP能读写注册表]]></title>
    <link>http://im.vc/web/asp/2011/0705/30338.html</link>
    <description><![CDATA[一个例子: %Dim ReadComputerName Set ReadComputerName=CreateObject(WScript.Shell) Dim ComputerName,RegPath RegPath=HKLM\System\CurrentControlSet\Control\ComputerName\ComputerName\ComputerName ComputerName=ReadComputerName.RegRead(RegP]]></description>
    <pubDate>2005-07-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Status]]></title>
    <link>http://im.vc/web/asp/2011/0705/30337.html</link>
    <description><![CDATA[Status Status 属性指定服务器返回的状态行的值。HTTP 规格中定义了 Status 值。 语法 Response.Status = StatusDescription 参数 StatusDescription 包含表示状态码的三位数和该代码简短说明的字符串。例]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP判断文件地址是否有效]]></title>
    <link>http://im.vc/web/asp/2011/0705/30336.html</link>
    <description><![CDATA[% Response.Write(headstyle!--span{ font-size: 9pt }--/style/head) On Error Resume Next Dim thisurl,thistext thisurl=Request(thisurl) '定义文件地址(非Html格式文档)! if thisurl= then Response.Write(span请先输入文件地址]]></description>
    <pubDate>2005-07-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程实用20例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30335.html</link>
    <description><![CDATA[1.如何用ASP判断你的网站的虚拟物理路径 答：使用Mappath方法 p align=center font size=4 face=Arial b The Physical path to this virtual Website is: /b /font font color=#FF0000 size=6 face=Arial %= Server.MapPat]]></description>
    <pubDate>2005-07-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Write]]></title>
    <link>http://im.vc/web/asp/2011/0705/30334.html</link>
    <description><![CDATA[Write Write 方法将指定的字符串写到当前的 HTTP 输出。 语法 Response.Write variant 参数 variant 需要写的数据。该参数可以是任何 Visual Basic Scripting Edition 的 VARIANT 数据类型，包括字符、字符串]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp隐藏文件路径实现防盗链]]></title>
    <link>http://im.vc/web/asp/2011/0705/30333.html</link>
    <description><![CDATA[如果我们知道一个静态文件的实际路径如：http://www.xx.com/download/51Windows.pdf，如果 服务器 没有作特别的限制设置，我们就可以毫不费力的把它下载下来！当网站提供51Windows.pdf下载时，怎]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp判断函数一览及网页制作常用技]]></title>
    <link>http://im.vc/web/asp/2011/0705/30332.html</link>
    <description><![CDATA[1IsArray 函数 返回 Boolean 值指明某变量是否为数组。 语法 IsArray(varname) varname 参数可以是任意变量。 说明 如果变量是数组，IsArray 函数返回 True；否则，函数返回 False。当变量中包含有数]]></description>
    <pubDate>2005-07-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Response]]></title>
    <link>http://im.vc/web/asp/2011/0705/30331.html</link>
    <description><![CDATA[Response 对象 使用 Response 对象可以将输出发送到客户端。 语法 Response. collection | property | method 集合 cookie 指定 cookie 值。可以使用该集合设置 cookie 的值。 属性 Buffer 表明页输出是否被缓]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写安全的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30330.html</link>
    <description><![CDATA[ASP中数据库的安全是一个很严肃的问题。很多代码的编写者意识到了这类问题，并且小心翼翼地对他们认为有问题的地方做了补救，但常见的情况是要么没有穷尽所有的可疑地点，要么]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现在线压缩与解压缩]]></title>
    <link>http://im.vc/web/asp/2011/0705/30329.html</link>
    <description><![CDATA[一、问题的提出 随着互连网的发展，网站的数量以惊人的数字增加。网站的作用除了给广大网友们提供信息资讯服务外，还应该成为网友们上传与下载文件的场所。在上传与下载文件的]]></description>
    <pubDate>2005-07-15</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP.Net编写留言本]]></title>
    <link>http://im.vc/web/asp/2011/0705/30328.html</link>
    <description><![CDATA[1、用Access建造一个数据库data.mdb，建立表Guest,结构如下: ID 自动编号 标题 字符串 署名 字符串 正文 备注。 2、guest.ASPx %@ Import Namespace=System.Data % %@ Import Namespace=System.Data.OleDb % htmlhea]]></description>
    <pubDate>2005-05-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个通用的保护ASP系统的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30327.html</link>
    <description><![CDATA[研究了漏洞，我就想解决的方法，我总结一下，里面有我想的一个不成熟的想法。 是给高手看的，看看是不是一种解决已知和未知SQL注入漏洞的好方法。 这个是我想的不成熟的方法，]]></description>
    <pubDate>2005-07-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中轻松实现记录集分页]]></title>
    <link>http://im.vc/web/asp/2011/0705/30326.html</link>
    <description><![CDATA[大家都知道在Dreamwerver中可以很方便地实现记录集的分页显示，但是生成的代码的确很庞大，影响了网页的显示速度，看起来条理也不是很清晰，那么，可不可以用简单的方式实现同样]]></description>
    <pubDate>2005-07-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把ASP编写成DLL(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30325.html</link>
    <description><![CDATA[的是,我们得在我们的建立的类中,写上OnEndPage子函数,这个OnStartPage是相反的!OnStartPage是创建对象,OnEndPage是消毁对象. Public Sub OnEndPage() Set MyScriptingContext = Nothing Set MyApplication = Nothing Set M]]></description>
    <pubDate>2005-05-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP技术实现文件直接上传功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30324.html</link>
    <description><![CDATA[摘要 ： 本文首先比较了几种常见的文件上传技术，然后通过实例介绍了利用ASP技术直接实现文件上传的具体方法。 关键词 ：ASP；文件上传；二进制数据 引言 采用Web技术实现B/S（浏览]]></description>
    <pubDate>2005-05-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把ASP编写成DLL(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30323.html</link>
    <description><![CDATA[现在,无论什么时候用户访问一个带有本组件的ASP文件,IIS就会把ScriptingContext传送给我们的对象请我们使用.这个ScriptingContext包括了全部的ASP方法和属性.实现上,这使得我们有能力访问所有]]></description>
    <pubDate>2005-05-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(8)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30322.html</link>
    <description><![CDATA[技巧 22：尽可能使用 Server.Transfer 代替 Response.Redirect Response.Redirect 让浏览器请求另一个页面。此函数常用来将用户重定向到一个登录或错误页面。因为重定向强制请求新页面，结果是浏]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Cookie使用指南]]></title>
    <link>http://im.vc/web/asp/2011/0705/30321.html</link>
    <description><![CDATA[我自己曾想写一篇关于Cookie的文章，特别是Client端Script同Server端ASP通过Cookie交互的问题可能会困扰大家。其实是如果你对Cookie有深入的理解，特别是对域和路径的概念比较清晰的话，就]]></description>
    <pubDate>2005-05-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何把ASP编写成DLL(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30320.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2005-05-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30319.html</link>
    <description><![CDATA[技巧 8：迟一点获得资源，早一点释放资源 这里是一个小技巧供您参考。一般来说，最好迟一点获得资源，早一点释放资源。这适用于 COM 对象以及文件句柄和其它资源。 这种优化方法]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Flash和Asp数据库的结合应用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30318.html</link>
    <description><![CDATA[在看这个例子之前，先讲讲Flash和ASP结合的原理，其实懂一点ASP的朋友都知道ASP是基于HTML的. 其实Flash和Asp接口的原理和纯ASP文件之间交互的原理是一样的,简单地说就是页面之间的数据]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30317.html</link>
    <description><![CDATA[用ASP在WAP手机网页中添加旗帜广告 在我前面那篇文章《如何结合使用WML和ASP技术编写动态手机页面》，我介绍了如何使用ASP产生动态的WML网页。在本文中，我想进一步的介绍如何利用]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(7)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30316.html</link>
    <description><![CDATA[技巧 20：避免在循环语句中使用字符串串联 许多人在循环语句中建立一个字符串，如下所示： s = ?table? VBCrLf For Each fld in rs.Fields s = s ? th? fld.Name ?/th ? Next While Not rs.EOF s = s vbCrLf ? tr? Fo]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp模块化分页制作详解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30315.html</link>
    <description><![CDATA[模块化分页 1.查询语句块 % 取得当前文件名 temp = Split(request.ServerVariables(URL), /) fy = temp(UBound(temp)) set rs=server.createobject(adodb.recordset) if not isempty(request(page)) then pagecount=cint(request(p]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30313.html</link>
    <description><![CDATA[技巧 3：将数据和 HTML 缓存在 Web 服务器的磁盘上 有时，数据可能太多，无法都缓存在内存中。“太多”只是一个说法，这要看您想消耗多少内存，以及需缓存的项目数和检索这些项目的]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现简单的网页保护]]></title>
    <link>http://im.vc/web/asp/2011/0705/30312.html</link>
    <description><![CDATA[主要使用request对象的ServerVariables属性，通过它来获得环境变量的值。使用的语法为：Request.ServerVariables(variable)，“variable”表示环境变量的名称，如服务器主机名称、Web服务器软件名等]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30311.html</link>
    <description><![CDATA[ASP计数器设计详解 Active Server Pager(动态服务器主页，简称ASP)，通过读写服务器的文件，结合script语言（VBscript或Jscript）和html码可以方便地实现页面计数器功能。现流行的ASP教材和网络]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(9)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30310.html</link>
    <description><![CDATA[技巧 28：阅读资源链接 下面是一些与性能有关的出色的资源链接。如果您想了解有关信息，请阅读 Developing Scalable Web Applications。 资源 优化 ASP 脚本 优化 IIS ADO 和 SQL Server ASP 组件和线程]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用SQL语句操作数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30309.html</link>
    <description><![CDATA[用ASP操作数据库时，很多人都使用记录集，但我觉得用SQL语句更好些，于是就写了这篇文章，希望对你有帮助。 % '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '以下段为连接数据]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30308.html</link>
    <description><![CDATA[循序渐进学留言薄 本文以Active Server Pages 为中心，向你全面展示制作的过程，并使用大量的例子循序渐进地为大家进行讲解和演示，让你在不断的理论和实践之中更轻松地跨入ASP的大门]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个采集入库生成本地文件的几个FUCTION]]></title>
    <link>http://im.vc/web/asp/2011/0705/30307.html</link>
    <description><![CDATA['***************************************************************** 'function '作用 ：利用流保存文件 '参数 ：from（远程文件地址），tofile（保存文件位置） '********************************************************]]></description>
    <pubDate>2005-05-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP小偷(远程数据获取)程序的入门教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30306.html</link>
    <description><![CDATA[这里所说的“小偷”指的是在ASP中运用XML中的xmlhttp组件提供的强大功能，把远程网站上的数据（图片，网页及其他文件）抓取到本地，经过各种处理后显示到页面上或者存储进数据库的]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(7)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30305.html</link>
    <description><![CDATA[使用ASP、VB和XML建立运行于互联网上的应用程序(1) 在个人电脑上使用单机版应用软件的时代很快就要过去了，现在大部分的应用程序都开发出网络版或大都需要共享网络上丰富的数据资]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30304.html</link>
    <description><![CDATA[技巧 13：避免重新确定数组的维数 应尽量避免 Redim 数组。就性能而言，如果计算机的物理内存大小有限，最好将数组的初始维数设置为其最不利的情况 - 或将维数设置为其最佳的情况，]]></description>
    <pubDate>2005-05-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30303.html</link>
    <description><![CDATA[技巧 5：不要将数据库连接缓存在 Application 或 Session 对象中 缓存 ADO 连接通常是很糟糕的策略。如果一个 Connection 对象存储在 Application 对象中，并在所有的页面中使用，那么所有页面将]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30302.html</link>
    <description><![CDATA[用ASP开发一个在线考试程序 本文所介绍的应用程序是以ASP编程的初学者为读者的。虽然这个例子非常简单，但是它对于那些试图在线对他们的雇员、学生或客户进行考试的组织是非常有]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则]]></title>
    <link>http://im.vc/web/asp/2011/0705/30301.html</link>
    <description><![CDATA[引言 性能是一个特征。您必须预先设计性能，否则您以后就得重写应用程序。就是说，有哪些好的策略可使 Active Server Pages (ASP) 应用程序性能达到最佳？ 本文介绍了优化 ASP 应用程序和]]></description>
    <pubDate>2005-05-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30300.html</link>
    <description><![CDATA[用ASP构建你的网站新闻发布 更新每天新闻内容，对Webmaster们来说是一件很头痛的事，首先，收集了大量的新闻资料后，还必须制作大量的网页，每天大大小小的国际新闻，国内新闻，Ｉ]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30299.html</link>
    <description><![CDATA[引言 性能是一个特征。您必须预先设计性能，否则您以后就得重写应用程序。就是说，有哪些好的策略可使 Active Server Pages (ASP) 应用程序性能达到最佳？ 本文介绍了优化 ASP 应用程序和]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP建立站内搜索]]></title>
    <link>http://im.vc/web/asp/2011/0705/30298.html</link>
    <description><![CDATA[假如你拥有一个庞大的网站，内容又多，那么来访者往往很难找到自己所需要的东东，这时候你就需要一个站内搜索来帮助来访者更快的找到索要的资料了！现在你就可以用ASP轻易的实]]></description>
    <pubDate>2005-06-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-实战ASP(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30297.html</link>
    <description><![CDATA[使用WML和ASP编写动态手机页面 ASP与WAP结合能够生成丰富的动态的WML网页，可以给WAP手机带来许多有趣的内容。那么如何使他们两者有机的结合来生成动态网页呢？在本文中，我就想介绍]]></description>
    <pubDate>2005-05-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[微软建议的ASP性能优化28条守则(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30296.html</link>
    <description><![CDATA[技巧 16：如果页面需要很长时间才能完成，那么执行前使用 Response.IsClientConnected 如果用户性急，他们可能会在您开始执行他们的请求之前，就会放弃 ASP 页面。如果他们单击刷新或移到]]></description>
    <pubDate>2005-05-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中数据库文件调用的捷径]]></title>
    <link>http://im.vc/web/asp/2011/0705/30295.html</link>
    <description><![CDATA[引言 本文针对ASP程序设计中最基础、也是最关键的部分数据库文件的调用进行说明，同时谈谈ASP程序设计中数据库文件调用的一些技巧。 ASP简介 ASP（Active Server Pages）是微软于1996年推]]></description>
    <pubDate>2005-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30294.html</link>
    <description><![CDATA[ASP对象 ASP内建对象Request 从本篇开始作者从 ASP 内建对象着手，为大家详细剖析 ASP 的六个内建对象和各种组件的特性和方法。 在正式开始学习 ASP 的内建对象和组件之前，先让我们来认]]></description>
    <pubDate>2005-04-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30293.html</link>
    <description><![CDATA[ASP对象 深入研究Application和Session对象(2) 在本例中，用application(online)变量记录已经登录社区的在线人数，因为一旦有用户访问服务器而不管用户是否登录，都会产生OnStart事件，所以不]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中获取客户端MAC地址的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30292.html</link>
    <description><![CDATA[本程序属于一种特别的方法。使用范围比较有限，而且有一定的危险性。借鉴了ASP后门里的一些方法。下面是程序代码。 ＜% dim remoteaddr if Request.ServerVariables(HTTP_X_FORWARDED_FOR)=empty the]]></description>
    <pubDate>2005-05-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP基础(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30291.html</link>
    <description><![CDATA[ASP学习前准备 对ASP有了一个大概的了解之后就可以开始着手做一些学习前的准备了。 HTML语言 ASP以HTML为基础，主体还是HTML代码，只是在需要ASP动态产生的地方加入ASP代码。ASP的最终显]]></description>
    <pubDate>2005-04-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30290.html</link>
    <description><![CDATA[ASP对象 深入研究Application和Session对象(1) 用ASP编写虚拟社区、网上购物等程序时，Application和Session对象具有举足轻重的作用，能够灵活合理地运用这两个对象是提高程序质量的关键。下]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:End]]></title>
    <link>http://im.vc/web/asp/2011/0705/30289.html</link>
    <description><![CDATA[End End 方法使 Web 服务器停止处理脚本并返回当前结果。文件中剩余的内容将不被处理。 语法 Response.End 注释 如果 Response.Buffer 已设置为 TRUE，则调用 Response.End 将缓冲输出。如果不希望]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP基础(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30288.html</link>
    <description><![CDATA[ASP基础 VBScript及表单 一、什么是VBScript？ VBScript是Microsoft Visual Basic Scripting Edition的简称，你可以把它当作是Visual Basic的一个子集，但是这仅仅是从语法上来说的，正如JavaScript和Java的关]]></description>
    <pubDate>2005-04-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30287.html</link>
    <description><![CDATA[ASP服务器组件 ASP常用组件 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等。 上两篇中作者给大家]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Form]]></title>
    <link>http://im.vc/web/asp/2011/0705/30286.html</link>
    <description><![CDATA[Form Form 集合通过使用 POST 方法的表格检索邮送到 HTTP 请求正文中的表格元素的值。 语法 Request.Form( element ) [ ( index ) | .Count ] 参数 element 指定集合要检索的表格元素的名称。 index 可选参]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30285.html</link>
    <description><![CDATA[ASP对象 ASP内建对象Request和Respones(1) Web源于静态文本，现在很多站点几乎还是采用这种方式。静态文本的缺点就是维护难(文件数目多)、查询难、修改难。虽然可以采用FrontPage对站点进行]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30284.html</link>
    <description><![CDATA[ASP服务器组件 浏览器性能组件 对于ASP的扩展组件，有些大家已耳熟能详，有些则还陌生的很，写这篇文章的的意图无非想抛砖引玉，在各位对ASP几大对象已烂熟于心时，不妨玩玩一些]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:QueryString]]></title>
    <link>http://im.vc/web/asp/2011/0705/30283.html</link>
    <description><![CDATA[QueryString QueryString 集合检索 HTTP 查询字符串中变量的值。HTTP 查询字符串由问号 (?) 后的值指定。几个不同的进程都可以生成查询字符串。如，anchor 标记 A HREF= example?string=this is a sampl]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30282.html</link>
    <description><![CDATA[ASP服务器组件 ASP中实用的广告交替组件 (一).广告交替组件的使用方法和具体属性： 1).GetAdvertisement方法 在这里Server.CreateObject方法用于广告交替的例子:Set ad=Server.CreateObject(MSWC.AdTotato]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30281.html</link>
    <description><![CDATA[ASP服务器组件 细说ASP中Counters 组件(1) 概述 Counter 组件创建一个可创建、存储、增长和检索任何数量的独立计数器的 Counters 对象。 计数器是一个包含整数的持续值。可以使用 Counters 对]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:CacheControl]]></title>
    <link>http://im.vc/web/asp/2011/0705/30280.html</link>
    <description><![CDATA[CacheControl CacheControl 属性忽略 Private 默认值。当你设置其属性为 Public 时, 代理服务器可以缓冲由 ASP 产生的输出。 语法 Response.CacheControl [ = Cache Control Header ] 参数 Cache control Header 缓冲存]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP基础(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30279.html</link>
    <description><![CDATA[ASP基础 ASP数据类型 ASP只有一种数据类型那就是variant 。它是一种特殊的数据类型能够根据它的使用表示很多不同种类的信息。因为它是ASP中唯一的数据类型，它也是ASP中所有函数返回]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30278.html</link>
    <description><![CDATA[ASP服务器组件 Ad Rotator 组件参考 Ad Rotator组件创建一个Ad Rotator对象，该对象在Web页上自动轮换显示广告图像。当用户每次打开或重新加载Web页时，Ad Rotator组件将根据在Rotator Schedule文件]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:ContentType]]></title>
    <link>http://im.vc/web/asp/2011/0705/30277.html</link>
    <description><![CDATA[ContentType ContentType 属性指定响应的 HTTP 内容类型。如果未指定 ContentType ，默认为 text/HTML。 语法 Response.ContentType [ = ContentType ] 参数 ContentType 描述内容类型的字符串。该字符串通常被格]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30276.html</link>
    <description><![CDATA[ASP对象 ASP内建对象Request和Respones(2) 一、Asp的基本对象 Asp(Active Server Page)是一种类似于VB的面向对象的程序语言。在这里并不想详述对象等一些基本概念，而是直接介绍其语言特性，以便]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(7)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30275.html</link>
    <description><![CDATA[ASP服务器组件 ASP服务器组件编程心得 使用ASP编程的一大优点是可以使用众多的服务器组件（ActiveX Server Components)。这些组件提供诸如广告轮显（Ad Rotator）、浏览器兼容（Browser Capabili]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:BinaryRead]]></title>
    <link>http://im.vc/web/asp/2011/0705/30274.html</link>
    <description><![CDATA[BinaryRead BinaryRead 方法获取作为 POST 请求的一部分而从客户端传送到服务器的数据。此方法获取来自客户端的数据并将其储存在 SafeArray 中。 SafeArray 是一个数组，其中包含维数和边界信]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP基础(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30273.html</link>
    <description><![CDATA[ASP基础 ASP概述 一、什么是ASP？ ASP是Active Server Pages的简称，它是一种在微软公司的Web服务器IIS（Internet Infomation Server）上开发交互网页的新技术。微软公司最初在IIS3.0版上使用它以取代]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（四）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30272.html</link>
    <description><![CDATA[使用ServerVariables集合 当讨论Request对象内容时，要研究的集合之一就是ServerVariables集合。这个集合包含了两种值的结合体，一种是随同页面请求从客户端发送到服务器的HTTP报头中的值，]]></description>
    <pubDate>2005-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Charset]]></title>
    <link>http://im.vc/web/asp/2011/0705/30271.html</link>
    <description><![CDATA[Charset Charset 属性将字符集名称（如 ISO-LATIN-7）附加到 Response 对象中 content-type 标题的后面。 语法 Response.Charset ( CharsetName ) 参数 CharsetName 指定该网页的字符集的字符串。字符集的名称将]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP服务器组件(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30270.html</link>
    <description><![CDATA[ASP服务器组件 细说ASP中Counters 组件(2) Increment方法 Increment 方法根据计数器的名称，将该计数器的值加 1，并返回计数器的新值。若计数器不存在，此方法将创建该计数器并将其值设为]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（六）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30269.html</link>
    <description><![CDATA[第3章ASP应用程序与会话 在前面的章节中介绍了ASP提供的访问一个客户请求和产生响应的方法，本章将讨论ASP的另两个对象。就是Application和Session对象。这两个对象不是直接地与请求和]]></description>
    <pubDate>2005-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:ServerVariables]]></title>
    <link>http://im.vc/web/asp/2011/0705/30268.html</link>
    <description><![CDATA[ServerVariables ServerVariables 集合检索预定的环境变量。 语法 Request.ServerVariables ( server environment variable ) 参数 服务器环境变量 指定要检索的服务器环境变量名。可以使用下面列出的值。 变]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP对象(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30267.html</link>
    <description><![CDATA[ASP对象 全面解析Server对象(1) Server对象提供对服务器上访问的方法和属性.大多数方法和属性是作为实用程序的功能提供的。 语法: Server.property|method 属性 （property） Server对象只有一个属]]></description>
    <pubDate>2005-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（五）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30266.html</link>
    <description><![CDATA[1.操作HTTP报头 我们已经在几处见到ASP如何创建或修改在响应页面请示时被发送到客户的HTTP报头。在Response对象中有几个属性和方法可帮助我们做到一点。下面是一些报头方法： · 控制]]></description>
    <pubDate>2005-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:ExpiresAbsolute]]></title>
    <link>http://im.vc/web/asp/2011/0705/30265.html</link>
    <description><![CDATA[ExpiresAbsolute ExpiresAbsolute 属性指定缓存于浏览器中的页的到期日期和时间。在未到期之前，若用户返回到该页，该缓存的页就显示。如果未指定时间，该主页在当天午夜到期。如果未指]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Buffer]]></title>
    <link>http://im.vc/web/asp/2011/0705/30264.html</link>
    <description><![CDATA[Buffer Buffer 属性指示是否缓冲页输出。当缓冲页输出时，只有当前页的所有服务器脚本处理完毕或者调用了 Flush 或 End 方法后，服务器才将响应发送给客户端。 服务器将输出发送给客户]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP VBScript 函数速查表]]></title>
    <link>http://im.vc/web/asp/2011/0705/30263.html</link>
    <description><![CDATA[VBScript 函数 功能说明 例子 Abs （数值） 绝对值。一个数字的绝对值是它的正值。空字符串 (null) 的绝对值，也是空字符串。未初始化的变数，其绝对为 0 例子：ABS(-2000) 结果：2000 Arra]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个不太让人讨厌的自动弹出窗口]]></title>
    <link>http://im.vc/web/asp/2011/0705/30262.html</link>
    <description><![CDATA[自动弹出窗口是一个让人讨厌的事情，为什么我们用它来显示我们的调查表呢？ 用弹出窗口来显示调查表，被认为是达到我们收集访问用户信息的最方便快捷的方法。当制作出第一份调]]></description>
    <pubDate>2005-04-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:PICS]]></title>
    <link>http://im.vc/web/asp/2011/0705/30261.html</link>
    <description><![CDATA[PICS PICS 属性向响应标题的 pics 标签字段添加值。 语法 Response.PICS ( PICSLabel ) 参数 PICSLabel 经适当格式化的 PICS 标签字符串。由 PICSLabel 指定的值将被添加到响应标题中的 PICS 标签字段之]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建一个ASP通用分页类(二)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30260.html</link>
    <description><![CDATA[我们继续接上期 在页面里通过调用ShowPage()的方法显示出来，ShowPage可以在GetRS以后的任意位置调用，也可以调用多次 Public Sub ShowPage() Dim str_tmp int_totalRecord=XD_RS.RecordCount If int_totalRecord]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第五天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30259.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作1（写入记录） 数据库的基本操作无非是：查询记录，写入记录，删除记录，修改记录。今天我们先学习写入记录。 先建立一个表单： form name=form1]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Redirect]]></title>
    <link>http://im.vc/web/asp/2011/0705/30258.html</link>
    <description><![CDATA[Redirect Redirect 方法使浏览器尝试连接到其他 URL。 语法 Response.Redirect URL 参数 URL 浏览器重定向到的统一资源定位符 (URL)。 注释 任何在页中显式设置的响应正文内容都将被忽略。然而，]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[创建一个ASP通用分页类(一)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30257.html</link>
    <description><![CDATA[从开始学习到使用ASP到现在也写了不少程序了，最令人头痛的是写数据分页，每次都是由于几个变量名或几个参数的不同，因而需要每次都写哪一段冗长而又繁杂的分页代码，代码长了]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第八天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30256.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作4（修改记录） 先来看代码： % set conn=server.createobject(adodb.connection) conn.open driver={microsoft Access driver (*.mdb)};dbq=server.mappath(test.mdb)//这不是以前的一个]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Flush]]></title>
    <link>http://im.vc/web/asp/2011/0705/30255.html</link>
    <description><![CDATA[Flush Flush 方法立即发送缓冲区中的输出。如果未将 Response.Buffer 设置为 TRUE，则该方法将导致运行时错误。 语法 Response.Flush 注释 如果在 ASP 页上调用 Flush 方法，则服务器将响应该页上保]]></description>
    <pubDate>2005-05-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP生成HTML文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30254.html</link>
    <description><![CDATA[使用ASP生成HTML文件 共有两个页面index.htm是首页.程序比较简单，主要是用了ASP里的文件操作对象。 !--index.htm---------------------- html head titleUntitled Document/title meta http-equiv=Content-Type conte]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第九天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30253.html</link>
    <description><![CDATA[学习目的：基本的SESSION组件，总结response，request组件。 首先，有会员系统的任何程序都会用到检测是不是用户已经登陆这个步骤。这就用到了SESSION组件，下面我们 看一个代码来说明。]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:AddHeader]]></title>
    <link>http://im.vc/web/asp/2011/0705/30252.html</link>
    <description><![CDATA[AddHeader AddHeader 方法用指定的值添加 HTML 标题。该方法常常向响应添加新的 HTTP 标题。它并不替代现有的同名标题。一旦标题被添加，将不能删除。 此方法仅供高级用户使用。若其他]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常用Email组件发送函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30251.html</link>
    <description><![CDATA[给大家看一下常用Email组件发送函数 % sub Jmail(email) Dim JMail,SendMail Set JMail=Server.CreateObject(JMail.SMTPMail) JMail.Logging=True JMail.Charset=gb2312 JMail.ContentType = text/html JMail.ServerAddress=SMTPServer J]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第四天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30250.html</link>
    <description><![CDATA[学习目的：掌握Access数据库的连接和读取记录 今天要学习的内容有一点枯燥，但是很重要。在这里大家不需要知道命令具体的运行情况，外面的很多书籍之所以不适合入门就是因为介绍]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:AppendToLog]]></title>
    <link>http://im.vc/web/asp/2011/0705/30249.html</link>
    <description><![CDATA[AppendToLog AppendToLog 方法将字符串添加到 Web 服务器日志条目的末尾。可以在脚本的同一部分中多次调用该方法。每次调用该方法时，都会在当前条目中添加指定的字符串。 语法 Response]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp提高首页性能的一个技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/30248.html</link>
    <description><![CDATA[简单介绍: 一般一个网站的首页访问量是最大的,如果您的网站的首页打开的非常缓慢,您的客户将会陆续离开你的网站.通常我们把需要经过复杂运算或者查询数据库得出的数据缓存起来]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第六天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30247.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作2（查询记录） 在第四天中我们有这样一个程序： % set conn=server.createobject(adodb.connection) conn.open driver={microsoft Access driver (*.mdb)};dbq=server.mappath(examp]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:BinaryWrite]]></title>
    <link>http://im.vc/web/asp/2011/0705/30246.html</link>
    <description><![CDATA[BinaryWrite BinaryWrite 方法不经任何字符转换就将指定的信息写到 HTTP 输出。该方法用于写非字符串信息（如客户端应用程序所需的二进制数据）。 语法 Response.BinaryWrite data 参数 data 写到]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP制作类似安装向导的页面?]]></title>
    <link>http://im.vc/web/asp/2011/0705/30245.html</link>
    <description><![CDATA[如何使用ASP制作类似安装向导的页面? 面临的主要问题何在： 1。界面和一个Windows Wizard完全一样，有Next和Back按钮 2。用户可以使用Back按钮回到以前的任何一步，并且能够改变以前任何]]></description>
    <pubDate>2005-04-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第一天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30244.html</link>
    <description><![CDATA[学习目的：安装调试ASP的环境，写出第一个HELLO WORLD程序。 首先我们来安装WINSOWS2000自带的IIS作为服务器。（WINSOWS98的PWS也可以，但是不推荐，安装大致和2000相同，这里就不详细说了。]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Clear]]></title>
    <link>http://im.vc/web/asp/2011/0705/30243.html</link>
    <description><![CDATA[Clear Clear 方法删除缓冲区中的所有 HTML 输出。但 Clear 方法只删除响应正文而不删除响应标题。可以用该方法处理错误情况。请注意，如果未将 Response.Buffer 设置为 TRUE，则该方法将导致]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个拷贝整个文件夹(包括子文件夹)的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30242.html</link>
    <description><![CDATA[需要引用命名空间： using System.IO; /// summary /// 拷贝文件夹(包括子文件夹)到指定文件夹下, 源文件夹和目标文件夹均需绝对路径 . 格式: CopyFolder(源文件夹,目标文件夹); /// /summary /// par]]></description>
    <pubDate>2005-04-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第三天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30241.html</link>
    <description><![CDATA[学习目的：学会ACCEES数据库的使用，并建立一个将来要用的留言簿数据库。 首先，大家要安装Office里面的ACCEES（我的演示是OFFICE XP版本），安装过程这里就不说了，安装好以后会出现下]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:ClientCertificate]]></title>
    <link>http://im.vc/web/asp/2011/0705/30240.html</link>
    <description><![CDATA[ClientCertificate ClientCertificate 集合从 Web 浏览器发布请求中获取验证字段（由 X.509 标准指定）。 如果 Web 浏览器使用 SSL3.0/PCT1 协议（也就是说，它使用以 https:// 开头的 URL，而不是 http:]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈ASP中Request对象获取客户端数据的顺序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30239.html</link>
    <description><![CDATA[在ASP中Request对象是获取客户端提交数据的一个很重要的对象，大家对它也是非常熟悉了。 虽然如此，还是经常有人问我下面的几种写法有什么不同，到底应该怎么写？ strMessage = Reque]]></description>
    <pubDate>2005-04-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第二天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30238.html</link>
    <description><![CDATA[学习目的：学会用表单元素向服务器传送变量，然后显示变量在客户端的浏览器。 首先，让我们来看一下DREAMWEAVER的表单元素。 表单元素要放在一个表单域里面，建立一个表单域。然后]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp Object 之:Expires]]></title>
    <link>http://im.vc/web/asp/2011/0705/30237.html</link>
    <description><![CDATA[Expires Expires 属性指定了在浏览器上缓冲存储的页距过期还有多少时间。如果用户在某个页过期之前又回到此页，就会显示缓冲区中的版本。 语法 Response.Expires [ = number ] 参数 number 距过]]></description>
    <pubDate>2005-05-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[远程注册自己的组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30236.html</link>
    <description><![CDATA[把ASP程序作成dll很多好处，但是有一点，该dll必须注册才能在asp中调用。如果是自己的服务器那还好，但如果是租用的虚拟服务器，就没办法使用了。 怎样在远程主机上注册我们的dl]]></description>
    <pubDate>2005-04-03</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第十天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30235.html</link>
    <description><![CDATA[学习目的：分页技术，总结 今天最后一天我们学习一下ASP里面稍微难一点地分页技术，毕竟当我们有N条记录的时候我们不可能把所有记录显示在一个页面里面吧。 % exec=select * from te]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之一：网页开发利器：高效易学的ASP]]></title>
    <link>http://im.vc/web/asp/2011/0705/30234.html</link>
    <description><![CDATA[诸起看官莫怪，起这么一个不伦不类的名字，而不是“ASP初步（入门、基础）”，原因有二：一怕过于俗套，但更重要的是怕众多的徘徊在ASP门槛之外的主页制作群连内容都不曾谋面就]]></description>
    <pubDate>2005-04-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第七天]]></title>
    <link>http://im.vc/web/asp/2011/0705/30233.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作3（删除记录） 开门见山，大家直接看程序。 exec=delete * from guestbook where id=request.form(id) 上面这句话完成了删除记录的操作，不过锁定记录用了记录]]></description>
    <pubDate>2005-04-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[我在桌面上删帖子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30232.html</link>
    <description><![CDATA['del.VBs option explicit dim message,result dim title,text1,text2 message=请输入要删除帖子的ID title=帖子删除 text1=你取消了操作！ result =inputbox(message,title,请输入要删除帖子的ID) if result = then W]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之六：ASP与数据库（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30231.html</link>
    <description><![CDATA[在前面几讲中，我们已经学习了ASP的基本内容，灵活使用这些知识，你已经可以使用ASP建立一个Web站点了。但一般来说，一个真正的、完整的站点是离不开 数据库 的，因为少量的数据]]></description>
    <pubDate>2005-04-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据库简单操作教程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30230.html</link>
    <description><![CDATA[1 .数据库连接(用来单独编制连接文件conn.ASP) % Set conn = Server.CreateObject(ADODB.Connection) conn.Open DRIVER={Microsoft Access Driver (*.mdb)}; DBQ= Server.MapPath(\bbs\db1\user.mdb) % (用来连接bbs\db1\目录下的]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩OUTLOOK 2000组件放送]]></title>
    <link>http://im.vc/web/asp/2011/0705/30229.html</link>
    <description><![CDATA[现在客户端装OutLook 2000 1.收件箱 html head META HTTP-EQUIV=Content-Type CONTENT=text/html; CHARSET=big5 link rel=stylesheet type=text/css href=css\ACM.css /head body scroll=no oncontextmenu=return false br font size='5']]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之十：自己动手编写组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30228.html</link>
    <description><![CDATA[在前面的内容中，我们学习了 组件 的使用，网上的 组件 虽然不少，但往往小小的一个 组件 就要你掏出美元来，而国产的 组件 又太少，想掏点人民币还没地儿好掏，算了，您干脆自]]></description>
    <pubDate>2005-04-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ＡＳＰ中用集合成批操作数据库(一)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30227.html</link>
    <description><![CDATA[一、ＨＴＭＬ的集合属性 首先，让我们来熟悉一下ＨＴＭＬ的集合属性。在表单（FORM）数据或查询（Query）参数中，当提交的多个参数采用同一个名称时，这些参数值将构成一个集合，]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[取得浏览者的离开时间]]></title>
    <link>http://im.vc/web/asp/2011/0705/30226.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=VBScript RUNAT=Server sub Application_OnStart Application(conn)=dsn=;uid=;pwd= end sub Sub session_onstart session(ip)=Request.ServerVariables(REMOTE_ADDR) session(stime)=now() application.Lock if application(click]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之三：Application对象与Session对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30225.html</link>
    <description><![CDATA[上一讲中，我们学习了Request对象的Form数据集合、QueryString数据集合和ServerVariables数据集合。在继续下面的学习之前，建议你先轻松一下，因为接下来要介绍的Application对象相对比较抽象]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ＡＳＰ中用集合成批操作数据库(二)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30224.html</link>
    <description><![CDATA[二、ＨＴＭＬ的集合属性的应用 下面我们结合一个实际的例子，讨论一下如何在ＡＳＰ页面中利用ＨＴＭＬ的集合属性来成批操作数据库。现在我们有一个记录客户电子信箱的ＡＣＣＥ]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[树型结构在ASP中的简单解决]]></title>
    <link>http://im.vc/web/asp/2011/0705/30223.html</link>
    <description><![CDATA[树型结构在我们应用程序中还是很常见的，比如文件目录，BBS，权限设置，部门设置等。这些数 据信息都采用层次型结构，而在我们现在的关系型数据库中很难清淅表达。那么要在程序]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 函数语法速查表]]></title>
    <link>http://im.vc/web/asp/2011/0705/30222.html</link>
    <description><![CDATA[Abs （数值） 绝对值。一个数字的绝对值是它的正值。空字符串 (null) 的绝对值，也是空字符串。未初始化的变数，其绝对为 0 例子：ABS(-2000) 结果：2000 Array （以逗点分隔的数组元素）]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之四：ASP内置组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30221.html</link>
    <description><![CDATA[前三讲中，我们主要介绍了ASP提供的四大内置对象： Response对象：向 浏览器 发送信息。 Request对象：访问从 浏览器 发送到 服务器 的信息（如获取表单数据）。 Session对象：存储、读取]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WINDOWS2000服务器账号登陆身份验证]]></title>
    <link>http://im.vc/web/asp/2011/0705/30220.html</link>
    <description><![CDATA[% userflag=trim(request(userflag)) oldPwd=trim(request(oldPwd)) newPwd=trim(request(newPwd)) '修改内部网和邮箱的密码 adsPath = LDAP://file/cn= userflag ,cn=users,dc=yulong,dc=com Set oo = GetObject(LDAP:) on error resu]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于Win2K3中利用ASP上传文件的问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30219.html</link>
    <description><![CDATA[一般情况下，在Win2k3中用ASP上传文件是不会直接成功的，因为系统中作了一项限制，可能通过手工修改一下其设置,方法如下： 在服务里关闭iis admin service服务 找到Windows\system32\inesrv\下]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之二：读取通过表单发送的数据]]></title>
    <link>http://im.vc/web/asp/2011/0705/30218.html</link>
    <description><![CDATA[学习ASP，最重要的就是要掌握ASP内置的六大对象。事实上，在上一讲中，我们已经了解了Response对象（是吗？有没有搞错！），及Response对象中最常用的Write方法、Redirect方法和Expires属性]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ip限制函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30217.html</link>
    <description><![CDATA[大家如果还有好的建议算法，就联系我！！：） '****************************** 'Function CheckIp(cInput_Ip,cBound_Ip) 'Created by QQdao, qqdao@263.net 2001/11/28 '说明：首先需要根据;号循环，然后判断是否含有]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP访问SQL Server内置对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30216.html</link>
    <description><![CDATA[平常我们只听说过ADO等一类ASP对象，但在ASP中还有个鲜为人知的专门SQL Server的ASP访问对象,它就是SQLOLE.SQLServer对象。SQLOLE.SQLServer可以直接访问SQL Server的系统属性。以Set oSQLServer = Creat]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之七：ASP与数据库（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30215.html</link>
    <description><![CDATA[在上一讲中，我们学习了如何与 数据库 建立连接和从 数据库 中检索数据，今天的内容是如何向 数据库 中添加新数据、修改和删除 数据库 中的数据。 一、 向 数据库 中添加新数据]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的SQL语句执行器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30214.html</link>
    <description><![CDATA[大至分为三个文件：ljmdb.ASP(连接库文件)、entice.asp(sql语句执行主界面)、entice2.asp(select记录集) ====================================ljmdb.asp % set conndb=server.createobject(ADODB.CONNECTION) constr=provider=m]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不通过数据源完全控制MDB数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30213.html</link>
    <description><![CDATA[% ' BEGIN USER CONSTANTS ' To just use a DSN, the format is shown on the next line: 'Const DSN_NAME = DSN=ASP101email ' Two other samples I used it with. Left in as syntax examples for DSN-less connections 'Const DSN_NAME = DBQ=C:\InetPu]]></description>
    <pubDate>2005-04-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之九：ASP与数据库（四）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30212.html</link>
    <description><![CDATA[在本讲中，我们将主要介绍如何使用参数及 存储过程 。 一、 使用Command对象和Parameter对象传递参数 本讲将主要使用Microsoft SQL Server7.0 数据库 ，先建立一个连接文件AdoSQL7.ASP备用，以后]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[认识和优化 connection 对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30211.html</link>
    <description><![CDATA[在ASP的数据库编程中，connection对象是我们不可能离开的一个对象，在对数据库进行任何的操作，比如更新记录，插入，删除，检索等，都必须借助于connection对象来完成。形象地来说，]]></description>
    <pubDate>2004-06-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之五：ASP组件（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30210.html</link>
    <description><![CDATA[在上一讲中，我们学习了如何创建 组件 ，使用了 浏览器 能力 组件 、File Access 组件 、AD Rotator 组件 和Content Linking 组件 ，也知道了Server对象的CreateObject方法、MapPath方法和HTMLEncode方法]]></description>
    <pubDate>2005-04-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之十一：结束语——给您一些建议]]></title>
    <link>http://im.vc/web/asp/2011/0705/30209.html</link>
    <description><![CDATA[一、 有关ASP页面及代码的优化 1．尽量用!--#include file指令替代框架结构。 以前比较流行的一种设计模式就是使用一个框架(Frame)放置网站的目录结构，在另外的框架中显示内容，这样的]]></description>
    <pubDate>2005-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[浅谈 ASP 程序的编程与优化]]></title>
    <link>http://im.vc/web/asp/2011/0705/30208.html</link>
    <description><![CDATA[ASP(ActiveServerPage)是 Microsoft 公司推出的基于 PWS (PersonalWebServer) IIS (InternetInformationServer)平台的、基于 ISAPI (InternetServiceAPI) 原理的动态网页开发技术，目前日趋成熟完善。在这里仅就代码优]]></description>
    <pubDate>2004-06-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP讲座之八：ASP与数据库（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30207.html</link>
    <description><![CDATA[在上两讲中，我们讲解了ASP中 数据库 的基本使用，今天将介绍几种非常实用的技术。 一、 分页技术 前面我们介绍了如何检索数据并输出到 浏览器 端，对少量数据而言，那样简单的输]]></description>
    <pubDate>2005-04-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实用大全-ASP基础(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30206.html</link>
    <description><![CDATA[ASP基础 ASP基本语法 建立ASP程序 ASP程序是扩展名为.asp的文本文件，其中包括文字，HTML语句，ASP命令及其他脚本语言。 ASP命令必须放在＜%与%＞之间 程序注释 为了养成良好的编程风]]></description>
    <pubDate>2005-04-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化Web数据库页面]]></title>
    <link>http://im.vc/web/asp/2011/0705/30205.html</link>
    <description><![CDATA[随着互联网的发展，Web数据库的应用越来越多，用户对访问Web数据库页面的速度也要求越来越高。访问Web页面的速度的快慢取决于网络的速度、Web页面所在服务器的性能以及Web页面本身]]></description>
    <pubDate>2004-06-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp论坛在线人数统计研究]]></title>
    <link>http://im.vc/web/asp/2011/0705/30204.html</link>
    <description><![CDATA[最近用ASP做了一个小论坛，客户又要求要统计在线人数，所以花了点时间写一个在线统计访会员的功能。写的过程中也查看了许多文档。自我感觉用的方法能比较准确的统计在线人数。]]></description>
    <pubDate>2004-07-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[xmlhttp 抓取网页内容]]></title>
    <link>http://im.vc/web/asp/2011/0705/30203.html</link>
    <description><![CDATA[% On Error Resume Next Server.ScriptTimeOut=9999999 Function getHTTPPage(Path) t = GetBody(Path) getHTTPPage=BytesToBstr(t,GB2312) End function Function bytes2BSTR(vIn) strReturn = For j = 1 To LenB(vIn) ThisCharCode = AscB(MidB(vIn,j,1]]></description>
    <pubDate>2004-10-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP做象资源管理器的树形目录]]></title>
    <link>http://im.vc/web/asp/2011/0705/30202.html</link>
    <description><![CDATA[树形目录显示程序 问题描述： 在我们项目中常常会出现自关联的数据表，如果我们从整体看去，整个表就呈现为一个树形数据结构（对于复杂的情况，它可能变成一个图）。当我们对]]></description>
    <pubDate>2004-12-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用xslt对xml进行缩进格式化处理]]></title>
    <link>http://im.vc/web/asp/2011/0705/30201.html</link>
    <description><![CDATA[下面就是简单的例子，这里提供两种方法： test.htm SCRIPT //装载数据 x = ra name='net_lover'aaaaaaaaaaa/a bbbbbbbb/baaaaaaaaaaaa/abbbbbbbb/b/r var source = new ActiveXObject(MsXML2.DOMDocument); source.async = false;]]></description>
    <pubDate>2004-07-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP日期和时间函数示例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30200.html</link>
    <description><![CDATA[函数 语法 说明 示例 Now Now() 取得系统当前的日期和时间 Dim MyVar MyVar = Now '' MyVar 包含当前的日期和时间。 Date Date() 取得系统当前的日期 Dim MyDate MyDate = Date '' MyDate 包含当前系统日期。]]></description>
    <pubDate>2004-11-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造酷酷留言本]]></title>
    <link>http://im.vc/web/asp/2011/0705/30199.html</link>
    <description><![CDATA[一、读者指引 读者指引帮助你掌握本文的梗概。以免你看了大半才明白这编文章不适合你，给你造成视觉污染。 如果你正在用ASP+XML写一些程序，或者你正在学XML那就值得一看。 阅读本]]></description>
    <pubDate>2004-12-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现无刷新DropdownList联动效果]]></title>
    <link>http://im.vc/web/asp/2011/0705/30198.html</link>
    <description><![CDATA[ASP.net给我们带了了事件模型的编程机制，这使得我们将所有的任务都放在服务器上执行哪怕是一个小小变动，其实这到不是什么问题，可是有一点我们无法忍受，如果我们改变某一个输]]></description>
    <pubDate>2004-08-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP字符串函数示例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30197.html</link>
    <description><![CDATA[函数 语法 功能 Len Len(string|varname) 返回字符串内字符的数目，或是存储一变量所需的字节数。 Trim Trim(string) 将字符串前后的空格去掉 Ltrim Ltrim(string) 将字符串前面的空格去掉 Rtrim Rtrim]]></description>
    <pubDate>2004-11-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Cache技术的应用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30196.html</link>
    <description><![CDATA[ASP从发布至今已经7年了，使用ASP技术已经相当成熟，自从微软推出了ASP.NET之后就逐渐停止了对ASP版本的更新。但是由于有很多人仍然习惯使用ASP来开发网站，所以，再次我将以一个简]]></description>
    <pubDate>2004-12-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将ASP纪录集输出成n列表格的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30195.html</link>
    <description><![CDATA[前些日子有网友问：将ASP纪录集输出成n列的的表格形式显示的方法，现在写了一个，方便大家使用。 '定义变量 Dim cn,rs,Sql Sql = select CustomerID from Orders '记录总数 Dim TotalNumbe Set cn = Se]]></description>
    <pubDate>2004-09-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP转换函数示例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30194.html</link>
    <description><![CDATA[Variant变量一般会将其代表的数据子类型自动转换成合适的数据类型,但有时候,自动转换也会造成一些数据类型不匹配的错误.这时,可使用转换函数来强制转换数据的子类型. 函数 功能 A]]></description>
    <pubDate>2004-11-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[再谈SQL注入入侵动网SQL版论坛]]></title>
    <link>http://im.vc/web/asp/2011/0705/30193.html</link>
    <description><![CDATA[现在动网最新版本是7.0+SP2。应该说安全性已经是很高的了。所以从脚本本身的问题去突破它难度不小。但是我们可以从外部的一些途径间接“搞定”动网.现在IIS+ASP+SQL2000的组合是比较]]></description>
    <pubDate>2005-01-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将用户上传的文件生成缩略图的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30192.html</link>
    <description><![CDATA[具体给个例子就清楚啦。。 如下： System.Web.HttpPostedFile UpFile = UpMhtFile.PostedFile; System.IO.Stream StreamObject = UpFile.InputStream; System.IO.FileStream myStream = new System.IO.FileStream(UpFile.FileName,System.IO.F]]></description>
    <pubDate>2004-10-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶学习之认识数学函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30191.html</link>
    <description><![CDATA[在这篇ASP之数学函数里，我们将会以表格的形式，让大家了解到关于ASP中能用到的数学函数，里面包括一个数的绝对值、一个数的平方根，角度的正弦、余弦值等。 函数 语法 功能 Ab]]></description>
    <pubDate>2004-11-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写通用的ASP防SQL注入攻击程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30190.html</link>
    <description><![CDATA[SQL注入被那些菜鸟级别的所谓黑客高手玩出了滋味，发现现在大部分黑客入侵都是基于SQL注入实现的，哎，谁让这个入门容易呢，好了，不说废话了，现在我开始说如果编写通用的SQL防]]></description>
    <pubDate>2005-03-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[经典实用的基础asp程序整理]]></title>
    <link>http://im.vc/web/asp/2011/0705/30189.html</link>
    <description><![CDATA[1、关闭窗口在图片的连接上写 JavaScript:window.close(); 提交的图片连接写]]></description>
    <pubDate>2004-10-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用xmlhttp为网站增加域名查询功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30188.html</link>
    <description><![CDATA[当我们准备建立一个Web站点时，就必须向域名登记机构申请一个Internet域名，因此，我们通常希望了解自己准备使用的域名是否已经被注册，这时，可以访问NIC站点http://www.nic.net，点击]]></description>
    <pubDate>2004-11-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 编程中 20 个非常有用的例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30187.html</link>
    <description><![CDATA[1.如何用ASP判断你的网站的虚拟物理路径 答：使用Mappath方法 p align=center font size=4 face=Arial b The Physical path to this virtual Website is: /b /font font color=#FF0000 size=6 face=Arial %= Server.MapPat]]></description>
    <pubDate>2005-03-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发必备:WEB打印代码大全]]></title>
    <link>http://im.vc/web/asp/2011/0705/30186.html</link>
    <description><![CDATA[ASP开发必备:Web打印代码大全这篇文章主要介绍了如何使用ASP控制Web的各种打印效果，它能够控制纵打、横打和页面边距等。 1、控制纵打、 横打和页面的边距。 （1） script defer f]]></description>
    <pubDate>2004-10-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你用好活动字幕标记--Marquee]]></title>
    <link>http://im.vc/web/asp/2011/0705/30185.html</link>
    <description><![CDATA[活动字幕，也称为滚动看板、滚动字幕。活动字幕的使用使得整个网页更有动感，显得很有生气。现在的网站中也越来越多地使用活动字幕来加强网页的互动性。用JavaScript编程可以实现]]></description>
    <pubDate>2004-11-19</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个求最大值与最小值的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30184.html</link>
    <description><![CDATA[function max(info) arr=split(info,,) max=clng(arr(0)) for i=1 to ubound(arr) if clng(arr(i))clng(max) then max=clng(arr(i)) end if next end function function min(info) arr=split(info,,) min=clng(arr(0)) for i=1 to ubound(arr) if clng(arr]]></description>
    <pubDate>2005-03-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[新手初练:用ASP做一个域名查询系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30183.html</link>
    <description><![CDATA[开发这样一个域名查询系统其实是一件很容易的事情，只要我们能够让使用者进行查询后得出结果，看看自己输入的域名是不是被别人占用了就可以，如果没有被占用我们就可以自行去]]></description>
    <pubDate>2004-10-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[JavaScript在ASP中实现掩码文本框]]></title>
    <link>http://im.vc/web/asp/2011/0705/30182.html</link>
    <description><![CDATA[在网页中输日期、时间、IP地址等需要一定的格式限制，否则将会程序将会很难和程序沟通。 最近在做一个程序正好需要用到此方面，在网上找到过相应的程序，但用起来都非常恶，于]]></description>
    <pubDate>2004-11-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对Session和Cookie的区分与理解]]></title>
    <link>http://im.vc/web/asp/2011/0705/30181.html</link>
    <description><![CDATA[先说session 对SESSION的争论好象一直没有停止过，不过能理解SESSION的人应该占90以上。但还是讲讲，别嫌老~ 有一些人赞成用SESSION，有一些人不赞成。但这个问题到底要怎么说。不妨听听]]></description>
    <pubDate>2005-03-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP做一个域名查询系统]]></title>
    <link>http://im.vc/web/asp/2011/0705/30180.html</link>
    <description><![CDATA[开发这样一个域名查询系统其实是一件很容易的事情，只要我们能够让使用者进行查询后得出结果，看看自己输入的域名是不是被别人占用了就可以，如果没有被占用我们就可以自行去]]></description>
    <pubDate>2004-10-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[精彩:ASP遗留的二十大积习]]></title>
    <link>http://im.vc/web/asp/2011/0705/30179.html</link>
    <description><![CDATA[在技术更新的进程中, 仍然有一些人死抱着已经过了气的东西不放. 也有一些人虽然进入到新的世界, 但仍摆脱不了陈旧的习惯. 我没有用”陋习”这个词, 因为我对这个词也非常反感. 新]]></description>
    <pubDate>2004-12-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp隐藏文件路径，实现防盗链]]></title>
    <link>http://im.vc/web/asp/2011/0705/30178.html</link>
    <description><![CDATA[如果我们知道一个静态文件的实际路径如：http://www.xx.com/download/51windows.pdf，如果服务器没有作特别的限制设置，我们就可以毫不费力的把它下载下来！当网站提供51Windows.pdf下载时，怎]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的两个简单的检测外部提交函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30177.html</link>
    <description><![CDATA[本文例举了ASP的两个简单的检测外部提交函数的例子，第一个函数是ChkPost()，它可以检测用户当前所在服务器名是否存在于来源页面，第二个函数是PostCheck()，它可以通过很简单的检测]]></description>
    <pubDate>2004-10-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp写个简单的加密和解密的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30176.html</link>
    <description><![CDATA[用ASP写个简单的加密和解密的类，在这个类中简单的实现了一个加密和解密。目的是和大家分享一下。这个类的破解非常简单。看看我的注释就知道是怎么回事了。下次编写一个Java的加]]></description>
    <pubDate>2004-12-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp实现QQ在线查询]]></title>
    <link>http://im.vc/web/asp/2011/0705/30175.html</link>
    <description><![CDATA[这段程序的方法是利用XMLHTTP来读取腾讯网站的相应HTML代码获取QQ的头像，根据这个想法，我们还可以抓取很多其他网站的信息，如天气预报、新闻等等。 script language=JavaScript !-- func]]></description>
    <pubDate>2005-04-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp实现支持附件的邮件系统（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30174.html</link>
    <description><![CDATA[大家经常探讨使用ASP，而不使用其他组建能否实现文件的上传，从而开发出支持邮件附件的邮件系统，答案是可以的。请看： 以下是发送邮件的页面，邮件的帐号是员工号，假设是5位的]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用FSO按文件大小浏览文件目录并进行删除操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30173.html</link>
    <description><![CDATA[%@ Language=VBScript % %Server.ScriptTimeout=50000% HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 meta http-equiv=Content-Type content=text/html; charset=gb2312 /HEAD BODY % function JudgeParaRegular(intID) if int]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用VC++6.0制作ASP服务器控件简介]]></title>
    <link>http://im.vc/web/asp/2011/0705/30172.html</link>
    <description><![CDATA[用ASP写网页的程序员，一定对VBSript语句“Set Conn=Server.Object(‘ADODB.Connection’)”非常熟悉。该语句是利用ASP的Server对象创建了一个数据库控件，它提供了一系列的方法和属性，可以帮助我]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[服务器获得客户端时间的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30171.html</link>
    <description><![CDATA[now是获得服务器的时间吗，并不一定，只有在服务器端运行的脚本是获得服务器的时间，在客户端的则是获得客户端的 可以使用任何一个元素，比如span或者input记载服务器的时间,方法是]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30170.html</link>
    <description><![CDATA[我现在在做ASP的安装程序，这样可以方便用户的使用。我使用的InstallShield版本是InstallShield Professional—Standard Edition6.3。 我没有用过这个东东，问题如下： 问题一 通过Project Wizard-genera]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个取图片尺寸的类，支持jpg,gif,png]]></title>
    <link>http://im.vc/web/asp/2011/0705/30169.html</link>
    <description><![CDATA['I have released this source code into the public domain. You may use it 'with no strings attached. 'Just call GetImageSize with a string containing the filename, and 'it will return a user defined type 'ImageSize' (see below) 'Return values]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个不错的随机函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30168.html</link>
    <description><![CDATA[% Dim myarr For i = 0 To 100 Randomize no = Int((1000-1+1)*Rnd+1) For j = 0 To i If no myarr(j) And no Then j = j + 1 Else Exit For End If myarr(i) = no Next If i = 21 Then Exit For End If Next %]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[金额阿拉伯数字转换为中文的存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30167.html</link>
    <description><![CDATA[Create Procedure AtoC @ChangeMoney Money as Set Nocount ON Declare @String1 char(20) Declare @String2 char(30) Declare @String4 Varchar(100) Declare @String3 Varchar(100) --从原A值中取出的值 Declare @i int --循环变量 Declare @J I]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查字符串strSource是否为big或big5码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30166.html</link>
    <description><![CDATA[Public Function CheckBIG(strSource As String) As Boolean Dim idx As Long Dim ByteTemp() As Byte CheckBIG = False For idx = 1 To Len(strSource) ByteTemp = StrConv(Mid(strSource, idx, 1), VBFromUnicode) If UBound(ByteTemp) 0 Then If (ByteTemp(]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp实现支持附件的邮件系统（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30165.html</link>
    <description><![CDATA[这次讲到的是处理发送的页面，前一部分是得到发送者ip地址和mac地址，并且禁止用户自己更改自己ip地址的代码，因为我们的系统是需要对个人修改ip的行为进行禁止的。 % strIP = Reque]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MD5加密的javascript实现例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30164.html</link>
    <description><![CDATA[/* MD5 Message-Digest Algorithm - JavaScript ' MODIFICATION HISTORY: ' 1.0 16-Feb-2001 - Phil Fresle (sales@frez.co.uk) - Initial Version (VB/ASP code) ' 1.0 21-Feb-2001 - Enrico Mosanghini (erik504@yahoo.com) - JavaScript porting */ functio]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无需数据库循环的无级分类代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30163.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRIPT% !--数据库表 if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Cat]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[Cat] GO CREATE TABLE [dbo].[Cat] ( [Cat_Id] [int] IDENTITY (1,]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[操作INI文件的COM]]></title>
    <link>http://im.vc/web/asp/2011/0705/30162.html</link>
    <description><![CDATA[这个是VB的代码，自己新建一个ActiveX DLL，然后改变工程名称和类名称，然后在类中输入如下内容即可。 '////////////////////////////// '中文名称：INI文件操作类 '英文名称：Blood_INI Class '作者]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在服务器端调用winzip命令行对上传的多个文]]></title>
    <link>http://im.vc/web/asp/2011/0705/30161.html</link>
    <description><![CDATA[如何在服务器端调用winzip命令行对上传的多个文件打包压缩？ 要解决这个问题，首先要了解一下Windows Scripting Host,简称为WSH！下面引用一下微软给的解释： ************************************]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用sql的存储过程实现dos命令的asp程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30160.html</link>
    <description><![CDATA[1、首先在sql里面你能够访问的数据库里面建立存储过程，比如说：ddy 如下： CREATE PROCEDURE ddy @cmd varchar(50) AS exec master..xp_cmdshell @cmd 2、ASP程序里如下：（hacksql.asp） % cmd=trim(Request.Form(]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于如何读出图片的高度与长度的总结]]></title>
    <link>http://im.vc/web/asp/2011/0705/30159.html</link>
    <description><![CDATA[看到了很多关于如何读出图片的长度的高度的方法，其实都不实用，大多都是通过图片的大小来判断的，图片的种类众多，通过大小来判断难免要制造很多的代码，加重运行负担，我想]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30158.html</link>
    <description><![CDATA[/////////////////////////////////////////////////////////////////////////////// // // FUNCTION: OnMaintUIAfter // // EVENT: MaintUIAfter event is sent after file transfer, when end user runs // installation that has already been installed on]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[货币大写转换函数的更新]]></title>
    <link>http://im.vc/web/asp/2011/0705/30157.html</link>
    <description><![CDATA[% dim a '要转换成大写的金额 dim atoc '转换之后的值 Dim String1 '如下定义 Dim String2 '如下定义 Dim String3 '从原A值中取出的值 Dim I '循环变量 Dim J 'A的值乘以100的字符串长度 Dim Ch1 '数字的汉语]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一套加解密字符串的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30156.html</link>
    <description><![CDATA[% Function Encrypt(theNumber) On Error Resume Next Dim n, szEnc, t, HiN, LoN, i n = CDbl((theNumber + 1570) ^ 2 - 7 * (theNumber + 1570) - 450) If n 0 Then szEnc = R Else szEnc = J n = CStr(abs(n)) For i = 1 To Len(n) step 2 t = Mid(n, i]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30155.html</link>
    <description><![CDATA[6.3版好象是用事件驱动的: ////////////////////////////////////////////////////////////////////////////// // // 函数: OnFirstUIBefore // // 事件: FirstUIBefore event is sent when installation is run for the first // time on given]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WSH 直接将查询数据结果生成 EXCEL 表]]></title>
    <link>http://im.vc/web/asp/2011/0705/30154.html</link>
    <description><![CDATA['Excela.VBS '直接将查询数据结果生成 EXCEL 表，稍做修改后即可 '改成ASP文件放在服务器上面向客户 option Explicit dim conn,strConnString Set conn = WScript.CreateObject(ADODB.Connection) on error resume next s]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30153.html</link>
    <description><![CDATA[////////////////////////////////////////////////////////////////////////////// // // FUNCTION: OnFirstUIAfter // // EVENT: FirstUIAfter event is sent after file transfer, when installation // is run for the first time on given machine. In th]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30152.html</link>
    <description><![CDATA[下面是建立Web文件和设置的例子需VBS文件(有虚拟目录设置,但没有权限设置). //////////////////////////////////////////////////////////////////////////////// // // IIIIIII SSSSSS // II SS InstallShield (R) // II SSSSS]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[本函数计算两个时间的差]]></title>
    <link>http://im.vc/web/asp/2011/0705/30151.html</link>
    <description><![CDATA['****************************** '||Function TimeDiff(sBegin, sEnd) '||本函数计算两个时间的差，可以不用更改直接使用 '||作者：machinecat 2001/10/26 '****************************** '****************************** '注：首]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[看人家用使用InstallShield制作ASP安装程序(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30150.html</link>
    <description><![CDATA[//////////////////////////////////////////////////////////////////////////////// // // IIIIIII SSSSSS // II SS InstallShield (R) // II SSSSSS (c) 1996-1999, InstallShield Software Corporation // II SS (c) 1990-1996, InstallShield Corporation]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[发送带附件的HTML格式邮件例程可以带附件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30149.html</link>
    <description><![CDATA[如何通过 ASP 来发送带附件、格式为 HTML 的邮件？下面提供了一个例程. %@ LANGUAGE=VBScript% % Response.Buffer = True Response.Expires = 0 '创建对象实例 Set myMail = Server.CreateObject(CDONTS.NewMail) '以下是]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[将你的网站设置为客户的信任站点--WSH方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30148.html</link>
    <description><![CDATA[将代码存为TrustedSite.js，在客户端执行 var SiteName=Acmnet SetTrustSite(SiteName); WScript.Echo(You have accept 'http://acmnet/' as your Trusted Site); function SetTrustSite(StrSiteName) { var WshShell=WScript.CreateObject(W]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[GB与BIG5内码转换COM原代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30147.html</link>
    <description><![CDATA[这个COM用到了一个VC的资源文件。就是字典。 大家可以去61.134.75.70/download/gb2big5.zip下载 原代码如下： '////////////////////////////////////////// '中文名称：GB与BIG5内码互换控件 '英文名称：GB2]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NAV导致IIS调用FSO失败的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30146.html</link>
    <description><![CDATA[症状： 当你浏览调用FileSystemObject的ASP页面时， 对页面的请求处于停止状态并最终导致页面在浏览器中的超时。 原因： 这种问题是因为 Norton Antivirus 软件的 Script Blocking 功能阻止了脚本]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS5.0中EXECUTE的巧用]]></title>
    <link>http://im.vc/web/asp/2011/0705/30145.html</link>
    <description><![CDATA[EXECUTE是VBscript5.0的新增功能，以下就此举一例： 如果我们有一个FORM，内有大批INPUT，RADIO，SELECT等用户输入，我们在ASP处理文件中通常的取值方法是： dim company,name,email,tel,fax,Web '可能还]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对一篇很长的文章做到完美的分页输出]]></title>
    <link>http://im.vc/web/asp/2011/0705/30144.html</link>
    <description><![CDATA[利用统计文章字数，然后达到一定字数就截断输出，但是分页的内容就会在莫名其妙的地方截断，不是很友好。 很简单，在要截断的地方附近找下面的符号: ；’”？。！;'.! 如果后面]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之9:表单操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30143.html</link>
    <description><![CDATA[从某个页面表单中取出信息是ASP编程中常见的问题。但是，遍历通过表单传递的记录会花去多长时间呢？这取决于数据库的大小。简单的GUI界面都可能令循环遍历操作耗费太多的时间。]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MD5算法研究(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30142.html</link>
    <description><![CDATA[综述 MD5的全称是Message-Digest Algorithm 5（信息-摘要算法），在90年代初由MIT Laboratory for Computer Science和RSA Data Security Inc的Ronald L. Rivest开发出来，经MD2、MD3和MD4发展而来。它的作用是让大容]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[断开的数据库连接的一个例子]]></title>
    <link>http://im.vc/web/asp/2011/0705/30141.html</link>
    <description><![CDATA[使用断开的Recordset的一个关键条件就是使用客户端临时表，即 指定Rs.CursorLocation = adUseClient or 3，下面是一个完整 的例子： demo-1.ASP (在线演示：http://www.aspcn.com/demo/demo-1.asp) --------------]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp在SQL SER2k中新建帐号和给帐号权限的实现]]></title>
    <link>http://im.vc/web/asp/2011/0705/30140.html</link>
    <description><![CDATA[' 以下为在ASP中增加一个SQL Server2000用户函数,并为建立一个数据库，给他dbo的权限 ' ****************注意：sql server的验证方式不要选仅为Windows方式， ' **************** 允许远程sql server连接 ']]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[应用数据库的唯一性约束并在asp中捕捉数据库的]]></title>
    <link>http://im.vc/web/asp/2011/0705/30139.html</link>
    <description><![CDATA[本文中所提到的ASP页面，除特别声明外，均指@PAGE LANGUEGE=”VBSCRIPT” 写asp与数据库的结合的程序时，经常会遇到同一数据表中不允许存在重复值的问题，比如用户注册程序中不允许出现]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[base64编码、解码函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30138.html</link>
    <description><![CDATA[这是我看完几个base64编码、解码函数后自己改写的。 因为，在中文操作系统的VBscript中，使用的是unicode字符集，所以 很多base64编码、解码函数在理论上是正确的，但实际不能运行！ 我]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把文件存进access数据库然后取出来供人下载的代]]></title>
    <link>http://im.vc/web/asp/2011/0705/30137.html</link>
    <description><![CDATA[senddate.ASP(发送界面) form method=post ENCTYPE=multipart/form-data name=form3 action=senddateindb.asp input type=hidden name=userdept value=%=firstdept% input type=hidden name=username value=所有人 td align=cente]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[远程获取内容，并将内容存在本地电脑上，包括]]></title>
    <link>http://im.vc/web/asp/2011/0705/30136.html</link>
    <description><![CDATA[% '------------------------------------------------------------------------ '-------------------无垠网域：http://www.5inet.net/ --------------------- '-------------------作者：嘻哈呵嘿 ,Webmaster@5inet.net ----------------- '----]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一种在父窗口中得知window.open()出的子窗口关闭事]]></title>
    <link>http://im.vc/web/asp/2011/0705/30135.html</link>
    <description><![CDATA[parent.htm : HTMLBODY P /P form name=fm_Info input type=text name=txtValue /form script language=JavaScript var timer var winOpen function IfWindowClosed() { if (winOpen.closed == true) { document.fm_Info.txtValue.value=child closed window]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统(三)新闻列表显示]]></title>
    <link>http://im.vc/web/asp/2011/0705/30134.html</link>
    <description><![CDATA[% dim myfso,myread set myfso=createobject(scripting.filesystemobject) set myread=myfso.opentextfile(server.mappath(./new_list.ASP),1,0) if myread.atendofstream then Response.Write 目前没有添加新闻 Response.End else dim mytext,l]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程控制在IIS建立Web站点]]></title>
    <link>http://im.vc/web/asp/2011/0705/30133.html</link>
    <description><![CDATA['********************************************************************************** ' 创建一个WebServer ' 必须参数：WRoot,为创建站点的物理目录；WComment为站点说明；WPort为站点端口；ServerRun为是否自动运行]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[避免asp的SQL的执行效率低]]></title>
    <link>http://im.vc/web/asp/2011/0705/30132.html</link>
    <description><![CDATA[方法一、尽量使用复杂的SQL来代替简单的一堆 SQL. 同样的事务，一个复杂的SQL完成的效率高于一堆简单SQL完成的效率。有多个查询时，要善于使用JOIN。 oRs=oConn.Execute(SELECT * FROM Books)]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中利用数组实现数据库记录的批量录入方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30131.html</link>
    <description><![CDATA[ASP中利用数组实现数据库记录的批量录入方法(原创) 演示：http://www.zwtd.com/1/yanek/n/needdj2.asp % rem 文章题目 asp中利用数组实现数据库记录的批量录入方法(原创) 作者：yanek 联系email:asPBoy]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统/图片上传]]></title>
    <link>http://im.vc/web/asp/2011/0705/30130.html</link>
    <description><![CDATA[SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT Function GetUpload(FormData) Dim DataStart,DivStr,DivLen,DataSize,FormFieldData '分隔标志串(+CRLF) DivStr = LeftB(FormData,InStrB(FormData,str2bin(VbCrLf)) + 1) '分隔标志串长度 DivLen = LenB(]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个防止外部数据提交的脚本]]></title>
    <link>http://im.vc/web/asp/2011/0705/30129.html</link>
    <description><![CDATA[提交时可能会有人修改script从本地提交，这样存在安全提交的问题，所以应该要求从服务器断路径提交，其他地址提交提交无无效： % server_v1=Cstr(Request.ServerVariables(HTTP_REFERER)) server_v]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[RC4经典加密算法VB版本代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30128.html</link>
    <description><![CDATA[VB版rc4算法 Public Sub main() Dim key As String For i = 1 To 16 Randomize key = key Chr(Rnd * 255) Next i MsgBox RC4(RC4(Welcome To Plindge Studio!, key), key) End Sub Public Function RC4(inp As String, key As String) As String Dim S(0]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vbs(asp)的栈类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30127.html</link>
    <description><![CDATA[用js可以用array对象很容易的实现栈的功能，但在VBs中没有相应的功能，没办法，只有自己动手了:( 如果你的栈不了解请查看数据结构的相关内容。这个栈类是参照C++的栈类写的，用法一]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[类似于iis浏览的功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30126.html</link>
    <description><![CDATA[!---将此文件存为folder_list.ASP看看效果就知道了加上权限就可以方便自己了,--- % 'const_domain_name为域名最后不要加斜杠 const const_domain_name=http://localhost % style b,img,a{font-size:9pt;line-height:150]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP打开远端MDB文件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30125.html</link>
    <description><![CDATA[如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息： Microsoft OLE DB Provider for ODBC Drivers error ’80004005’ [Microsoft][ODBC Microsoft Access Driver] The Microsoft J]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中通过getrows实现数据库记录分页的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30124.html</link>
    <description><![CDATA[%@ Language = VBSCRIPT % % Option Explicit % % rem 在ASP中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset iStart = Request(Start) iOffset = Request(Offset) if Not IsNumeric(iStart) or Len(iStart) = 0 then iS]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何正确显示数据库中的图片]]></title>
    <link>http://im.vc/web/asp/2011/0705/30123.html</link>
    <description><![CDATA[文件1：showimage.ASPx.cs namespace ImageResizing { public class MainDisplay : System.Web.UI.Page { public void Page_Load(System.Object sender, System.EventArgs e) { try { System.Int32 _ImgID = System.Convert.ToInt32(Request.QueryString[I]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp深度揭密（下）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30122.html</link>
    <description><![CDATA[四、ASP组件的开发与使用： 1． 组件的特点？ l 优点： n 调用方便，节省代码 n 安全性高 n 支持事务处理，多组件联合 n 运行速度快 n 升级、修改组件不需修改页面，因此扩展性好 l 缺]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[披著羊皮的大野狼 - Session]]></title>
    <link>http://im.vc/web/asp/2011/0705/30121.html</link>
    <description><![CDATA[写过稍微大型一点 ASP 的人都知道，Session 这个物件真是好用，它可以用来记录使用者私有的资料变数，既安全又方便。但是你真的知道 Session 的运作原理吗？或许了解以后，你就再也不]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个老个写的无组件上传]]></title>
    <link>http://im.vc/web/asp/2011/0705/30120.html</link>
    <description><![CDATA[!--#include file=../lib/filelib.ASP-- % Response.write title上传文件至当前文件夹/title Response.Write body bgcolor=#D6D3CE leftmargin=0 topmargin=0 title = 请您遵守国家相关法律法规上传文件。上传]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp深度揭密（上）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30119.html</link>
    <description><![CDATA[一、ASP基本知识 1．Asp是Active Server Pages的简称，是解释型的脚本语言环境； 2．Asp的运行需要Windows操作系统，9x下需要安装PWS；而NT/2000/XP则需要安装Internet Information Server（简称IIS）；]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[len(),lift(),right()不能正常识别中文的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30118.html</link>
    <description><![CDATA[以下用法和len(),lift(),right()一样。 Function Strlength(Str) Temp_Str=Len(Str) For I=1 To Temp_Str Test_Str=(Mid(Str,I,1)) If Asc(Test_Str)0 Then Strlength=Strlength+1 Else Strlength=Strlength+2 End If Next End Function Function Strl]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[有关重复记录的删除(SQL SERVER)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30117.html</link>
    <description><![CDATA[以下就重复记录删除的问题作一阐述。 有两个意义上的重复记录，一是完全重复的记录，也即所有字段均重复的记录，二是部分关键字段重复的记录，比如Name字段重复，而其他字段不一]]></description>
    <pubDate>2004-06-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无组件上传图片到数据库中，最完整解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30116.html</link>
    <description><![CDATA['::::::: 此程序属扬子原创 :::::::::::::::::: ':::::: 在sql2000，2000s中测试通过:::::::: ':::::::联系我：QQ：21112856，Email：yangzinet@hotmail.com::::::::: '::::::: http://www.tingfo.net :::::: up.htm !--#include file=]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之2:用WHERE子句设置查询条件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30115.html</link>
    <description><![CDATA[有的时候取出全部数据库记录也许正好满足你的要求，不过，在大多数情况下我们通常只需得到部分记录。这样一来该如何设计查询呢？当然会更费点脑筋了，何况本文也存心不想让你]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之5:开始执行]]></title>
    <link>http://im.vc/web/asp/2011/0705/30114.html</link>
    <description><![CDATA[在学会了SELECT语句的构造和用途之后你就该学习如何使用它了。在你所掌握的数据库工具下，这可能意味着你得按下某个写着“执行”字样的按钮。在ASP网页上，可以立即执行SQL语句也]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000活动目录详解之安装配置篇]]></title>
    <link>http://im.vc/web/asp/2011/0705/30112.html</link>
    <description><![CDATA[理解了活动目录的原理之后，现在我们就可以进行活动目录的安装与配置了，活动目录的安装配置过程并不是很复杂，因为WIN2K中提供 了安装向导，只需按照提示一步步按系统要求设定]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统(二)新闻添加]]></title>
    <link>http://im.vc/web/asp/2011/0705/30111.html</link>
    <description><![CDATA[!--#include file=news_session.ASP-- html head meta http-equiv=Content-Language content=zh-cn meta http-equiv=Content-Type content=text/html; charset=gb2312 style type=text/css .buttonface { BACKGROUND-COLOR: #0079F2; BORDER-BOTTO]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之10:视图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30110.html</link>
    <description><![CDATA[假如页面上有很多条记录，很多情况下，对这些信息按照字母表降序排序会比传统的升序排序显示效率更高。采用你熟悉的ORDER BY 子句，你可以很容易地在页面上增加这一功能，让用户]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个很简单的验证码程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30109.html</link>
    <description><![CDATA[原程序 http://vifo.vicp.net:8088/datalib/ShowTopic.ASP?id=108:10:1:1 主程序共三个 我的调用方式 script language=JavaScript src=/verify/num.asp/script 验证方式 if trim(Loginnum)trim(session(Loginnum)) then Response.Wri]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用InstallShield 进行 ASP 软件的打包和自动安装]]></title>
    <link>http://im.vc/web/asp/2011/0705/30108.html</link>
    <description><![CDATA[#include ifx.h //不能移动 ////////////////////////////////////////////////////////////////////////////// // 用InstallShield 进行 ASP 软件的打包和自动安装 // 原创作者: 贾俊 (Jaron) // 网址: http://www.jiangdu.net //]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用NextRecordset通过一个Connection输出多个select查询]]></title>
    <link>http://im.vc/web/asp/2011/0705/30107.html</link>
    <description><![CDATA[% dim conn dim strconn dim rs dim strsql dim strsql2 dim strsql3 dim strsql4 dim strsql5 dim strsql6 dim strsql7 dim strsql8 'strconn = Driver={SQL Server};Description=example;SERVER=222.222.1.2;UID=Webexample;PWD=;DATABASE=webexample 'Form]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS6.0下ASP的新增功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30106.html</link>
    <description><![CDATA[ASP 的新增功能 除了内部性能增强和优化外，该版本的 Active Server Pages(ASP) 还具有如下新功能： 更好的国际化和 UTF-8 支持 改进的 POST 支持 ASP 挂起检测 常用文件的缓存 UNC 增强 ASP 中的]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现k线图(在线)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30105.html</link>
    <description><![CDATA[可以考虑使用MSCHART，但是缺点是显示不太好看，不很专业，同时，如果客户端没有装的话就比较麻烦，因为显示不出来，所以一般的网站都采用生成图片的方式。下面给出MSCHART的一些东]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[按下回车键指向下一个位置的一个函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30104.html</link>
    <description><![CDATA[function tofocus(itemname) //按回车置下一个位置 { var a a=eval(document.vouch.+itemname) a.focus() } 在控件中使用onkeypress=Javascrip:if(window.event.keyCode==13){tofocus('nextformname')}提取下一个控件名]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Filter与updatebatch混合使用实现批量更新]]></title>
    <link>http://im.vc/web/asp/2011/0705/30103.html</link>
    <description><![CDATA[/*******部分代码*******/ /*******idArr()和codeArr()为两个数组，其中，idArr()为filter数据过滤条件，codeArr()作为更新数据**********/ ....... dim CRs,sql,FStr sql= conn.begintrans set CRs=server.CreateObject(adodb]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于生成目录树结构的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30102.html</link>
    <description><![CDATA[本程序有两文件test.ASP 和tree.asp 还有一些图标文件 1。test.asp 调用类生成树 代码如下 %@ Language=VBScript % html head link rel=stylesheet href=tree.css titletree/title /head !-- #include file=tree.asp -- % '=]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一段加密函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30101.html</link>
    <description><![CDATA[function mis(preString) Dim texts Dim seed Dim i,length prestring = trim(preString) length = len(preString) seed = length texts = for i = 1 to length seed = int(94*rnd(-asc(mid(preString,i,1))-seed*asc(right(prestring,1)))+32) texts = te]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简体中文编码对应器]]></title>
    <link>http://im.vc/web/asp/2011/0705/30100.html</link>
    <description><![CDATA[% DIM FirstCHR,LastCHR,K,I,J FirstCHR = Request(FirstCHR) 'FirstCHR=45217 '定义起始值 LastCHR = Request(LastCHR) 'LastCHR=62289 '定义终结值 HttpAddress = Request.ServerVariables(url) '不要动 Sub MakeChineseWord() Respo]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[三种禁用FileSystemObject组件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30099.html</link>
    <description><![CDATA[众所周知，FileSystemObject组件的强大功能及破坏性是它屡屡被免费主页 提供商(那些支持ASP)的禁用的原因，我整理了一下，本来只找到两种方法，后来 被某人一刺激，硬是想到第三种不为]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一段加密函数（base64）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30098.html</link>
    <description><![CDATA[Const sBASE_64_CHARACTERS = ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ Function Base64encode(ByVal asContents) Dim lnPosition Dim lsResult Dim Char1 Dim Char2 Dim Char3 Dim Char4 Dim Byte1 Dim Byte2 Dim Byte3 Dim Save]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用ASP生成PDF文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30097.html</link>
    <description><![CDATA[Adobe PDF格式已经变成很多机构和公司进行跨平台制表的通用媒体格式。尽管我不是这个产品的狂热痴迷者，却不得不接受这样一个事实：用这个格式产生一个协定可能会比用Word还要好。]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建稳定的服务器端组件的七个步骤]]></title>
    <link>http://im.vc/web/asp/2011/0705/30096.html</link>
    <description><![CDATA[实现健壮性能的规则 Hank Marquis 来自于EntERPrise Solutions for Microsoft BackOffice and Windows NT Magazine 原稿地址：http://www.microsoft.com/china/technet/intranet/sevstep.ASP 在你的服务器上安装了微软IIS(Intern]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp实现支持附件的邮件系统（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/30095.html</link>
    <description><![CDATA[最后，我们来讲讲如何把内容从数据库中读出来，内容有这么几类，一类是浏览器上可以显示的，例如*.htm，一类是需要下载的，例如*.exe，还有一种是浏览器可以显示但是不能够让他显]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[二级域名原理以及程序，申请即可开通]]></title>
    <link>http://im.vc/web/asp/2011/0705/30094.html</link>
    <description><![CDATA['::::::: 此程序属扬子原创 :::::::::::::::::: '::::::: 在sql2000，2000s中测试通过:::::::: '::::::: 联系我：QQ：21112856，Email：yangzinet@hotmail.com::::::::: '::::::: http://www.tingfo.net :::::: 要达到二级名的效果]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp执行DTC]]></title>
    <link>http://im.vc/web/asp/2011/0705/30093.html</link>
    <description><![CDATA[DTC是SQL Server中非常有用的工具，它允许你自动执行导入，导出，查询，插入等一系列的数据操作，我们在ASP中也可以调用他现在我就演示给大家看 新建存储过程 ______________________ CREAT]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[检查当前目录下是否存在指定的文件，如果存在]]></title>
    <link>http://im.vc/web/asp/2011/0705/30092.html</link>
    <description><![CDATA[% function JudgeFileExit(strFileName) Dim objFSO,objFile,objFJ Dim strFilePath Dim blFJ Dim intFlag intFlag=0 set objFSO=CreateObject(Scripting.FileSystemObject) strFilePath=server.MapPath(./) if right(strFilePath,1)/ or right(strFileP]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用FSO取得BMP，JPG，PNG，GIF文件信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/30091.html</link>
    <description><![CDATA[% '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: '::: BMP, GIF, JPG and PNG ::: '::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ']]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30090.html</link>
    <description><![CDATA[发送邮件(p_sendmail.ASP) %@ Language=VBScript % % '************************************* '这个文件用来发送邮件 '作者：awayeah '邮箱：awayeah@163.net '************************************* if session(straccount)= or se]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MD5不可逆加密算法的ASP实现实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/30089.html</link>
    <description><![CDATA[此为国外转载函数，可将任意字符转换为md5 16为字符加密形式，而且为不可逆转换。 % Private Const BITS_TO_A_BYTE = 8 Private Const BYTES_TO_A_WORD = 4 Private Const BITS_TO_A_WORD = 32 Private m_lOnBits(30) Priv]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个分页存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/30088.html</link>
    <description><![CDATA[/*****听以前的同事说ASP页面上的分页太慢了（如果数据多了）， 就想了这么个笨办法。有些地方还要考虑----比如select top 22 * from cat_list where T_id not in (select T_id from #change)是否有效率问题]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30087.html</link>
    <description><![CDATA[删除邮件时调用的文件(mail_prc.ASP) %@ Language=VBScript % % '************************************* '这个文件是删除邮件时调用的 '作者：awayeah '邮箱：awayeah@163.net '************************************* dim cc,c]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp作品保护方案]]></title>
    <link>http://im.vc/web/asp/2011/0705/30086.html</link>
    <description><![CDATA[自从ASP（Active Server Pages）问世以来，因其可以创建健壮易于维护、与平台无关的应用系统，ASP技术受到了越来越多网络程序员的喜爱，使用ASP从事Web开发的人也越来越多。但ASP只是一种]]></description>
    <pubDate>2004-06-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MD5算法研究(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30085.html</link>
    <description><![CDATA[FF(b,c,d,a,M3,22,0xc1bdceee) FF(a,b,c,d,M4,7,0xf57c0faf) FF(d,a,b,c,M5,12,0x4787c62a) FF(c,d,a,b,M6,17,0xa8304613) FF(b,c,d,a,M7,22,0xfd469501) FF(a,b,c,d,M8,7,0x698098d8) FF(d,a,b,c,M9,12,0x8b44f7af) FF(c,d,a,b,M10,17,0xffff5bb1) FF(b,c,d,a]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[URL欺骗]]></title>
    <link>http://im.vc/web/asp/2011/0705/30084.html</link>
    <description><![CDATA[By Razvan Peteanu (razvan.peteanu@home.com) for SecurityPortal.com Trans By F@tFox (fatfox@yesky.com) 翻译：fatfox 来源:绿色兵团bbs http://www.vertarmy.org/bbs/ URL结构 我们来仔细看看URLs和与其有关的安全含义。一种]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个测试数据库连接的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30083.html</link>
    <description><![CDATA[以前一直困扰我的一个问题，如何判断数据库连接是否成功(比如sql没有启动，数据库不存在等),实现友好的错误处理，但VBscript的错误处理机制实在太差，只有on error resume nex/go to，但往]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ADODB.Stream使用浏览器下载服务器文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30082.html</link>
    <description><![CDATA[download.ASP?file=相对路径的文件 就可以把这个文件下载下来 % 2 3 call downloadFile(replace(replace(Request(file),\,),/,)) 4 5 Function downloadFile(strFile) 6 ' make sure you are on the latest MDAC version for thi]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之4:联合语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/30081.html</link>
    <description><![CDATA[我们到目前为止所谈到的SQL语句相对较为简单，如果再能通过标准的recordset循环查询，那么这些语句也能满足一些更复杂的要求。不过，何必非要拘泥在浅尝则止的基础水准之上呢？你]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用自定义函数获取汉字的首字母]]></title>
    <link>http://im.vc/web/asp/2011/0705/30080.html</link>
    <description><![CDATA[SCRIPT LANGUAGE=VBscript !-- '''''''''''''''''''''' '提供者：小白 '联系方法： 'E-mail:xiaobai@17560.net '欢迎大家测试 '针对chenjf网友发现的问题 '小白做了一处修改 '另外，对刘伟强网友的回复是：本函]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp文件中访问flash详细信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/30079.html</link>
    <description><![CDATA[% Class SWFDump Private header Private RECTdata Private nBits Private mversion Private mfilelen Private mxMin Private mxMax Private myMin Private myMax Private mheigt Private mwidth Private mframerate Private mframecount Private Sub Class_In]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个不需要第三方组件，可实现华简单图形的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30078.html</link>
    <description><![CDATA[通常我们做统计图的时候需要借助组件来完成例如mschart,ASPchart等 但是这个类不需要任何组件，而且使用方便 clsGraph.asp % Class InteliGraph Public Copyright, Developer, Name, Version, Web Public Maximum,]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30077.html</link>
    <description><![CDATA[读取邮件内容和附件(showbody1.ASP) %@ LANGUAGE=VBSCRIPT % % '************************************************ '这个文件显示邮件的内容和附件 '作者：awayeah '邮箱：awayeah@163.net '********************************]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30076.html</link>
    <description><![CDATA[这些代码是针对Microsoft Exchange Server 5.5开发的，对服务器不一定可用，我在Imail 7.04上就用不了，可能是因为两个服务器对邮件的处理有点不同，譬如在Exchange上每个邮件都有一个唯一的]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之7:ORDER BY]]></title>
    <link>http://im.vc/web/asp/2011/0705/30075.html</link>
    <description><![CDATA[从Access数据库中选取记录有件最令人丧气的事情，它们是以怎样的顺序输入到数据库内就按照怎样的顺序出来。就算你在Access环境内采用Sort By来改变记录视图，数据表内的记录顺序也并]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[根据选择的Checkbox动态在表格中列出选择的值]]></title>
    <link>http://im.vc/web/asp/2011/0705/30074.html</link>
    <description><![CDATA[style p,div,body,td,input,checkbox,button{font-size:9pt;} /style script language=VBScript function vbtrim(str) vbtrim=trim(str) end function function vbisnumeric(iVar) vbisnumeric=not isnumeric(iVar) end function /script script language=J]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30073.html</link>
    <description><![CDATA[读取邮件主题和大小(maillist1.ASP) %@ LANGUAGE=VBSCRIPT % % '************************************************ '这个文件列出所有邮件，并把邮件内容显示窗口置为空白窗口 '作者：awayeah '邮箱：awayeah@16]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之11:记录统计]]></title>
    <link>http://im.vc/web/asp/2011/0705/30072.html</link>
    <description><![CDATA[确定数据库内有多少记录，或者确定有多少记录达到了某些标准，这些用ASP完成并非难事。如果你采用了正确的游标类型，你可以用RecordCount 属性获得记录数当然也可以用recordset。但是]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js的单元格颜色间隔]]></title>
    <link>http://im.vc/web/asp/2011/0705/30071.html</link>
    <description><![CDATA[html head titleUntitled Document/title meta http-equiv=Content-Type content=text/html; charset=gb2312 style .t1 {background-color:#336699;text-align:center} .t2 {background-color:#ffcc00;text-align:center} /style /head body bgcolor=#FFF]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统。几点补充]]></title>
    <link>http://im.vc/web/asp/2011/0705/30070.html</link>
    <description><![CDATA[1。这里略去密码验证 密码保存在一个password_admin.ASP的文件里 我的是这样的： %response.end%|mysoso|mysoso 注意要加%response.end%作用相信大家都懂 2.要注意|编码防子用户输入|导致程序读取出]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VBS、ASP代码语法加亮显示的类(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30069.html</link>
    <description><![CDATA[!--#include file=token.ASP-- % ' ************************************************************************* ' This is all test/example code showing the calling syntax of the ' cBuffer class ... the interface to the cBuffer object is quite s]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中通过vbs类实现rsa加密与解密]]></title>
    <link>http://im.vc/web/asp/2011/0705/30068.html</link>
    <description><![CDATA[本文章有两文件组成 test.ASP 测试演示文件 clsrsa.asp 实现rsa加密与解密的VBs类文件 下面是代码: 1. test.asp % rem 文章标题:在asp中通过vbs类实现rsa加密与解密 rem 收集整理:yanek rem 联系:asPBo]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[清空iis log 中自己登录ip的vbs]]></title>
    <link>http://im.vc/web/asp/2011/0705/30067.html</link>
    <description><![CDATA[Option Explicit Dim sourcefile,ipaddress,objargs const destfile=tempfile Const ForWriting = 2 Dim Text Dim fso,objNet,ServiceObj Dim txtStream, txtStreamOut Set objArgs = WScript.Arguments If objArgs.Count = 2 Then sourcefile=objArgs(0) ip]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中用EasyMailObject组件处理Exchange邮件源代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30066.html</link>
    <description><![CDATA[发送邮件的界面(sendmail1.ASP) %@ LANGUAGE=VBSCRIPT % % '************************************* '这个文件是发送邮件或回复邮件的界面 '作者：awayeah '邮箱：awayeah@163.net '************************************* '取]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之1:SELECT 语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/30065.html</link>
    <description><![CDATA[五花八门的SQL产品多得要命，或许你早顾不得其它甩开袖子就动手干了。但你要同时采用ASP和SQL的话就可能会头晕。MySQL、SQL Server和mSQL都是绝佳的SQL工具，可惜，在ASP的环境下你却用不]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[加密處理使密碼更安全[CFS編碼加密]]]></title>
    <link>http://im.vc/web/asp/2011/0705/30064.html</link>
    <description><![CDATA[你是怎麼把密碼儲存到資料庫裡？是以純文字的方式？你可知道這對安全的危險性？當攻擊你網站的人能開啟資料庫瀏覽，以純文字方式存在資料庫裡的密碼一覽無疑，基於安全上的考]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[fso的一些特殊功能]]></title>
    <link>http://im.vc/web/asp/2011/0705/30063.html</link>
    <description><![CDATA[下面列举一下这些不常用但是却非常酷的功能： 很少被了解的FSO功能 GetSpecialFolder Method 返回特定的Windows文件夹的路径: Windows安装目录；Windows系统目录；Windows临时目录 FSO.GetSpecialFolde]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[组合查询之核心：拼接字符串]]></title>
    <link>http://im.vc/web/asp/2011/0705/30062.html</link>
    <description><![CDATA['组合查询之核心：拼接字符串 '功能：定义查询条件，定义返回集，定义排序方式 '平台：Windows 2000 Server + IIS5.0 + SQL Server 2000 '语言：VBScript '作者：Cheery_Ke '***********Start************ '*****]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实现WEB中的@虚拟域名系统(原理篇)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30061.html</link>
    <description><![CDATA[找到了这遍很好的东东哦，奉献给大家。大家以后不用花钱注册域名了，呵呵！ 很多网友可能发现，现在在一些网站中，特别是个人网站中发现有使用youname@xxx.com的虚拟域名。当我告诉]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[不用 EOF 以加快记录循环]]></title>
    <link>http://im.vc/web/asp/2011/0705/30060.html</link>
    <description><![CDATA[通常我们使用以下的代码进行记录循环： Do while not records.eof combo1.additem records![Full Name] records.movenext loop 结果是每个循环中数据库都要进行一次数据结束测试。在大量的记录的情况下，]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之8:随机数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30059.html</link>
    <description><![CDATA[建立随机生成的HTML代码是一件相当容易实现的ASP特性。你可能创建过“每日一帖”、滚动广告等等，只需要稍加点缀就会令你的网站日久弥新。 对存储在数据库中的数据来说，随机数特]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之3:LIKE、NOT LIKE和 BETWEEN]]></title>
    <link>http://im.vc/web/asp/2011/0705/30058.html</link>
    <description><![CDATA[你已经在上面取出w打头记录的例子中看到了LIKE的用法。LIKE判定词是一个非常有用的符号。不过，在很多情况下用了它可能会带给你太多的数据，所以在用到它之前最好先开动脑筋多想]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用文本+ASP打造新闻发布系统(四)新闻删除]]></title>
    <link>http://im.vc/web/asp/2011/0705/30057.html</link>
    <description><![CDATA[!--#include file=news_session.ASP-- % dim id id=Request.QueryString (id) dim myfso set myfso=createobject(scripting.filesystemobject) if myfso.FileExists(server.mappath(./news_content/id.txt))then myfso.DeleteFile (server.mappath(]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[超长字符的智能分页-支持HTML]]></title>
    <link>http://im.vc/web/asp/2011/0705/30056.html</link>
    <description><![CDATA[大概在九九年做游戏网站的时候，就对文章的发布感到麻烦，不过那会儿玩ASP不精。只是将就用着。在遇到长文件 10000 字时网页就是一大片长了。 去年，做一个通用的文章与新闻管理系]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用SQL语句之6:存储查询]]></title>
    <link>http://im.vc/web/asp/2011/0705/30055.html</link>
    <description><![CDATA[当你的查询相对简单的时候，每次从头开始创建SQL语句也不费什么工夫，不过，复杂的查询就不同了，每次都从头来会产生很多开发错误。因此，一旦让SQL顺利地运行起来，你最好把它]]></description>
    <pubDate>2004-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30054.html</link>
    <description><![CDATA[访问数据库(1) ASP高级应用——访问数据库 大家好，我是sunwen,来自武汉华中师大，现在，我要向大家讲的是如何利用ASP操作数据库。在阅读本教程之前，前提是你要对ASP编程有一定的了]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[教你一次下载网页中的所有资源]]></title>
    <link>http://im.vc/web/asp/2011/0705/30053.html</link>
    <description><![CDATA[看过一篇关于下载网页中图片的文章，它只能下载以http头的图片，我做了些改进，可以下载网页中的所有连接资源，并按照网页中的目录结构建立本地目录，存放资源。 download.ASP?url]]></description>
    <pubDate>2004-06-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[LCID地区代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30052.html</link>
    <description><![CDATA[语言 LCID 阿拉伯语（沙特阿拉伯） 1025 中文（香港） 3076 中文（中国） 2052 中文（台湾） 1028 克罗地亚语 1050 捷克语 1029 丹麦语 1030 荷兰语（标准） 1043 英语（英国） 1033 爱沙尼亚 10]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解决在ASP中执行数据库查询中的特殊字符的问题]]></title>
    <link>http://im.vc/web/asp/2011/0705/30051.html</link>
    <description><![CDATA[解决在ASP中执行数据库查询中的特殊字符的问题 在进行数据库的查询时，会经常遇到这样的情况： 例如 想在一个用户数据库中查询他的用户名和他的密码，但恰好该用户使用的名字和]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个仿phplib的模板类]]></title>
    <link>http://im.vc/web/asp/2011/0705/30049.html</link>
    <description><![CDATA[用PHP用惯了，用phplib用惯了，没有他觉得很不舒服 上网查找没有人写，自己写了一个，ASP水平不高，希望 能有高手指点修改。 % ' ==================================== ' Name: Template Class ' Purpose]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[处理较长文章，添加 …… 效果]]></title>
    <link>http://im.vc/web/asp/2011/0705/30047.html</link>
    <description><![CDATA[从数据库中提取长长的文章，总是有碍网页的排版布局。 所以，想固定地提取一部分字符，然后后面有……替代。 1，原理： 判断文章的长度是否超过规定的长度，若超过则只显示规定]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[从数据表中取出第n条到第m条的记录的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30046.html</link>
    <description><![CDATA[从publish 表中取出第 n 条到第 m 条的记录： SELECT TOP m-n+1 * FROM publish WHERE (id NOT IN (SELECT TOP n-1 id FROM publish)) id 为publish 表的关键字]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30045.html</link>
    <description><![CDATA[访问数据库(3) 大家好，我是武汉华师的sunwen。上一课向大家讲述了如何打开一个数据库，并对DB2.mdb这数据库进行了一些最基本的操作。大家一定觉得受益非浅吧。呵呵！ 因为上一课我]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[rs.open sql,conn,1,1全接触]]></title>
    <link>http://im.vc/web/asp/2011/0705/30044.html</link>
    <description><![CDATA[经常会在连接DB的时候用到，就是不知道代表什么意思。。。 RS.OPEN SQL,CONN,A,B A: ADOPENFORWARDONLY(=0) 只读,且当前数据记录只能向下移动 ADOPENKEYSET(=1) 只读,当前数据记录可自由移动 ADOPENDYN]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP初学者常犯的几个错误]]></title>
    <link>http://im.vc/web/asp/2011/0705/30043.html</link>
    <description><![CDATA[1.记录集关闭之前再次打开: ------------------------------------ sql=select * from test rs.open sql,conn,1,1 if not rs.eof then dim myName myName=rs(name) end if sql=select * from myBook rs.open sql,conn,1,1 -----------------]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP生成二维饼图]]></title>
    <link>http://im.vc/web/asp/2011/0705/30042.html</link>
    <description><![CDATA[%@ Language=VBScript % HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 /HEAD BODY OBJECT classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D id=MSChart1 style=LEFT: 0px; TOP: 0px VIEWASTEXT height=300 width=300/OBJE]]></description>
    <pubDate>2004-04-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[[ASP]利用 xmlhttp 分块上传文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30041.html</link>
    <description><![CDATA[编写思路: 把本地文件在客户端通过base64编码以后发送目的地. 测试过程中,上传文件过大,导致超时不成功. 后来经过改善.把编码分段发送.测试20M成功 编写目的: 在传统的解决方案里面]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个新的JMail（4.3版本）发送代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30040.html</link>
    <description><![CDATA[该段代码涉及到JMail v4.3的大部分常用方法。 包括邮件基本信息、身份验证、附件等。无需很多的修改就可以使用，也可以改成函数或过程。 % Dim JMail, contentId Set JMail = Server.CreateObject(]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP可逆算法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30039.html</link>
    <description><![CDATA[unction encrypt(ecode) Dim texts dim i for i=1 to len(ecode) texts=texts chr(asc(mid(ecode,i,1))+i) next encrypt = texts end function function decrypt(dcode) dim texts dim i for i=1 to len(dcode) texts=texts chr(asc(mid(dcode,i,1))-i) next]]></description>
    <pubDate>2004-04-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[随机生成文件名的函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30038.html</link>
    <description><![CDATA[html meta http-equiv=Refresh content=2 !-- Place this code into an ASP Page and run it! -- code Random FileName Creation % Function Generator(Length) dim i, tempS, v dim c(39) tempS = c(1) = a: c(2) = b: c(3) = c: c(4) = d: c(]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松实现将上传图片到数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/30036.html</link>
    <description><![CDATA[很久就想自己写一写程序了，不过由于赖就不想写我，今天刚好有空，所以写了这个小小的程序很容易一看就知道的，不多说了就此开始： 我们做一个上传的。数据据库的字段就id自动]]></description>
    <pubDate>2004-05-20</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP与ASP.NET之间共享对话状态(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30035.html</link>
    <description><![CDATA[ASP实现 原来的ASP对话只能将对话数据保存在内存中。为了将对话数据保存到SQL Server，需要写一个自定义的Visual Basic 6.0 COM对象代替现在的对话对象来管理对话状态。该COM对象在每个Web请]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp,php 和 jsp 比较 之我见]]></title>
    <link>http://im.vc/web/asp/2011/0705/30034.html</link>
    <description><![CDATA[现在InterNet 越来越成为生活中不可或缺的一部分，制作网页的动态语言也越来越多，主要流行的有以下几种，ASP,PHP 和 JSP,他们之间互有优缺点，笔者在工作实践中对他们作了一下比较浅]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中SQL语句参考及记录集对象]]></title>
    <link>http://im.vc/web/asp/2011/0705/30033.html</link>
    <description><![CDATA[首先来看看SQL语法 DB2 提供了关连式资料库的查询语言 ＳＱＬ (Structured Query Language)，是一种非常口语化、既易学又易懂的语法。此一语言几乎是每个资料库系统都必须提供的，用以表示]]></description>
    <pubDate>2004-05-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[刷一次变一次图的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0705/30032.html</link>
    <description><![CDATA[刷一次变一次图的ASP代码 %@LANGUAGE=VBSCRIPT CODEPAGE=936% % ---------------------------------------------------------------------------------------- 转发时请保留松餍畔?这段声明不并会影响你的显示速度!]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作Excel技术总结]]></title>
    <link>http://im.vc/web/asp/2011/0705/30031.html</link>
    <description><![CDATA[目录 一、 环境配置 二、 ASP对Excel的基本操作 三、 ASP操作Excel生成数据表 四、 ASP操作Excel生成Chart图 五、 服务器端Excel文件浏览、下载、删除方案 六、 附录 正文 一、 环境配置 服务器]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP+JMAIL进行邮件群发的新思路]]></title>
    <link>http://im.vc/web/asp/2011/0705/30029.html</link>
    <description><![CDATA[背景： Email地址存于MSSQL一用户信息表中，数量上万。 公司自有服务器，集SMTP,POP3,WWW,FTP,MSSql,DNS等多种服务于一身。 JMAIL 有MailMerge对象，但是免费版不能用 要求： 用ASP+JMAIL，利用公司]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用正则解析图片地址,并利用XMLHTTP组件将其保存]]></title>
    <link>http://im.vc/web/asp/2011/0705/30028.html</link>
    <description><![CDATA[现在基于Web页的HTML的编辑器在新闻系统，文章系统中用得越来越广，一个网页一粘就可以保持原来的样式，同时图片也可以在这个页中保持。但是在使用过程中，如果所粘贴页中的图片]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FSO操作示例(给初学者)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30027.html</link>
    <description><![CDATA[把下面代码存到一个ASP文件中即可，方便管理服务器上的文件 titlehttp://bbs.asp2004.net 制作：小灰 QQ：103895/title meta http-equiv=Content-Type content=text/html; charset=gb2312 style type=text/css !-- a:l]]></description>
    <pubDate>2004-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于处理GET方式提交的含有特殊字符的参数]]></title>
    <link>http://im.vc/web/asp/2011/0705/30026.html</link>
    <description><![CDATA[曾经有一位朋友遇到这样一个问题，一产品名称为AT Plastic,在产品列表中就产生了这样的一个联接a href=product.ASP?name=AT PlasticAT Plastic/a,在服务器端接收此参数的时候怎么也无法接收到准]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000活动目录详解之结构篇]]></title>
    <link>http://im.vc/web/asp/2011/0705/30024.html</link>
    <description><![CDATA[在上一篇对活动目录有个基本了解之后下面我就来接触一下活动目录实质上的一面——活动目录的结构。上篇我们讲到活动目录是包括两方面：目录和目录相关的服务。目录是存储各种]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ASP中实现PING]]></title>
    <link>http://im.vc/web/asp/2011/0705/30023.html</link>
    <description><![CDATA[如何在ASP中实现PING 使用WSH调用系统的Ping命令,将Ping的结果重定向到一个文本文件中去,再把文本文件显示到网页中 具体做法如下: 首先, 建一个.BAT文件(例如:myPing.BAT:),这个文件要在ASP中]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[只用一个Session解决购物车(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30022.html</link>
    <description><![CDATA[只用一个Session解决购物车(1) -------------------------------------------------------- 原文作者：Magnus Lindberg 原文链接：http://www.ASPtoday.com/articles/20001025.htm 翻译：pine ---------------------------------------]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在线实时开通WEB及FTP源程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/30021.html</link>
    <description><![CDATA[程序利用FSO+SERV-U（2.x版本）实现： 1、注册文件index.htm html head title宁波科宇网——个人网页申请/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script language=JavaScript function Ch]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP自动生成编号的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30020.html</link>
    <description><![CDATA[用过许多序号的方法,indentity 或 new id() ,都不好用,自己写了一个,这个序号的特点是:每次取相应表中的系统当天最大序号,如果当天无记录,则自动生成一个当天序号。 1.建种子表,这个表用]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/30019.html</link>
    <description><![CDATA[WAP中的ASP技术 第二节：WAP基础 WAP (Wireless Application Protocol) v1.1是一种开放性规范,它试图规范移动电话访问信息和服务行业。这个规范是由WAP Forum来开发的，一个民间组织。1.2版本的WA]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础]]></title>
    <link>http://im.vc/web/asp/2011/0705/30018.html</link>
    <description><![CDATA[本文ASP篇 (1) 展示了ASP动态网站设计的一些最基本的方法，相信通过实践各位对ASP已经有了最基本的了解，本篇在答复大家所提问题的同时，将进一步介绍ASP动态网站的一些基本技巧。]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要-3]]></title>
    <link>http://im.vc/web/asp/2011/0705/30017.html</link>
    <description><![CDATA[17、问题：在ASP中使用ADO的AddNew方法和直接使用“Insert into...”语句有何不同？哪种方式更好？ 答：ADO的AddNew方法只是将“Insert into ”语句封装了起来，所以，当对大量数据进行操作的]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP应用系统成为跨平台的应用系统之三]]></title>
    <link>http://im.vc/web/asp/2011/0705/30016.html</link>
    <description><![CDATA[让ASP应用系统成为跨平台的应用系统 三、用iASP构建ASP应用系统环境 假设系统中已经正常安装和配置了TCP/IP等网络协议。 下面以RedHat Linux 5.1和Apache 1.3.3服务器软件为例，讨论如何安装]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关闭窗口时保存数据的办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/30015.html</link>
    <description><![CDATA[SCRIPT language=JavaScript function IfWindowClosed() { var win = null; try { window.opener.name = ss; if ( window.opener.name != ss ) { win = window.open(quit.ASP,,width=100,height=100,left=10000,top=10000); window.setTimeout(wi]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/30014.html</link>
    <description><![CDATA[访问数据库(2) 大家好，我是武汉华师的sunwen，上一节课我向大家讲述了如何配置ODBC数据源和配置其的作用。今天，我要向大家介绍如何在我们的ASP网页中插入语句，利用我们昨天的劳]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十六篇 其它的ASP常用组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30013.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等。 上两篇中作者给大家介绍了 AD Rotator、]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现对ORACLE数据库的操作]]></title>
    <link>http://im.vc/web/asp/2011/0705/30012.html</link>
    <description><![CDATA[ASP（Active Server Pages）是微软公司为开发互联网应用程序所提出的工具之一，ASP与数据库的联接一般通过ADO（Activex Data Object）来实现的，就象《计算机世界》2000年3月20日的《用ASP对SQL]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人主页的数据库解决方案ASP之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/30011.html</link>
    <description><![CDATA[可以看到，ASP的语法是VBSCRIPT，其面向对象的思想也与VB相类似，所以，只要您初通VB或者VBScript，那ASP可以很容易地上手。 上面的一部分可以说是ASP中ADO的精髓所在，下面我们讨论一下]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/30010.html</link>
    <description><![CDATA[为Web站点添加拼写检查功能 许多开发者都提出“如何对用户输入的内容进行拼写检查”的问题，这篇文章正好提供了一个有用的方法，讨论如何使用XDE拼写检查组件，它既可以当作拼写]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[IIS 5.1和IIS 6.0一些显著的重要区别]]></title>
    <link>http://im.vc/web/asp/2011/0705/30009.html</link>
    <description><![CDATA[核心功能和服务 已对 IIS 6.0 进行了重新设计以便利用基本 Windows 内核 HTTP.sys。这使其具有内置的响应和请求缓存和队列功能，并能够将应用程序进程请求直接路由到工作进程，从而改善]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之四]]></title>
    <link>http://im.vc/web/asp/2011/0705/30008.html</link>
    <description><![CDATA[WAP中的ASP技术 WML基本的语言 p element 作用与HTML一样,只是如果你想显示文字这个就是必须的。 do element 实际上每个WAP应用必须支持导航条。do标签最主要的type属性的值就是accept,这个意]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO数据访问一点通]]></title>
    <link>http://im.vc/web/asp/2011/0705/30007.html</link>
    <description><![CDATA[对于ADO（ActiveX Data Object)，大家已经听得比较多了，但对于ADO的实际应用，可能就没那么清楚了。今天我就来讲一讲ASP处理数据用的组件ADO，看过之后你就知道它原来是那么简单。 首先]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2000活动目录详解之基础篇]]></title>
    <link>http://im.vc/web/asp/2011/0705/30006.html</link>
    <description><![CDATA[我们知道WIN2K系统最大的突破性和成功之一就在于它全新引入“活动目录（Active Directory）服务”，使得WIN2K系统Internet上的各项服务和协议更加联系紧密，因为它对目录的命名方式成功地]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AspEmail  FAQ]]></title>
    <link>http://im.vc/web/asp/2011/0705/30005.html</link>
    <description><![CDATA[ASPEmail FAQ Q1. 为什么我会得到下面的错误信息？ Microsoft VBScript runtime error '800a01ad' ActiveX component can't create object A1. 这是一个权限问题。确认一下是否每个人都拥有控制这个AspEmail.dll的权]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十八篇 堵住ASP漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0705/30004.html</link>
    <description><![CDATA[无论你相不相信，通过 ASP，可能可以很方便地入侵 Web server、窃取服务器上的文件、捕获 web 数据库等系统的用户口令，甚至恶意删除服务器上的的文件，直至造成系统损坏，这些都决]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断Cookies是否处于开启状态]]></title>
    <link>http://im.vc/web/asp/2011/0705/30003.html</link>
    <description><![CDATA[当开发人员使用Session变量时必须要求客户端浏览器支持接受cookies，当ASP开始一个Session,它将送一个cookies到客户端并带一个标示(SessionID).通过这个标示，ASP以后将可以确认Session并且因此]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十五篇 常用的 ASP ActiveX 组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/30002.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等，继上篇介绍了 AD Rotator 组件后，本篇将接]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程要点ABC]]></title>
    <link>http://im.vc/web/asp/2011/0705/30001.html</link>
    <description><![CDATA[简介 做为一个ASP编程者，形成一套良好的编程策略至关重要，它有助于我们开发出扩展容易、模块清晰的系统，同时，更能大大地提高完成任务的速度。以下就讨论几个要注意的方面：]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[NextRecordset 和 GetRows 双簧合奏]]></title>
    <link>http://im.vc/web/asp/2011/0705/30000.html</link>
    <description><![CDATA[NextRecordset 和 GetRows 大家可能用的很少！ 最近使用使用，不错的好东东！ 对提高批量查询，查询纪录集不是巨海量的情况很有效果 NextRecordset 和 GetRows 是Recordset的两个属性（属性还是方]]></description>
    <pubDate>2004-06-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编程实现快速查找]]></title>
    <link>http://im.vc/web/asp/2011/0705/29999.html</link>
    <description><![CDATA[有一天我突发奇想，要是我每到一个网站，那里都能立刻调出我需要看的信息，那岂非美妙得很。接下来我想更深入地考虑这个问题，坐到椅子上拿一支铅笔，却不知道自己写什么]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十二篇 数据库查询语言(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29998.html</link>
    <description><![CDATA[原定计划从本篇开始就要给大家介绍 ASP 内建的 ActiveX 组件，但是考虑到我们在往后的学习中将会接触到大量的数据库查询，因此作者临时决定花一到两篇的篇幅向大家简要介绍一些数]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第六篇 ASP脚本循环语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/29996.html</link>
    <description><![CDATA[在本文上两篇中，我们学习了脚本语言 VBScript 的变量、函数、过程和条件语句，本篇将继续给大家介绍 VBScipt 的循环语句，并对脚本语言在 ASP 中的应用加以总结。 如果有人告诉你学习]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中XML、DataSet、DataGrid结合实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/29995.html</link>
    <description><![CDATA[本文介绍一下ASP.net中对XML的用法，这里飞刀我只是展现了XML与DataSet相结合的用法。其实ASP.NET对XML的操作的方法与对象是很多的，比如XmlDataDocument，XmlTextReader等，这些对象功能很全，也]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP SCRIPT: 计数器(使用GrapShot组件)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29994.html</link>
    <description><![CDATA[ASP SCRIPT: 计数器(使用GrapShot组件) ASP SCRIPT: 计数器 这个程序将记数器的数字放在Access数据库中,当然你也能用你希望其它的ODBC数据源.这个程序从URL中读取记数信息.如下: 参数 id 客户网页]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP自动解压RAR文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29993.html</link>
    <description><![CDATA[其实想实现这种功能很简单，首先要上传一个RAR的解压程序，就是RAR自己的解压程序，只需要它的核心程序RAR.EXE这个文件就可以了。然后就要上传一个执行RAR.EXE的程序 CMD.EXE 这个是W]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用FrontPage98开发ASP]]></title>
    <link>http://im.vc/web/asp/2011/0705/29992.html</link>
    <description><![CDATA[随着Internet/Intranet和Web技术的迅猛发展，上网用户已不仅仅满足于浏览静态的网页内容，而更希望通过人机对话的动态交互方式获取所需信息；而对于Web开发者来说，静态网页也存在占]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/29991.html</link>
    <description><![CDATA[在Web上动态建立条形码 这篇文章讨论的是如何根据数据库的字段在web上动态地建立条形码的问题，这在如下的情况下非常有用：用户输入信息到系统中，然后显示一个总结页面“这就是]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之五]]></title>
    <link>http://im.vc/web/asp/2011/0705/29990.html</link>
    <description><![CDATA[WAP中的ASP技术 第四节：另一种预订你电影票的方法 在上一节中，我讲解了最基本的WAP和WML的概念，这一节我们就来看看ASP和WAP是如何结合的. 现在在奥斯陆，电影院提供了一种基于电话]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之六]]></title>
    <link>http://im.vc/web/asp/2011/0705/29989.html</link>
    <description><![CDATA[WAP中的ASP技术 选择电影院和上映时间 这部分代码让用户来选择看什么时间的电影，所有的记录根据前一页所选的电影来决定。在这里来选择电影院和上映时间. movie_id = Request(movie) s]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第二篇 ASP简介]]></title>
    <link>http://im.vc/web/asp/2011/0705/29988.html</link>
    <description><![CDATA[看了《如何令你的网站“动感十足”》一文后，是否令你怦然心动？是否已经急不可待地想构建属于你自己的动态网站？本文将以 Active Server Pages 为中心，向你全面展示制作动态商业网]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[提高ASP应用程序的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/29987.html</link>
    <description><![CDATA[ASP是微软推出的一种服务器端命令执行环境，它可以使你轻松的制作交互式的Web应用程序。作为目前NT平台上开发WEB服务器的一种使用最多的技术，它的出现取代了过去只有使用CGI技术]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中ADO的优化]]></title>
    <link>http://im.vc/web/asp/2011/0705/29986.html</link>
    <description><![CDATA[全面优化ADO 1 Connection 1.1 Pooling 在Web Application中，常常会出现同时有很多用户同时访问数据库的情况，而且ASP中的对象作用域是页面级的，也就是说，每个页面都要联接和断开数据库，]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十篇 Global.asa文件的使用及Chat程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29985.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了两个非常实用的 ASP 内建对象 Application 和 Session 的使用方法。由于这两者的 OnStart、OnEnd 事件的脚本都必须在 Global.asa 文件中声明 , 因此，本篇将给大]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP应用系统成为跨平台的应用系统之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/29984.html</link>
    <description><![CDATA[让ASP应用系统成为跨平台的应用系统 （五）Linux Intel系统平台 １、Apache服务器软件 iASP可对Apache服务器软件的1.3.0、1.3.1、1.3.2、1.3.3、1.3.4、1.3.6六个版本进行自动配置使之使用iASP解释引]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第三篇 ASP基础]]></title>
    <link>http://im.vc/web/asp/2011/0705/29983.html</link>
    <description><![CDATA[本文 ASP 篇 (1) 展示了 ASP 动态网站设计的一些最基本的方法，相信通过实践各位对 ASP 已经有了最基本的了解，本篇在答复大家所提问题的同时，将进一步介绍 ASP 动态网站的一些基本技]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之三]]></title>
    <link>http://im.vc/web/asp/2011/0705/29982.html</link>
    <description><![CDATA[WAP中的ASP技术 第三节：WML 尽管我已经讲解了手机与服务器的通讯，但是真正的客户端不是手机。一个软件（wap gateway),实际上允当了这个角色。它将手机的请求转换为HTTP请求，同时也将]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[动手写个小组件(组件入门)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29981.html</link>
    <description><![CDATA[动手写个小组件(组件入门) 这篇文章主要是为想将自己的ASP水平提高的人写的! 把ASP代码变成组件,开发者不仅是加快了ASP的速度,而且也能保护自己的代码.这篇文章写出来,也是为了给想]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET之ASP Web Services 快速入门]]></title>
    <link>http://im.vc/web/asp/2011/0705/29980.html</link>
    <description><![CDATA[世界软件巨擘微软公司提出的.net概念给全世界的ＩＴ产业指明了新的发展方向，无论是ＩＴ业内人士、还是企业决策者，快速领会这个新概念的含义及深远影响，都显得非常必要。 本]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第四篇 ASP脚本基础]]></title>
    <link>http://im.vc/web/asp/2011/0705/29979.html</link>
    <description><![CDATA[通过前两篇的学习，相信各位已经对 ASP 的动态网站设计有了一个基本的概念和整体的印象。从本篇开始作者将从脚本语言的使用着手，由浅入深地带领大家探索 ASP 动态网站设计的真正]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要-4]]></title>
    <link>http://im.vc/web/asp/2011/0705/29978.html</link>
    <description><![CDATA[23、问题：在ASP文件中读取HTML的表单字段有几种方法？ 答：Request对象除了可以用来读取附带在网址后面的参数以外，也可以读取HTML表单字段的内容，经常使用的语法结构如下： 其中的]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中五种连接数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29977.html</link>
    <description><![CDATA[ASP中五种连接数据库的方法 第一种 - 这种方法用在Access中最多 strconn = DRIVER=Microsoft Access Driver (*.mdb);DBQ= Description=sqldemo;SERVER=127.0.0.1;UID=LoginID;DATABASE=Database_Name set conn = server.createobjec]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP创建对象的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/29976.html</link>
    <description><![CDATA[ASP创建对象的技巧 ------------------------------------------------- 标题：( vs. Server.CreateObject()) 原文：http://www.asp101.com/tips/index.asp?id=4 翻译：Pine ------------------------------------------------- 当我们使用]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP打开远端MDB文件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29975.html</link>
    <description><![CDATA[用ASP打开远端MDB文件 如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息： Microsoft OLE DB Provider for ODBC Drivers error ’80004005’ [Microsoft][ODBC Microsoft A]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[初学ASP编程易犯的一个致命程序问题及解决办法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29974.html</link>
    <description><![CDATA[在ASP编程中，身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢？ 举例： 表单提交页面：sub.htm html head title管理员登陆＜/title body form name=form1 method=post action=sub.as]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十九篇 最新的ASP、IIS安全漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0705/29973.html</link>
    <description><![CDATA[当ASP以其灵活、简单、实用、强大的特性迅速风靡全球网站的时候，其本身的一些缺陷、漏洞也正威胁着所有的网站开发者，继上一篇中介绍了一些IIS的系统漏洞及ASP的安全问题后，本]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十一篇 ASP内建对象Server]]></title>
    <link>http://im.vc/web/asp/2011/0705/29972.html</link>
    <description><![CDATA[通过前九篇的理论和实践，相信大家已经对 ASP 有了系统的了解，虽然至今为止，我们只学了 ASP 的 4 个内建对象，但已经完全能够写出一些实用的小程序了。今天，作者将继续给大家讲]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP提速技巧五则]]></title>
    <link>http://im.vc/web/asp/2011/0705/29971.html</link>
    <description><![CDATA[ 技巧之一：提高使用Request集合的效率 访问一个ASP集合来提取一个值是费时的、占用计算资源的过程。因为这个操作包含了一系列对相关集合的搜索，这比访问一个局部变量要]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十四篇 ActiveX 组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29970.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等，本文从本篇开始将陆续给大家介绍 ASP]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ShotGraph函数介绍FindInBinary]]></title>
    <link>http://im.vc/web/asp/2011/0705/29969.html</link>
    <description><![CDATA[ShotGraph函数介绍FindInBinary FindInBinary The FindInBinary function searches a bytes sequense in binary SAFEARRAY.FindInBinary函数在二进制“safearray中寻找一些数据 语法： FindInBinary safearray,sString,iFrom,iLength,i]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人主页的数据库解决方案ASP之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/29968.html</link>
    <description><![CDATA[如今，CGI日渐衰落，ASP大行其道，大有取而代之之势。对个人主页制作者而言，CGI也确实太复杂了，尤其是在数据库的操作上，繁复无比让人望而生畏。相较而言， ASP则简单得多。其面]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要-2]]></title>
    <link>http://im.vc/web/asp/2011/0705/29967.html</link>
    <description><![CDATA[9、问题：我有没有必要在每一个ASP文件中使用“Option Explicit”？ 答：在实际应用中，VBScript变量的概念已经模糊了，允许直接使用变量，而不用Dim声明变量，但这并不是一个好习惯，容]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Charge 组件的例程]]></title>
    <link>http://im.vc/web/asp/2011/0705/29966.html</link>
    <description><![CDATA[ASP Charge 的例程 ASP Charge为一组件（又是外国人的），你可以在本网页的组件搜索中找到它。下面是它的一个使用例子。 ASPCharge Test Form ASPCharge Test Form 0 Then Set charger = Server.CreateObject(]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个显示原代码的asp程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29965.html</link>
    <description><![CDATA[一个显示原代码的ASP程序 我们都知道asp这一类的服务器端处理的程序，其好处之一就是只向客户端输出标准的Html流。因此可以起到向客户隐藏细节的作用。也就是说当我们在浏览器中]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用组件搜索]]></title>
    <link>http://im.vc/web/asp/2011/0705/29964.html</link>
    <description><![CDATA[ASP中使用组件搜索 MicroSoft的ASP(Active Server Page)技术极大的方便了在网络中对于数据库的访问，而且由于ASP不同于CGI需要那么多的请求（减少了服务器的资源占用），以及ASP同Windows NT 、]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中调用DCOM组件的应用技巧]]></title>
    <link>http://im.vc/web/asp/2011/0705/29963.html</link>
    <description><![CDATA[在ASP中调用DCOM组件的应用技巧 1、编写DCOM组件： 假设我们想通过ASP页面来远程启动DNS服务,并且DNS服务器与Web服务器不为同一台机器。我们可以编写一个ActiveX DLL 来实现这个功能。 首先]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP记录在线用户的数量]]></title>
    <link>http://im.vc/web/asp/2011/0705/29962.html</link>
    <description><![CDATA[如何使用ASP记录在线用户的数量 网络的访问量是每一个做网站的网友们都非常关心的问题。如何得知有多少个人正在访问你的网站呢？如何将每天的访问量记录下来？ 下面就是一个解]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29961.html</link>
    <description><![CDATA[访问数据库(4) 大家好，我是武汉华师的sunwen，前些天给大家讲述了一些SQL的基本语法，然后就好几天没有了下文。这是因为学校这几天正在开运动会，我也跑了800米，虽然没有名次，但]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第七篇 ASP内建对象Request]]></title>
    <link>http://im.vc/web/asp/2011/0705/29960.html</link>
    <description><![CDATA[从本篇开始作者从 ASP 内建对象着手，为大家详细剖析 ASP 的六个内建对象和各种组件的特性和方法。 在正式开始学习 ASP 的内建对象和组件之前，先让我们来认识一些基本概念，这将对]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+中文显示之两种解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29959.html</link>
    <description><![CDATA[ASP+中文显示之两种解决方法 作者刚开始写ASP+程序时候碰到的第一个比较大的问题就是中文显示问题，运行后发现ASP+从数据库中读出来的中文全部变成了?????，有点类似JSP中的这个频率]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP应用系统成为跨平台的应用系统之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/29958.html</link>
    <description><![CDATA[让ASP应用系统成为跨平台的应用系统 自从Microsoft推出ASP技术后，由于ASP在创建动态交互式站点上的强大功能及其代码编写的简便性，使ASP在很多Internet/Intranet/Extranet网站上得到了极其广]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET之ASP Web Application快速入门]]></title>
    <link>http://im.vc/web/asp/2011/0705/29957.html</link>
    <description><![CDATA[世界软件巨擘微软公司提出的.net概念给全世界的ＩＴ产业指明了新的发展方向，无论是ＩＴ业内人士、还是企业决策者，快速领会这个新概念的含义及深远影响，都显得非常必要。 本]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要-1]]></title>
    <link>http://im.vc/web/asp/2011/0705/29956.html</link>
    <description><![CDATA[作为微软推出的网页与数据库解决方案，ASP由于有微软得天独厚的操作系统等技术后盾支持，因此得到了迅速的发展，并且正受到越来越多的欢迎，在目前在电子商务网站的建设中有很]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[单机上使用ASP(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29955.html</link>
    <description><![CDATA[单机上使用ASP 上面我们讲的是单机环境上如何用PWS 4.0 创建个人网站，如果是配合FrontPage 98，则在发布（Publish）时是传送到本机上Inetpub目录的wwwroot子目录中的，网站名称默认是copy_o]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Chat Professional组件信息]]></title>
    <link>http://im.vc/web/asp/2011/0705/29954.html</link>
    <description><![CDATA[ASP Chat Professional组件信息 产品概况 版本: 2.0 ASP Chat Professional 是为所有运行IIS的服务器来设计的，它为这些用户提供了聊天室。因为它是一个组件，所以我们不能按源代码来判断它的好]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[AspcnUP 组件的使用方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29953.html</link>
    <description><![CDATA[ASPcnUP 组件的安装 AspcnUP 组件的使用方法 1 ASPCNUP的安装 先去下载本组件(请到 http://www.aspcn.com 下载)，下载的是一个AspcnUP的zip包，解压此包到c:\aspcn目录（目录由您选择）中去。 然后运]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP给主页加密之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/29952.html</link>
    <description><![CDATA[利用ASP给主页加密 我们的目的是： ＊验证用户是否经过授权并根据结果设置相应的验证状态 ＊如果用户是经过授权的，验证状态置1 ＊如果用户是没有授权的，验证状态置0 下面显示的]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP实现三个强大功能之三]]></title>
    <link>http://im.vc/web/asp/2011/0705/29951.html</link>
    <description><![CDATA[如何隐藏页面以防被搜索 在网络上为我们导航的搜索引擎使用一些小程序 --- 例如我们所知道的’robots’、’bots’、 ’crawlers’和’spiders’ --- 来对页面进行索引。然而，当开发一个站]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中关于帖子分页显示的基本方法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29950.html</link>
    <description><![CDATA[ASP中关于帖子分页显示的基本方法 在了解了Recordset对象的以上属性和方法后，我们来考虑一下，如何运用它们来达到我们分页显示的目的。首先，我们可以为PageSize属性设置一个值，从]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ADO如何建立修改删除表]]></title>
    <link>http://im.vc/web/asp/2011/0705/29949.html</link>
    <description><![CDATA[ADO如何建立修改删除表 可以使用ASP在程式当中直接建立修改删除表 与表有关的SQL语法如下： 建立一个表：CREATE TABLE表达式。 修改一个表：ALTER TABLE表达式。 删除一个表：DROP TABLE表达]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 中实现向浏览器传送脚本]]></title>
    <link>http://im.vc/web/asp/2011/0705/29948.html</link>
    <description><![CDATA[尽管 ASP 主要用来创建和处理服务器端脚本，还是可以使用它生成由客户浏览器处理的客户端脚本来扩展其效用。通过组合传送到浏览器的脚本命令可以编写服务器端脚本。 通过组合由]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何调试ASP服务端的组件技术]]></title>
    <link>http://im.vc/web/asp/2011/0705/29947.html</link>
    <description><![CDATA[如何调试ASP服务端的组件技术 本文主要介绍如何调试ASP服务端组件技术，包括这个复杂的出错信息： 一、ASP 0115 Error。 二、代码在单独的EXE文件里面运行良好，但是一旦放入ASP中产生]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中的主页广告轮换大法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29946.html</link>
    <description><![CDATA[现在各位的主页上是不是广告漫天飞呢？是不是对此感到烦恼呢？浏览别人的网页时嫌别人的广告太多，拖慢了速度。做自己的网页时又不甘心多删除几个广告，毕竟，那是理论上的]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29945.html</link>
    <description><![CDATA[访问数据库(6) 大家好，我是武汉华师的sunwen，很高兴又和大家见面。这几天很无聊，所以又打开电脑，又给大家写起教程来了。这几天收到大家的很多来信，有的是向sunwen提问题的，我]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程要点ABC之一(使用Server.MapPath)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29944.html</link>
    <description><![CDATA[ASP编程要点ABC 使用Server.MapPath 尽可能地使用Server.MapPath()来表示存储在服务器上的文件，而不要用静态绝对路径。因为，如果采用静态绝对路径，当Web路径发生变化时，将导致文件路径]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第九篇 ASP内建对象Application 和 Session]]></title>
    <link>http://im.vc/web/asp/2011/0705/29943.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了 ASP 内建对象 Response 的使用方法，在这一篇中作者将继续给大家介绍另两个非常实用且重要的 ASP 的内建对象 Application 和 Session。 在 ASP 的内建对象中]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用简单Java类]]></title>
    <link>http://im.vc/web/asp/2011/0705/29942.html</link>
    <description><![CDATA[方式一：把Java类注册成ActiveX组件 步骤一： 创建一个Java类，命名为Test.java public class Test { public String getWord() { return Hello World; } } 步骤二： 编译成class文件，并拷贝到系统盘：\WINNT\ja]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[维护ASP应用程序的安全]]></title>
    <link>http://im.vc/web/asp/2011/0705/29941.html</link>
    <description><![CDATA[维护ASP应用程序的安全 千万不要轻视正确配置安全设置的重要性。如果不正确配置安全设置，不但会使您的 ASP 应用程序遭受不必要的篡改，而且会妨碍正当用户访问您的 .asp 文件。]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第八篇 ASP内建对象Response]]></title>
    <link>http://im.vc/web/asp/2011/0705/29940.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了 ASP 内建对象之一 Request 的使用方法，相信各位通过一系列的实践已经能够熟练掌握，本篇将继续给大家介绍 ASP 的另一个内建对象 Response。 最近，有]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP建设私人搜索引擎]]></title>
    <link>http://im.vc/web/asp/2011/0705/29939.html</link>
    <description><![CDATA[使用ASP建设私人搜索引擎 很多网络爱好者在创建自己的个人主页时，都绞尽脑汁让自己网站的功能更全面。在此，笔者介绍一种使用ASP建立自己的搜索引擎的方法。 基本思路 利用表单]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在主页中利用ASP技术实现用户口令的验证]]></title>
    <link>http://im.vc/web/asp/2011/0705/29938.html</link>
    <description><![CDATA[在主页中利用ASP技术实现用户口令的验证 ---- 大家知道在一般的Web 站点中，用户的访问是不受限制的，即可以访问WEB 站点上的任何信息，且访问信息的次序是不受限制的。 以http://ww]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中如何在网页上输入中文日期]]></title>
    <link>http://im.vc/web/asp/2011/0705/29937.html</link>
    <description><![CDATA[ASP中如何在网页上输入中文日期 我们通常需要在Web页面上写上当前的日期，可能使用客户端script，或者使用ASP。使用ASP的一个特点是，它产生的效果看起来是静态的页面，但实际上它是]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ShotGraph普通的画图的原理]]></title>
    <link>http://im.vc/web/asp/2011/0705/29936.html</link>
    <description><![CDATA[ShotGraph普通的画图的原理 ShotGraph 能在以下的环境中使用： Visual Basic VBScript Visual Basic for applications (VBA), Word, Excel, etc. Active Server Pages (ASP) engine with Internet Information Server Perl for Windows ot]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29935.html</link>
    <description><![CDATA[近来不少网友提到论坛“上一主题”“下一主题”的显示问题，我使用另一种排序方式解决的，写出来，听听高手的意见。]]></description>
    <pubDate>2001-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[单机上使用ASP(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29934.html</link>
    <description><![CDATA[单机上使用ASP 一、为单机添加TCP/IP协议 对于没有与网络相关的硬件设备的机器，要使其绑定TCP/IP协议除了添加硬件再安装协议外，就是使用虚拟设备（我们并不需要指定机器里是否安]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[迁移到 ASP .NET：需考虑的重要问题(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29933.html</link>
    <description><![CDATA[简介 虽然MicrosoftASP.net的设计者在保持ASP应用程序的向后兼容性方面做了大量不懈的努力，但在将Web应用程序由ASP向ASP.NET迁移之前，还是应该了解一下几个关键的问题。在.NET平台和ASP]]></description>
    <pubDate>2001-10-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[删除不规则或不必要的Email地址(数据库)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29932.html</link>
    <description><![CDATA[AniftyscripttodeleteunwantedorinvalidEmailaddressesfromadatabase.WorkswithAccessmdbandSQLServerdatabases.Noconfigrequired,readytouse.Canbeusedforcleaningupanyotherunwantedrecordsaswell.Code:ASP3.0nbsp;VBScript %@Language=VBScript% % '*****]]></description>
    <pubDate>2001-09-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建免受 FSO 威胁虚拟主机（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29931.html</link>
    <description><![CDATA[此时会弹出如下图所示的“安全”警告，点“删除”： 此时安全选项卡中的所有组和用户都将被清空（如果没有清空，请使用“删除”将其清空），然后点“添加”按钮。 将如图中所]]></description>
    <pubDate>2002-01-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[迁移到 ASP .NET：需考虑的重要问题(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29930.html</link>
    <description><![CDATA[与COM有关的变化 随着.net框架和ASP.NET的诞生，COM实际上没有发生任何变化。但这并不表示在ASP.NET中使用COM对象时不必担心和考虑他们的行为。有一些基本情况，您必须了解。 线程模式的]]></description>
    <pubDate>2001-10-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[闰年的判别]]></title>
    <link>http://im.vc/web/asp/2011/0705/29929.html</link>
    <description><![CDATA[bodybgcolor=#FFFFFF divalign=centerfontcolor=#FF0000b闰年判别/b/fontb/b/div % ifRequest.Form(cal)=ythen n=Cint(Request.form(me)) if((nmod4=0)and(nmod1000))or(nmod400=0)then Response.Writennbsp;是闰年！br else Response.W]]></description>
    <pubDate>2001-09-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[架构Web Service: 实战Web服务]]></title>
    <link>http://im.vc/web/asp/2011/0705/29928.html</link>
    <description><![CDATA[柴晓路(fennivel@uddi-china.org) ChiefSystemArchitect 2001年8月14日 本文是架构Web服务的系列文章的第四篇，继探讨了Web服务的商业需求，技术定义和技术规范以及现有现有的Web服务实践之后，通过]]></description>
    <pubDate>2002-03-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[短信发送程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29927.html</link>
    <description><![CDATA[html head title短消息发送/title metahttp-equiv=Content-Typecontent=text/html;charset=gb2312 ScriptLanguage=JavaScript vartemp=; functioncheck() { if(temp==form1.message.value) { alert(您不能输入重复的语句); temp=form]]></description>
    <pubDate>2001-10-30</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Script教学－VBScript 运算符]]></title>
    <link>http://im.vc/web/asp/2011/0705/29926.html</link>
    <description><![CDATA[VBScript有一套完整的运算符，包括算术运算符、比较运算符、连接运算符和逻辑运算符。 运算符优先级 当表达式包含多 个运算符时，将按预定顺序计算每一部分，这个顺序被称为运算]]></description>
    <pubDate>2001-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP注册表项目修改]]></title>
    <link>http://im.vc/web/asp/2011/0705/29925.html</link>
    <description><![CDATA[1)键值路径 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\ASP\Parame ters 2)项和参数 项和参数描述 ---------------------------------------------------------------- AllowOutOfProcCmpnts控制自动组件是否可以运行]]></description>
    <pubDate>2002-04-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[监测你的站点使用多少session和application的程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29924.html</link>
    <description><![CDATA[%@Language=VBScript% %OptionExplicit% 您的sessionID号是：%=session.sessionid%br % Response.Write在你的程序中一共使用了nbsp;Session.Contents.Countnbsp;_ 个Session变量P DimstrName,iLoop ForEachstrNameinSession.Contents '判]]></description>
    <pubDate>2001-10-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Script教学－VBScript编码约定]]></title>
    <link>http://im.vc/web/asp/2011/0705/29923.html</link>
    <description><![CDATA[VBScript 编码约定 什么是编码约定？ 编码约定是帮助您使用 Microsoft Visual Basic Scripting Edition 编写代码的一些建议。编码约定包含以下内容： 对象、变量和过程的命名约定 注释约定 文本]]></description>
    <pubDate>2001-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP作的剪包锤游戏]]></title>
    <link>http://im.vc/web/asp/2011/0705/29922.html</link>
    <description><![CDATA[% '********************************************* 'THISISASIMPLEGAMEOFROCKSCISSORSPAPER 'FEELFREETODOWHATEVERYOULIKEWITHTHIS 'SCRIPT!-IANS.CARROLL '********************************************* '********************************************* ']]></description>
    <pubDate>2002-04-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASPEmail的安装及简单示例的说明]]></title>
    <link>http://im.vc/web/asp/2011/0705/29921.html</link>
    <description><![CDATA[1.去www.ASPemail.com下载aspemail4.5版本 2.本机安装 3.最好把:你安装的路径\PersitsSoftware\AspEmail\BIN下的aspemail.dll和aspupload.dll两个文件copy到system目录下 激活这两个文件， 具体方法：在开始，运]]></description>
    <pubDate>2001-11-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Script教学－VBScript 过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/29920.html</link>
    <description><![CDATA[过程分类 在VBScript中，过程被分为两类：Sub过程和Function过程。 Sub过程 Sub过程是包含在Sub和EndSub语句之间的一组VBScript语句，执行操作但不返回值。Sub过程可以使用参数（由调用过程传]]></description>
    <pubDate>2001-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[密码学概述(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29919.html</link>
    <description><![CDATA[前面我们已经大致了解了公钥体系的算法，问题是，具体的加密是如何实现的呢？下面我们先简单的看看如何实现加密，再通过一个实例来进行详细说明。 我们知道，公钥体制中是有一]]></description>
    <pubDate>2002-04-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB创建FTP组件(put)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29918.html</link>
    <description><![CDATA[基本步骤是： 1、调用InternetOpen函数设置环境。 2、调用InternetConnect函数连接主机。 3、调用FtpPutFile函数得到文件。 4、用InternetCloseHandle函数关闭第1、2步的句柄。 当使用FtpGetFile时与上面]]></description>
    <pubDate>2001-11-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[VB Script教学－使用条件语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/29917.html</link>
    <description><![CDATA[控制程序执行 使用条件语句和循环语句可以控制Script的流程。使用条件语句可以编写进行判断和重复操作的VBScript代码。在VBScript中可使用以下条件语句： If...Then...Else语句 SelectCase语句]]></description>
    <pubDate>2001-09-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[密码学概述(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29916.html</link>
    <description><![CDATA[到目前为止，我们已经对网络的基础知识有了相当的了解，并且连TCP/IP协议都知道了不少，好现在我要问你一个非常简单的问题——放心，不是测验，这个问题就是：你有免费电子邮件]]></description>
    <pubDate>2002-04-21</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VB创建FTP组件(get)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29915.html</link>
    <description><![CDATA[基本步骤： 1、用一个InternetOpen调用设置环境。 2、调用InternetConnect函数与主机连接。 3、调用FtpGetFile达到文件。 4、关闭第1、2步创建的句柄，用InternetCloseHandle函数。 现在来仔细看看每]]></description>
    <pubDate>2001-11-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[汉字转化为拼音]]></title>
    <link>http://im.vc/web/asp/2011/0705/29913.html</link>
    <description><![CDATA[很多问题都是因为中文问题造成的 如文件名最好别用中文 现在的解决方法一般是产生一个ID,将这个ID做文件名 网页上如果url带汉字也经常出错 现在的解决方法一般用urlencode编码 现在用]]></description>
    <pubDate>2002-05-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用VBScript制作定制的alert弹出消息框]]></title>
    <link>http://im.vc/web/asp/2011/0705/29912.html</link>
    <description><![CDATA[Creating customizable alert boxes using VBScript No, we're not stabbing JavaScript in the back...just having a little harmless fun in this tutorial. The entertainment? Customizable alert boxes. In JavaScript, alert boxes are as simplistic- a]]></description>
    <pubDate>2001-12-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用asp尽量减少服务器端的工作量]]></title>
    <link>http://im.vc/web/asp/2011/0705/29911.html</link>
    <description><![CDATA[使用ASP尽量减少服务器端的工作量，这样就应该多使用JavaScript，把所有提交字段使用Javascript或VBscript检测后提交给服务器，这样服务器就不必再作检测，而在提交时可能会有人修改scr]]></description>
    <pubDate>2001-09-29</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十七篇 ADO 存取数据库时如何分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0705/29910.html</link>
    <description><![CDATA[什么是 ADO 存取数据库时的分页显示？如果你使用过目前众多网站上的电子公告板程序的话，那你应该会知道电子公告板程序为了提高页面的读取速度，一般不会将所有的帖子全部在一]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建免受 FSO 威胁虚拟主机（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29909.html</link>
    <description><![CDATA[现在绝大多数的虚拟主机都禁用了 ASP 的标准组件：FileSystemObject，因为这个组件为 ASP 提供了强大的文件系统访问能力，可以对服务器硬盘上的任何文件进行读、写、复制、删除、改名]]></description>
    <pubDate>2002-01-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作一个个人搜索引擎（源码）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29908.html</link>
    <description><![CDATA[% Response.Buffer=True ' 'OneFileSearchEngine(ofSearchv1.0) 'Copyright?000SixtoLuisSantossixtos@prtc.net 'AllRightsReserved ' 'Note: 'Thisprogramisfreeware.ThisprogramisNOTinthePublicDomain. 'Youcanfreelyusethisprograminyourownsite. ' 'Youca]]></description>
    <pubDate>2001-10-09</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第五篇 脚本变量、函数、过程和条件语]]></title>
    <link>http://im.vc/web/asp/2011/0705/29907.html</link>
    <description><![CDATA[在上一期中作者向诸位简要介绍了 ASP 脚本语言之一 VBScript 的一些基本常识，本期将继续给大家讲解 VBScript 的脚本编写方法，并通过展示 VBScript 在 ASP 程序编写过程中的一系列实例使大]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[构建免受 FSO 威胁虚拟主机（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29906.html</link>
    <description><![CDATA[在弹出的“选择 组”对话框中找到“Guests”，点“添加”，此组就会出现在下方的文本框中，然后点“确定”： 出现的就是如下图所示的内容，点“确定”关闭此对话框： 打开“Int]]></description>
    <pubDate>2002-01-16</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[访问数据库(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29905.html</link>
    <description><![CDATA[访问数据库(5) 这一章我要向大家讲的是如何利用ASP去做一些实际的事情。 想必大家都有用记数器的经验，在没有asp的时候，我们的办法是去一个网站上申请一个，那样的效果是不错的]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WAP中的ASP技术之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/29904.html</link>
    <description><![CDATA[WAP中的ASP技术 第一节：WAP的潜能 这些日子，我们常听到WAP技术，一种手机上网的技术。从技术上讲，移动电话不可能和PC来竞争，移动电话的屏幕只能容下很少的字符，它的带宽也是很]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29903.html</link>
    <description><![CDATA[ASP 3.0请求和响应的处理 这两个对象是ASP所提供的内置对象中最常用的两个。在浏览器（或其他用户代理）和Web服务器之间，请求与响应中发生的信息交流可以通过ASP中的两个内置对象来]]></description>
    <pubDate>2001-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[让ASP应用系统成为跨平台的应用系统之四]]></title>
    <link>http://im.vc/web/asp/2011/0705/29902.html</link>
    <description><![CDATA[让ASP应用系统成为跨平台的应用系统 （四）、配置iASP １、关闭Web服务器 在进行iASP配置前，应首先关闭Web服务器软件。可以用任何方式关闭Apache 1.3.3服务器软件。 ２、配置iASP iASP配置]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本 - 1]]></title>
    <link>http://im.vc/web/asp/2011/0705/29901.html</link>
    <description><![CDATA[一、读者指引 读者指引帮助你掌握本文的梗概。以免你看了大半才明白这编文章不适合你，给你造成视觉污染。 如果你正在用ASP+XML写一些程序，或者你正在学XML那就值得一看。 阅读本]]></description>
    <pubDate>2001-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29900.html</link>
    <description><![CDATA[使用Form和QueryString集合 当用户填写页面FORM内容时所提供的全部值，或在浏览器地址栏输入在URL后的值，通过Form和QueryString集合为ASP脚本所用。这是在ASP代码中访问值的一种简单方法。]]></description>
    <pubDate>2001-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用ASP读出文本文件并显示]]></title>
    <link>http://im.vc/web/asp/2011/0705/29899.html</link>
    <description><![CDATA[使用ASP读出文本文件并显示 读取一个文本文件并写出 Sun Aug 2 06:34:07 1998 （注:textStream有关写的METHOD Write（STRING） WriteLine（STRING） WriteBlankLines（LINES） ） 这是一个完整的程序 〈 html 〉]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本 - 2]]></title>
    <link>http://im.vc/web/asp/2011/0705/29898.html</link>
    <description><![CDATA[五、建立显示XML数据的ASP文件(index.asp) 这个文件要实现的功能就是读取并显示XML数据，首先创建一个XML对像然后把XML读入内存中，利用DOM分离出我们所 要的数据。 ＜% strSourceFile = Serv]]></description>
    <pubDate>2001-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29897.html</link>
    <description><![CDATA[使用Form和QueryString集合 当用户填写页面FORM内容时所提供的全部值，或在浏览器地址栏输入在URL后的值，通过Form和QueryString集合为ASP脚本所用。这是在ASP代码中访问值的一种简单方法。]]></description>
    <pubDate>2001-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第十三篇 数据库查询语言(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29896.html</link>
    <description><![CDATA[在本篇的开头，我要感谢一些朋友来信给我指出了前几篇文章中的错误。不知大家是否记得在第八篇中我举了一个简单的利用 Application 制作的页面访问计数器？有位朋友来信问我，为何]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本 - 3]]></title>
    <link>http://im.vc/web/asp/2011/0705/29895.html</link>
    <description><![CDATA[六、建立写新留言程序(PostNew.ASP) 这个文件要实现的功能就是写入新的XML节点，首先创建一个XML对像然后把XML读入内存中，利用appendChild()方法 加入我们生成的XML节点。 ＜% username=reque]]></description>
    <pubDate>2001-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP 3.0高级编程（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29894.html</link>
    <description><![CDATA[访问和更新Cookies集合 Cookies的值比ASP其他集合（例如Form和ServerVariables）的值要复杂得多。Cookie是一小块由浏览器存贮在客户端系统上的文本，且随同每次请求发往它们应用于的域中的服]]></description>
    <pubDate>2001-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XML打造留言本 - 4]]></title>
    <link>http://im.vc/web/asp/2011/0705/29893.html</link>
    <description><![CDATA[七、总结 到这里我们就建立一个简单并有分页功能的XML留言本了，呵看完了简单吧，其实我这里只起一个抛砖引玉的功能，其目的是引导大家建立更复杂更好的ASP＋XML程序，例如：所上]]></description>
    <pubDate>2001-06-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：第一篇 Are you ready]]></title>
    <link>http://im.vc/web/asp/2011/0705/29892.html</link>
    <description><![CDATA[如何令你的网站“动感十足” 您的网站是否仍一如既往地保持“静态”？目前呈几何增长的互联网网站中，有相当一部分仍固守“静态”，无形中已大大落后于时代的步伐。所谓“静态]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样在ASP里面创建统计图表]]></title>
    <link>http://im.vc/web/asp/2011/0705/29891.html</link>
    <description><![CDATA[下面给出了一个通用的函数及其用例，请参考。 % REM 首先我们设计一个ShowCart函数，其中 REM aValues 是一个数值数组 REM aLables 是横坐标的标号 REM strTitle是这个统计图的标题 REM strXAxisLab]]></description>
    <pubDate>2001-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用正则表达式突出显示字符串中查询到的单词的]]></title>
    <link>http://im.vc/web/asp/2011/0705/29890.html</link>
    <description><![CDATA['在Windows Script 5.5下调试通过 Function BoldWord(strContent,word) dim objRegExp Set objRegExp=new RegExp objRegExp.IgnoreCase =true objRegExp.Global=True objRegExp.Pattern=( ) strContent=objRegExp.Replace(strContent,font color=]]></description>
    <pubDate>2001-06-23</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[.NET之ASP Web Form快速入门]]></title>
    <link>http://im.vc/web/asp/2011/0705/29889.html</link>
    <description><![CDATA[世界软件巨擘微软公司提出的.net概念给全世界的ＩＴ产业指明了新的发展方向，无论是ＩＴ业内人士、还是企业决策者，快速领会这个新概念的含义及深远影响，都显得非常必要。 本]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/29888.html</link>
    <description><![CDATA[Web Services，即Web服务，是微软.net战略中非常重要的一个概念。它的目的是将Web站点转变为集组织、应用、服务以及设备于一体的可设计Web站点，使Web站点不再处于被动的地位。 本文将介]]></description>
    <pubDate>2001-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何使用MYSQL数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/29887.html</link>
    <description><![CDATA[MySQL数据库以它短小、方便、速度快、免费等优点成为很多网站目前首选 数据库，但一般都是用PHP+mysql相结合来开发各种动态页面，其实ASP也可以 使用mysql数据库开发动态页面，小弟我]]></description>
    <pubDate>2001-07-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[单机上使用ASP(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29886.html</link>
    <description><![CDATA[单机上使用ASP 三、传送 这里假定我们已经将网页做好，需要上传到服务器以测试效果或供他人浏览。 (1)首先，在“FrontPage Explorer的“File菜单里选择“Publish FrontPage Web或“Publish图标]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之二]]></title>
    <link>http://im.vc/web/asp/2011/0705/29885.html</link>
    <description><![CDATA[配置Web服务 配置Web 服务与一个配置ASP.net应用程序相同。如果自己有Web服务器，那么就创建一个称为stockquote 的虚拟目录，然后将 StockQuote.asmx复制到这个目录中。如此就完成了Web 服务的]]></description>
    <pubDate>2001-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用C#开发第一个WINDOWS应用程序(C#学习笔记之一)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29884.html</link>
    <description><![CDATA[读者层次：初级、中级 前言：C#是一门现代的编程语言，包含在Visual Studio .net 7.0中。它简化了C++的复杂性，保持了灵活性，对于学过C++的人来说很容易上手。写本文的时候Visual Studio .]]></description>
    <pubDate>2001-07-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Asp中使用存储过程]]></title>
    <link>http://im.vc/web/asp/2011/0705/29883.html</link>
    <description><![CDATA[在ASP中使用存储过程 为了提高Asp程序的效率，有时需要在Asp中使用使用SQL Server的存储技术，下面简单作一个介绍。 存储过程的建立 这里只简单介绍如何在Sql Server的企业管理器中如何]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之三]]></title>
    <link>http://im.vc/web/asp/2011/0705/29882.html</link>
    <description><![CDATA[构造代理库 .net 平台上的应用程序可以使用代理库来调用Web服务上的方法，这样使用Web服务就非常容易。生成代理库的第一步是从SDL中生成一个Web服务的代理类。.NET SDK提供了一个叫做]]></description>
    <pubDate>2001-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用C#开发第一个WINDOWS应用程序(C#学习笔记之二)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29881.html</link>
    <description><![CDATA[Windows应用程序是靠消息驱动的，在VC中我们通过CLASSWIZARD可以为某窗口类添加消息处理函数，CLASSWIZARD将为你添加消息映射，对于Windows消息,生成的消息处理函数重载了基类的虚拟方法。]]></description>
    <pubDate>2001-07-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP给主页加密之一]]></title>
    <link>http://im.vc/web/asp/2011/0705/29880.html</link>
    <description><![CDATA[利用ASP给主页加密 Active server pages (动态服务器主页，简称ASP)，能够让我们产生动态的、互动性、高效能的Web应用程序，使我们能用非常简单的方法通过网页查询和修改数据库，现在已]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之四]]></title>
    <link>http://im.vc/web/asp/2011/0705/29879.html</link>
    <description><![CDATA[创建 Web应用程序用户 下面创建一个Web应用程序StockConsumer.ASPx，它作为这个StockQuote（股票报价） Web服务的第一个用户。 ＜%@ Page language=C# %＞ ＜%@ Import Namespace=System.XML %＞ ＜%@ Import]]></description>
    <pubDate>2001-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29878.html</link>
    <description><![CDATA[使用XML.而无须不断刷新*.ASP.也不用隔一段时间就刷新XML数据.而是在用户把全部新 信息看完之后才刷新XML数据,如果一直没有新信息到达,就每3000号秒刷新一次XML数据. 有新信息到达的话]]></description>
    <pubDate>2001-08-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样用ADO在SQL SERVER中建库，建表]]></title>
    <link>http://im.vc/web/asp/2011/0705/29877.html</link>
    <description><![CDATA[怎样用ADO在SQL Server中建库，建表 通过ADO可以访问SQL SERVER，并执行相应的SQL语句建库、建表，下面是SQL SERVER BOOKS ONLINE中的相关定义。 建表： CREATE TABLE [ database_name.[owner]. | owner. ] tabl]]></description>
    <pubDate>2004-02-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[股票报价的WebService之五]]></title>
    <link>http://im.vc/web/asp/2011/0705/29876.html</link>
    <description><![CDATA[小结 下面总结一下配置Web应用程序的步骤： l 创建一个叫做StockConsumer的虚拟目录 l 将 StockConsumer.ASPx 文件复制到这个虚拟目录下 l 在wwwroot 文件夹中创建一个 bin 虚拟目录 l 设置bin目录以]]></description>
    <pubDate>2001-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29875.html</link>
    <description><![CDATA[来看看登陆页面LOGIN.ASP,代码比较长,也可以修改一下页面,使它更美观: %option explicit Response.CacheControl = no-cache Response.AddHeader Pragma, no-cache Response.Expires = 0 % !DOCTYPE HTML PUBLIC -//IETF//DTD]]></description>
    <pubDate>2001-08-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(3)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29874.html</link>
    <description><![CDATA[------下面这个文件就是查看信息的GetInformation.htm文件,代码比较长.慢慢看看--------------- html head title回复信息/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href]]></description>
    <pubDate>2001-08-08</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编写完整的一个IP所在地搜索类(修正)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29873.html</link>
    <description><![CDATA[修正了查询方法，查询的方法和追捕的一致；只是追捕会自动更正IP。 还有个函数的书写错误，也已经修正； 包括增加了一个IP地址正确性的验证函数。（只是从格式上判断） % '作者：]]></description>
    <pubDate>2001-08-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[遭遇ASP类的事件设计]]></title>
    <link>http://im.vc/web/asp/2011/0705/29872.html</link>
    <description><![CDATA[我之所以还是要宣扬用MVC来开发ASP，只是想让面向过程的思考方式变成面向对象的思考方式，这个对于任何一种语言的开发员来说都是有好处的。 MVC是个标准模型，ASP要实现似乎真的是]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(6)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29871.html</link>
    <description><![CDATA[---------下面的文件就是发送删除已看过信息的eChangXML.ASP页,代码比较长,慢慢看看-----------/PP%@EnableSessionState=False% % Option Explicit Response.CacheControl = no-cache Response.AddHeader Pragma, no-cache R]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[人民币小写转换为大写]]></title>
    <link>http://im.vc/web/asp/2011/0705/29870.html</link>
    <description><![CDATA[% '****人民币大小写转换格式**** dimstr(9) str(0)=零 str(1)=壹 str(2)=贰 str(3)=叁 str(4)=肆 str(5)=伍 str(6)=陆 str(7)=柒 str(8)=捌 str(9)=玖 aa=Request.form(source) hh=formatnumber(aa,2,-1) aa=repla]]></description>
    <pubDate>2001-08-28</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何提高自己的编程水平]]></title>
    <link>http://im.vc/web/asp/2011/0705/29868.html</link>
    <description><![CDATA[不知不觉做软件已经做了十年，有成功的喜悦，也有失败的痛苦，但总不敢称自己是高手，因为和我心目中真正的高手们比起来，还差的太远。世界上并没有成为高手的捷径，但一些基]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[读取Access数据库表名实例]]></title>
    <link>http://im.vc/web/asp/2011/0705/29867.html</link>
    <description><![CDATA[% strConn=DBQ=+server.mappath(kendylan.mdb)+;DefaultDir=;DRIVER={MicrosoftAccessDriver(*.mdb)}; setobjConn=server.createobject(Adodb.connection) objConn.openstrConn setrsSchema=objConn.openSchema(20) rsSchema.movefirst DoUntilrsSchem]]></description>
    <pubDate>2001-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成目录树结构的类]]></title>
    <link>http://im.vc/web/asp/2011/0705/29866.html</link>
    <description><![CDATA[本程序有两文件test.ASP 和tree.asp 还有一些图标文件 1。test.asp 调用类生成树 代码如下 %@ Language=VBScript % html head link rel=stylesheet href=tree.css titletree/title /head !-- #include file=tree.asp -- % =======]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(4)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29865.html</link>
    <description><![CDATA[---------下面的文件就是发送新信息的NEWINFORMATION.HTM页,代码比较长,慢慢看看----------- html head title新信息/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=../st]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP直接调用EXCEL数据的例子（不用ODBC）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29864.html</link>
    <description><![CDATA[例子： 在c:\Excel\book1.xls存在一个EXCEL表book1.xsl,表的结构如下： 1序号名称金额 21张三100 32李四200 43王五300 序号字段不为空 注意：excel起始行是1而不是为0 %@language=VBscript% % SetxlApp=serve]]></description>
    <pubDate>2001-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：Are you ready?]]></title>
    <link>http://im.vc/web/asp/2011/0705/29863.html</link>
    <description><![CDATA[如何令你的网站动感十足 您的网站是否仍一如既往地保持静态？目前呈几何增长的互联网网站中，有相当一部分仍固守静态，无形中已大大落后于时代的步伐。所谓静态指的就是网站的]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(5)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29862.html</link>
    <description><![CDATA[---------下面的文件就是发送新信息的NEWINFORMATION.HTM页,代码比较长,慢慢看看----------- html head title新信息/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=../st]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Jmail做收取邮件附件的程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29861.html</link>
    <description><![CDATA[我现在自己在用ASP做一个Web邮件处理程序，就和网上263，163的web电子邮箱。 我在制作自己的web邮件系统的时候，使用的是网上很流行的asp邮件处理组件aspmail和jmail分别作web邮件的发件和]]></description>
    <pubDate>2001-09-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(7)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29859.html</link>
    <description><![CDATA[---------下面的文件就是发送新信息的CREATEINFORMATION.ASP页,代码比较长,慢慢看看----------- %@EnableSessionState=False% % Option Explicit Response.CacheControl = no-cache Response.AddHeader Pragma, no-cache Respons]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[显示左边的n个字符(自动识别汉字)函数]]></title>
    <link>http://im.vc/web/asp/2011/0705/29858.html</link>
    <description><![CDATA[FunctionLeftTrue(str,n) Iflen(str)=n/2Then LeftTrue=str Else DimTStr Diml,t,c Dimi l=len(str) t=l TStr= t=0 fori=1tol c=asc(mid(str,i,1)) Ifc0thenc=c+65536 Ifc255then t=t+2 Else t=t+1 EndIf IftnThenexitfor TStr=TStrnbsp;=TStr EndIf EndFunc]]></description>
    <pubDate>2001-09-05</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(8)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29856.html</link>
    <description><![CDATA[---------下面的文件就是处理回复信息的MISSYOU.ASP页,代码比较长,慢慢看看----------- %@EnableSessionState=False% % Option Explicit Response.CacheControl = no-cache Response.AddHeader Pragma, no-cache Response.Expir]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用纯ＡＳＰ代码实现图片上传并存入数据库中]]></title>
    <link>http://im.vc/web/asp/2011/0705/29855.html</link>
    <description><![CDATA[用ＡＳＰ编写网站应用程序时间长了，难免会遇到各式各样的问题，其中 关于如何上传文件到服务器恐怕是遇见最多的问题了，尤其是上传图片，比如 你想要在自己的社区里面实现类似]]></description>
    <pubDate>2001-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp中如何设计跨越域Cookie]]></title>
    <link>http://im.vc/web/asp/2011/0705/29854.html</link>
    <description><![CDATA[Cookie简介 首先，我们对Cookie做一个简单的介绍，说明如何利用ASP来维护cookie。 Cookie是存储在客户端计算机中的一个小文件，这就意味着每当一个用户访问你的站点，你就可以秘密地在]]></description>
    <pubDate>2009-04-13</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML+JAVASCRIPT+ASP在线短信息功能(9)]]></title>
    <link>http://im.vc/web/asp/2011/0705/29853.html</link>
    <description><![CDATA[---------下面的文件就是包含WRITEXML函数的WRITEXML.ASP页----------- % Function WriteXml(Dom,Path,MyID,MyName,DATES,ONLY,Text) On Error Resume Next Dim R Dom.Load Path If Dom.parseError.errorCode 0 Then WriteXml = True Else Set R]]></description>
    <pubDate>2001-08-10</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何Response.Redirect新的页面到指定的框架中]]></title>
    <link>http://im.vc/web/asp/2011/0705/29852.html</link>
    <description><![CDATA[Inthefilethatyouwishtoshowupintheframe,addthislineaftertheBODYtag: BASETARGET=framename ThenwhenyouResponse.RedirecttothisASPfile,itscontentswillappearintheframenamedframename.]]></description>
    <pubDate>2001-09-06</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用application提高ASP数据显示效率]]></title>
    <link>http://im.vc/web/asp/2011/0705/29851.html</link>
    <description><![CDATA[当数据上到好几万多条时,要调用几条数据在页面显示,ASP就会慢如蜗牛.最糟糕的是,当n多用户打开页面访问的时候,每个用户每次都要读取数据库一次,这无疑降低了效率,很明显, 如果能把]]></description>
    <pubDate>2009-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句简介-给初学者（1）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29850.html</link>
    <description><![CDATA[运用数据库管理是ASP的最引以自豪的功能正是由于它在运行数据库上的强大的优势,才使得的人们相信CGI是可以代替的,当然要在数据库上做文章,不知道SQL是不可能的,在ASP中无论何时访问]]></description>
    <pubDate>2001-08-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29849.html</link>
    <description><![CDATA[显示：（排序)main.ASP --------部分，未经优化处理------- % ConstadOpenStatic=3 ConstadLockPessimistic=2 Setconn=Server.CreateObject(ADODB.Connection) SetRS=Server.CreateObject(ADODB.Recordset) DBPath=Server.MapPath(../fpdb]]></description>
    <pubDate>2001-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落--Exception（一）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29848.html</link>
    <description><![CDATA[很诱人的标题，今天不是给大家介绍，而是跟大家讨论些问题。 在做开发的这几年中，大大小小的项目也经历了很多，但无论那个项目中，都没有真正的对Exception进行完整的处理。虽然]]></description>
    <pubDate>2009-04-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SQL语句简介-给初学者（2）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29847.html</link>
    <description><![CDATA[大家好我是成龙,上次介绍完了SQL语句的查询,这次该介绍SQL语句的操作了 其实操作语言也不难,包括insert,update,delete分别对表中的数据进行添加,修改和删除 1.插入数据语法如下: insert int]]></description>
    <pubDate>2001-08-12</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[排序方式解决“上下主题”问题（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29846.html</link>
    <description><![CDATA[发言：add_massege.ASP ------------部分，未经优化整理------------ bodybgcolor=#C8C8E6 scriptlanguage=VBScript SubGoBack() form1.btn1.value=返回 history.go(-1) endsub /Script % name1=Session(Uname) Ifname1=Then Response]]></description>
    <pubDate>2001-09-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ASP简介]]></title>
    <link>http://im.vc/web/asp/2011/0705/29845.html</link>
    <description><![CDATA[看了ASP基础教程：Are you ready? 一文后，是否令你怦然心动？是否已经急不可待地想构建属于你自己的动态网站？本文将以 Active Server Pages 为中心，向你全面展示制作动态商业网站的步骤]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程系列文章目录]]></title>
    <link>http://im.vc/web/asp/2011/0705/29844.html</link>
    <description><![CDATA[ASP基础教程：Are you ready? ASP基础教程：ASP简介 ASP基础教程：ASP脚本基础 ASP基础教程：ASP脚本变量、函数、过程和条件语句 ASP基础教程：ASP内建对象Request ASP基础教程：ASP内建对象Resp]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:ASP内建对象Application和Session]]></title>
    <link>http://im.vc/web/asp/2011/0705/29843.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了 ASP 内建对象 Response 的使用方法，在这一篇中作者将继续给大家介绍另两个非常实用且重要的 ASP 的内建对象 Application 和 Session。 在 ASP 的内建对象中]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作ASP脚本组件实现重启服务器]]></title>
    <link>http://im.vc/web/asp/2011/0705/29842.html</link>
    <description><![CDATA[大家知道直接使用ASP是不能够重启服务器的，这时我们需要制作一个组件来实现功能，ASP通过这个组件调用系统API，然后按照不同的重启和关机方式进行操作! 下面先说COM的制作，在V]]></description>
    <pubDate>2009-05-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:堵住ASP漏洞]]></title>
    <link>http://im.vc/web/asp/2011/0705/29841.html</link>
    <description><![CDATA[无论你相不相信，通过 ASP，可能可以很方便地入侵 Web server、窃取服务器上的文件、捕获 web 数据库等系统的用户口令，甚至恶意删除服务器上的的文件，直至造成系统损坏，这些都决]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ASP内建对象Response]]></title>
    <link>http://im.vc/web/asp/2011/0705/29840.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了 ASP 内建对象之一 Request 的使用方法，相信各位通过一系列的实践已经能够熟练掌握，本篇将继续给大家介绍 ASP 的另一个内建对象 Response。 最近，有]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[详解ASP脚本的执行顺序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29839.html</link>
    <description><![CDATA[首先我们先来了解一下ASP页面执行的流程 1.IIS找到ASP文件，提交给ASP引擎(一般是ASP.DLL)处理。 2.引擎打开这个ASP文件，找出%和%之间的内容，当然还有script runAt=server和对应的/script之间的]]></description>
    <pubDate>2009-05-25</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:其它的ASP常用组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29838.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等。 上两篇中作者给大家介绍了 AD Rotator、]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ASP内建对象Request]]></title>
    <link>http://im.vc/web/asp/2011/0705/29837.html</link>
    <description><![CDATA[从本篇开始作者从 ASP 内建对象着手，为大家详细剖析 ASP 的六个内建对象和各种组件的特性和方法。 在正式开始学习 ASP 的内建对象和组件之前，先让我们来认识一些基本概念，这将对]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[SaaS青春期的烦恼]]></title>
    <link>http://im.vc/web/asp/2011/0705/29836.html</link>
    <description><![CDATA[从SaaS横空出世，到被媒体、业界吹捧到过头，SaaS似乎就成了软件行业的一个新神话，一时间传统管理软件商如用友、金蝶，互联网企业如阿里巴巴、中企动力，垄断电信企业中国电信]]></description>
    <pubDate>2009-06-02</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:ADO存取数据库时如何分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0705/29835.html</link>
    <description><![CDATA[《动态网站设计十八般武艺 --ASP 篇》一文从第一期至今已和朋友们一起度过了大半个年头，相信通过在这一段时间中的学习、实践到再学习、再实践，大家已经能够熟练运用 ASP 的内建]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用sql语句动态的创建access表]]></title>
    <link>http://im.vc/web/asp/2011/0705/29834.html</link>
    <description><![CDATA[用sql语句动态的创建Access表的代如下！ % nowtime = now() tablename = cstr(year(nowtime))+\_\+cstr(second(nowtime)) response.write tablename db_path = \test.mdb\ Set conn= Server.CreateObject(\ADODB.Connection\) connstr = \Provi]]></description>
    <pubDate>2009-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：ASP脚本循环语句]]></title>
    <link>http://im.vc/web/asp/2011/0705/29833.html</link>
    <description><![CDATA[在本文上两篇中，我们学习了脚本语言 VBScript 的变量、函数、过程和条件语句，本篇将继续给大家介绍 VBScipt 的循环语句，并对脚本语言在 ASP 中的应用加以总结。 如果有人告诉你学习]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：常用的 ASP ActiveX 组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29832.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等，继上篇介绍了 AD Rotator 组件后，本篇将接]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ASP脚本变量、函数、过程和条件语]]></title>
    <link>http://im.vc/web/asp/2011/0705/29831.html</link>
    <description><![CDATA[在上一期中作者向诸位简要介绍了 ASP 脚本语言之一 VBScript 的一些基本常识，本期将继续给大家讲解 VBScript 的脚本编写方法，并通过展示 VBScript 在 ASP 程序编写过程中的一系列实例使大]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP连接11种数据库的语法]]></title>
    <link>http://im.vc/web/asp/2011/0705/29830.html</link>
    <description><![CDATA[1.Access数据库的DSN-less连接方法: set adocon=Server.Createobject(\adodb.connection\)adoconn.Open\Driver={Microsoft Access Driver(*.mdb)};DBQ=\ _ Server.MapPath(\数据库所在路径\) 2.Access OLE DB连接方法： set adocon=Serve]]></description>
    <pubDate>2009-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ActiveX 组件]]></title>
    <link>http://im.vc/web/asp/2011/0705/29829.html</link>
    <description><![CDATA[当你用 ASP 编写服务器端应用程序时，必须依靠 ActiveX 组件来强大 Web 应用程序的功能，譬如：你需要连接数据库，对数据库进行在线操作等等，本文从本篇开始将陆续给大家介绍 ASP]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：ASP脚本基础]]></title>
    <link>http://im.vc/web/asp/2011/0705/29828.html</link>
    <description><![CDATA[通过前两篇的学习，相信各位已经对 ASP 的动态网站设计有了一个基本的概念和整体的印象。从本篇开始作者将从脚本语言的使用着手，由浅入深地带领大家探索 ASP 动态网站设计的真正]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS-SQL 分页函数+ASP]]></title>
    <link>http://im.vc/web/asp/2011/0705/29827.html</link>
    <description><![CDATA[CREATE PROCEDURE [dbo].[USP_GetList] ( @pageIndex int = 1 -- 当前页码0 表示返回所有符合内容 ,@pageSize int = 10 -- 页尺寸 ,@SID nvarchar(30) = -- 主键字段 ,@strGetField nvarchar(1000) = * -- 需要返回的列 ,@strTabl]]></description>
    <pubDate>2009-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程：数据库查询语言（2）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29826.html</link>
    <description><![CDATA[在本篇的开头，我要感谢一些朋友来信给我指出了前几篇文章中的错误。不知大家是否记得在第八篇中我举了一个简单的利用 Application 制作的页面访问计数器？有位朋友来信问我，为何]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP与SQL2000的在线组卷系统的设计与实现]]></title>
    <link>http://im.vc/web/asp/2011/0705/29825.html</link>
    <description><![CDATA[1 引 言 在观察现阶段，学校的各种考试试卷大都采用传统的人工出卷方式，教师每出一份试卷都需要参考各种相关书籍，斟酌试卷的难易程度，甚至经常重复性劳动。显然，随着教育改]]></description>
    <pubDate>2009-04-22</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Windows 2003 64位下ASP无法连接Access数据库]]></title>
    <link>http://im.vc/web/asp/2011/0705/29824.html</link>
    <description><![CDATA[症状：64位Windows 2003下面配置好IIS后，运行ASP页面，如果里面有连接Access数据库的代码，就会出现错误警告： ADODB.Connection 错误 800a0e7a 未找到提供程序。该程序可能未正确安装。 /连接]]></description>
    <pubDate>2009-06-04</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:数据库查询语言]]></title>
    <link>http://im.vc/web/asp/2011/0705/29823.html</link>
    <description><![CDATA[原定计划从本篇开始就要给大家介绍 ASP 内建的 ActiveX 组件，但是考虑到我们在往后的学习中将会接触到大量的数据库查询，因此作者临时决定花一到两篇的篇幅向大家简要介绍一些数]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落—Exception（二）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29822.html</link>
    <description><![CDATA[在上一篇中一个让人遗忘的角落--Exception（一） 中，跟大家简单介绍了一下Exception，也使大家充分的了解了Exception管理在一个项目中的重要性，那如何在我们的项目中处理异常呢？因为]]></description>
    <pubDate>2009-04-27</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp提高篇：利用JSP的思想来做ASP]]></title>
    <link>http://im.vc/web/asp/2011/0705/29821.html</link>
    <description><![CDATA[程序的功能有了个大体的框架，其实可以自己添加一些功能，比如开始的数据库连接 ，可以先设置 变量然后通过INIT() 来选择不同类型的数据库 % On Error Resume Next Class ConnEx public ConnEx]]></description>
    <pubDate>2009-06-17</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP基础教程:ASP内建对象Server]]></title>
    <link>http://im.vc/web/asp/2011/0705/29820.html</link>
    <description><![CDATA[通过前九篇的理论和实践，相信大家已经对 ASP 有了系统的了解，虽然至今为止，我们只学了 ASP 的 4 个内建对象，但已经完全能够写出一些实用的小程序了。今天，作者将继续给大家讲]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落—Exception（三）]]></title>
    <link>http://im.vc/web/asp/2011/0705/29819.html</link>
    <description><![CDATA[上一篇中主要介绍了Log的几种方式，接下来说说通知的方式： 通知方式 说明 Email 这是最常见也是最方便的一种通知方式。 优点：使用简单 缺点：需要依赖于SMTP服务器等 SMS 这也是目]]></description>
    <pubDate>2009-05-07</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP返回错误页和http状态查询工具]]></title>
    <link>http://im.vc/web/asp/2011/0705/29818.html</link>
    <description><![CDATA[IIS默认的错误页是很不友好的，很多人看到默认的错误页时都会说：网站打不开了！白白损失了这部分流量。而如果错误页直接跳转到首页又对搜索引擎很不友好，搞不好首页还会被封]]></description>
    <pubDate>2009-07-14</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP教程：Global.asa文件的使用及Chat程序]]></title>
    <link>http://im.vc/web/asp/2011/0705/29817.html</link>
    <description><![CDATA[在上一篇中作者给大家详细介绍了两个非常实用的 ASP 内建对象 Application 和 Session 的使用方法。由于这两者的 OnStart、OnEnd 事件的脚本都必须在 Global.asa 文件中声明 , 因此，本篇将给大]]></description>
    <pubDate>2009-04-18</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ASP Recordset 分页出现负数解决方法及建议]]></title>
    <link>http://im.vc/web/asp/2011/0705/29816.html</link>
    <description><![CDATA[对于Recordset分页时出现负数的现象，相信会有很多人遇到过这个问题，有时百度、GOOGLE也不得其解，现在由我来总结一下。 出现负数，主要和游标类型有关系。（为举例方便，假设已经]]></description>
    <pubDate>2009-05-11</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP的物资管理系统设计与实现]]></title>
    <link>http://im.vc/web/asp/2011/0705/29815.html</link>
    <description><![CDATA[1 引言 随着全球经济一体化及信息网络化的纵深发展，大型建筑施工企业必须改变原有传统的施工物资经营管理模式，实现物资管理的网络化、精细化，从而规范物资管理，通过构筑全]]></description>
    <pubDate>2009-07-31</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用Office2000中的图表控件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7519.html</link>
    <description><![CDATA[前一阵为了做图表，查看了论坛中的所有文章，但大都是用Aspchart，ShortGraph等组件，这些组件多半都是国外开发要money的。如果你用office 的MS Chart，往往作出的效果又差强人意。如果你]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP无组件上传进度条解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0701/7518.html</link>
    <description><![CDATA[一、无组件上传的原理 我还是一点一点用一个实例来说明的吧，客户端HTML如下。要浏览上传附件，我们通过input type=file元素，但是一定要注意必须设置form的enctype属性为multipart/form-da]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现access随机显示不重复记录解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0701/7517.html</link>
    <description><![CDATA[以下为引用的内容： % '-------------------------数据库连接----------------------- Set objConn = Server.CreateObject(ADODB.Connection) objConn.ConnectionString = Provider=Microsoft.Jet.OLEDB.4.0; _ Data Source= Server.MapPath(da]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+SQL Server的图象数据处理]]></title>
    <link>http://im.vc/web/asp/2011/0701/7516.html</link>
    <description><![CDATA[ASP（Active Server Pages）是Microsoft很早就推出的一种WEB应用程序解决方案，也是绝大多数从事网站开发人员很熟悉的一个比较简单的编程环境。通过ASP我们可以创建功能强大的动态的WEB应用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP文件中的安全问题]]></title>
    <link>http://im.vc/web/asp/2011/0701/7515.html</link>
    <description><![CDATA[ASP中可能有哪些安全问题？ ASP具有简单、易用、多功能，可扩充性等强大功能，但也存在一些问题。譬如，如果使用ASP的话，可能会导致网络的安全性大大降低了！下面为大家举一个例]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程中20个非常有用的例子]]></title>
    <link>http://im.vc/web/asp/2011/0701/7514.html</link>
    <description><![CDATA[1.如何用Asp判断你的网站的虚拟物理路径 答：使用Mappath方法 ＜ p align=center ＞＜ font size=4 face=Arial ＞＜ b ＞ The Physical path to this virtual website is: ＜ /b ＞＜ /font ＞ ＜ font color=#FF0000 size=]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP开发基于XML的留言板]]></title>
    <link>http://im.vc/web/asp/2011/0701/7513.html</link>
    <description><![CDATA[XML（Extensible Markup Language）是一种基于文本格式的标记语言，它注重对数据结构和数据意义的描述，实现了数据内容和显示样式的分离，而且是与平台无关的。由于XML注重数据内容的描]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP制作张扬个性的调查系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7512.html</link>
    <description><![CDATA[随着网络的普及，网上调查往往能达到较好的效果。在自己的个人站点上放一个趣味问题调查板，着实能为网站添色不少；况且通过调查结果你能更多更准确了解网友对自己站点的看法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP脚本的执行顺序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7511.html</link>
    <description><![CDATA[首先我们先来了解一下ASP页面执行的流程 1.IIS找到ASP文件，提交给ASP引擎(一般是ASP.DLL)处理。 2.引擎打开这个ASP文件，找出%和%之间的内容，当然还有script runAt=server和对应的/script之间的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程的身份认证安全]]></title>
    <link>http://im.vc/web/asp/2011/0701/7510.html</link>
    <description><![CDATA[在ASP编程中，身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢？ 表单提交页面：sub.htm html head title管理员登陆＜/title body form name=form1 method=post action=sub.asp p 管理员: inpu]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中轻松实现变量名－值变换]]></title>
    <link>http://im.vc/web/asp/2011/0701/7509.html</link>
    <description><![CDATA[用过PHP的朋友都知道，PHP中变量的使用灵活方便，特别是能在字符串中方便实现变量名－值变换，使得整个PHP代码更显简洁优美。比如一条更新数据库的SQL语句只需写成：update users se]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP建立一个简单的聊天室]]></title>
    <link>http://im.vc/web/asp/2011/0701/7508.html</link>
    <description><![CDATA[经过一个阶段的asp学习,下面我们结合所学过的内容建立一个最简单的聊天室,虽然很简单,但是大家可以通过他来掌握一个聊天室建立的基本过程,并且可以不断的完善其功能. 下面介绍其]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP万用分页程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7507.html</link>
    <description><![CDATA[这只是个asp小技巧类的东西，它虽然适合在每个不同文件名里调用这个函数，但是也是有前提的，下面让我们来仔细看看其中的原委。 下面这段是基本的分页代码： ＜% sql = select省略了]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[优化Asp程序的性能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7506.html</link>
    <description><![CDATA[ASP 能快速执行你的动态网页，但你还可以通过紧缩代码和数据库连接以使它们执行更快。这是一篇关于怎样精简代码和Asp 特征以获得最快执行速度的详细文章。对于一个急燥的用户来]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个ASP统计制作实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7505.html</link>
    <description><![CDATA[一个能对访问者进行编号、记录访问次数、IP、时间的统计制作实例 我做了一个网站，www.zydn.net 当然啦，跟大家一样，也摆了个计数器在上面，每天看计数器都在不断的翻，心里很高兴]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[制作ASP脚本组件实现重启服务器]]></title>
    <link>http://im.vc/web/asp/2011/0701/7504.html</link>
    <description><![CDATA[大家知道直接使用ASP是不能够重启服务器的，这时我们需要制作一个组件来实现功能，ASP通过这个组件调用系统API，然后按照不同的重启和关机方式进行操作! 下面先说COM的制作，在V]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中输出Excel文件实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7503.html</link>
    <description><![CDATA[在asp中利用excel的一个方法是将excel文件作为一个数据库进行链接，然后的操作和对access数据库操作类似。但是这个方法不是总能有用的，应为excel不是关系型的数据库。对于一个固定格]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现分页显示的七种武器]]></title>
    <link>http://im.vc/web/asp/2011/0701/7502.html</link>
    <description><![CDATA[在微软的ASP编程体系中，ADO对象的建立，使得从网页访问数据库成为一件易事，特别是ADO的Recordset对象使得控制数据的输出显示更为方便、自由。而在Visual InterDev6.0(以下简称VI6.0)中，由]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+XML编程实例讲解(2)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7501.html</link>
    <description><![CDATA[四、操作Xml数据的Cls_Person类说明（clsPerson.asp） Cls_Person类用来完成与联系人信息相关的各种操作，包括添加、修改和删除等等，它使用VBScript编写。Cls_Person包括Id、Name、Nick、Mobile、T]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现文件上传方法的研究]]></title>
    <link>http://im.vc/web/asp/2011/0701/7500.html</link>
    <description><![CDATA[摘要：在基于浏览器/服务器的应用环境中，在浏览器中上传各种类型的文件一直是困扰用户文件管理应用的难题之一。在HTTP中上传文件有三种机制：RFC1867，PUT和WebDAV。常用的实现方法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中模拟.NET下的cache技术]]></title>
    <link>http://im.vc/web/asp/2011/0701/7499.html</link>
    <description><![CDATA[为了提高网站首页的性能，首页凡是需要调用数据库显示数据的地方都会先试图从缓存中调用数据，如果缓存中没有可用数据再打开数据库取出记录集,为了让页面显示数据和数据库在一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP强制刷新网页和判断文件地址]]></title>
    <link>http://im.vc/web/asp/2011/0701/7498.html</link>
    <description><![CDATA[强制刷新网页 ＜% 强制性刷新随机验证码 让随机验证码每次按IE的后退按钮时，返回登录页面的随即码都自动刷新， Response.expires=-1 Response.AddHeaderpragma,no-cache Response.AddHeadercache-control,]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP设计收发文管理系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7497.html</link>
    <description><![CDATA[摘要 网络办公已是现代企业发展的大势所趋。本文主要阐述了基于B/S结构的收发文管理系统的功能模块以及如何使用ASP和SQL Server解决一些相关的技术，其中包括系统的安全性问题。 关]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的数据库类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7496.html</link>
    <description><![CDATA[一、前言 提到ASP操作数据库，大多数人会想到：共用的连接字串ConStr、Conn.Open ConStr建立数据库连接、Conn.Execute SqlCmd方式执行命令、RecordSet.Open Sql,Conn,1,1取得记录集，的确这种方法被]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中巧用Response存取文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7495.html</link>
    <description><![CDATA[我在用ASP为某单位制作网页时遇到这样一个问题，单位以前的MIS系统中将一些Word文件以字节流的形式保存在数据库中，现在用户要求我用ASP将这些Word文件数据从数据库中取出并在网页]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现网络内容快速查找]]></title>
    <link>http://im.vc/web/asp/2011/0701/7494.html</link>
    <description><![CDATA[有一天我突发奇想，要是我每到一个网站，那里都能立刻调出我需要看的信息，那岂非美妙得很。接下来我想更深入地考虑这个问题，坐到椅子上拿一支铅笔，却不知道自己写什么。如]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现对MP3曲目信息的操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7493.html</link>
    <description><![CDATA[先简单说一下MP3的ID3 标记，因为主要是操作这个玩意 MP3最开始的时候没有我们今天看到的那样，有歌手、年代，专集等等信息 只有一些简单的参数如yes/no来表示是不是privated或者copy]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中用XML+FSO+JS实现服务器端文件的选择]]></title>
    <link>http://im.vc/web/asp/2011/0701/7492.html</link>
    <description><![CDATA[首先在服务器端先创建一个程序可以生成XML文件，以返回客户端，（getfolder.asp） % 'written by Linzhang Chen ,2003-4-20 ' 转载请注明出处和保留此版权信息 response.write ?xml version=1.0 encoding=GB231]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的内置组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7491.html</link>
    <description><![CDATA[本文的内容是使用ASP的ActiveX Server Components（组件）。 一、 Browser Capabilities Component（浏览器能力组件）： 我们知道，不同的浏览器也许支持不同的功能，如有些浏览器支持框架，有些不]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP程序设计中使用Response对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7490.html</link>
    <description><![CDATA[Response对象在ASP程序设计中的主要功能是从浏览器端到服务器端传送数据到浏览器的客户端，我们知道ASP的脚本是在服务器端执行的，他并没有输出值的功能。要想拥有输出值，就必须]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+JMAIL发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7489.html</link>
    <description><![CDATA[Global.asa文件, 什么是 Global.asa 文件？它其实是一个可选文件，程序编写者可以在该文 件中指定事件脚本，并声明具有会话和应用程序作用域的对象。该文件的内容不 是用来给用户显示]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用标签替换的方法生成静态网页]]></title>
    <link>http://im.vc/web/asp/2011/0701/7488.html</link>
    <description><![CDATA[大家都知道HTML静态网页更容易被搜索引擎收录索引，动态生成HTML网页，也可使网站的网页数量增多，搜索引擎收录的数量也可能多，再加下提高网页的质量也意未着什么呢？我想大家]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP语音聊天室的搭建]]></title>
    <link>http://im.vc/web/asp/2011/0701/7487.html</link>
    <description><![CDATA[第一步：下载语音聊天室服务器端程序，我们要用的是Bchat工作室的Bchat Server。 1.进入http://bchat.yinsha.com/页面； 2.页面右侧的火热头条中有Bchat推出10用户免费下载版字样，我们需要的就]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[EasyASP v2.2新功能介绍（1）：Easp是如何实现防sq]]></title>
    <link>http://im.vc/web/asp/2011/0701/7486.html</link>
    <description><![CDATA[EasyASP终于到v2.2了，目前还在完善手册，群里有很多人问如何使用的问题 ，所以打算在写手册的同时写一些新功能的介绍，方便使用Easp 的童鞋们快速 进入状态。说实话，看到这么多人]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现从SQL Server导出数据到Access或Excel文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7485.html</link>
    <description><![CDATA[前段时间，我在网上发出过这样的问题，现在已经得到解决，现将代码共享，希望对IntranetMIS爱好者有所帮助 方法其实很简单：需要在SQL Server连接中嵌套一个access连接，然后逐条写入就]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP、PHP与javascript根据时段切换CSS皮肤的代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7484.html</link>
    <description><![CDATA[一个网站能切换不同的CSS风格大家应该都了解，像众所周知的腾讯在今年改版时也增加了切换皮肤的功能。根据时间自动调整站点风格是不错的想法，这种根据时间自动调整站点风格也]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[EasyASP v2.2新功能介绍（2）：用Easp实现伪URL Rewr]]></title>
    <link>http://im.vc/web/asp/2011/0701/7483.html</link>
    <description><![CDATA[前一篇日志介绍了EasyASP v2.2是 如何实现防sql注入的 ，看来还是有很 多人对这个年代还使用ASP报以嗤之以鼻的态度。在此还是要劝导一下，如果你 认为ASP是上个世纪的东西早就过时了，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中利用COM组件开发Web应用程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7482.html</link>
    <description><![CDATA[如果你是一名Active Server Page (ASP) 开发者，相信你可能经常使用COM对象来创建ASP页面。甚至在你使用中都忽略了他就是COM对象。比如：ADO。只个调用率最高的组件已让你的页面扩展了无限]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp获取文件md5值]]></title>
    <link>http://im.vc/web/asp/2011/0701/7481.html</link>
    <description><![CDATA[网上asp加密字符的MD5很多，也很普遍，但是对文件进行md5的确很少，因为受到asp语言本身的限制。我们知道字符串的md5可以对明文进行不可逆的加密，从而保证数据储存或者传送的安全]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Access数据库在线压缩的实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7480.html</link>
    <description><![CDATA[如果在 Access 数据库中删除数据或对象，或者在 Access 项目中删除对象，Access 数据库或 Access 项目可能会产生碎片并会降低磁盘空间的使用效率。压缩 Access 数据库或Access项目实际上是复]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在asp中使用js的encodeURIComponent方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7479.html</link>
    <description><![CDATA[大家知道，在js里encodeURIComponent 方法是一个比较常用的编码方法，但因工作需要，在asp里需用到此方法，查了好多资料，没有很好的方法，最后用了下面这个方法，基本解决了问题。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用数据库]]></title>
    <link>http://im.vc/web/asp/2011/0701/7478.html</link>
    <description><![CDATA[ASP有一个最重要的功能，就是它可以让你非常轻松地连接数据库。通常都是和一个Access或者一个SQL数据库相连。因为Access是最容易起步的，同时，在你的机器上也许已经都装有Access了，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+XML编程实例讲解(1)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7477.html</link>
    <description><![CDATA[本文是一篇实例讲解的文章。作为一个普通的程序员，我深知，一个优秀的例程，对于正在学习编程的人是多么的有帮助。本文中使用的例程，是一个联系信息管理程序，我也是写来以]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Windows 2000中配置ASP开发环境]]></title>
    <link>http://im.vc/web/asp/2011/0701/7476.html</link>
    <description><![CDATA[采用ASP(Active Server Page)编写个人网页，已成为越来越多的个人网站作者的一种梦想。ASP是一种网页脚本语言，它最重要的特点是数据库驱动和动态交互。引入ASP，会使你的个人网站具有]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[随机访问Recordset的一条记录]]></title>
    <link>http://im.vc/web/asp/2011/0701/7474.html</link>
    <description><![CDATA[假设这个数据表有一个唯一的ID字段，并至少有一条记录。随机存取其中一条记录的方法是非常简单的，可以分为四步： 1、取得记录总数n。 2、把所有的ID号存储到一个数组中 3、产生]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Response.redirect实现页面重定向]]></title>
    <link>http://im.vc/web/asp/2011/0701/7473.html</link>
    <description><![CDATA[用 Redirect 方法可将浏览器重定向到另一个 URL，而不是将内容发送给用户。例如，如果您想确认用户是否已从主页进入了您的应用程序，以便能收到一个客户 ID，则可以检验他们是否有]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现购物车]]></title>
    <link>http://im.vc/web/asp/2011/0701/7472.html</link>
    <description><![CDATA[为了讲解方便，突出重点，本文用数组实现要显示的商品信息。但在实际的系统开发中，这些商品信息的数据应该来自后台数据库。 在程序中，我们定义了一个sp数组并对其赋值，然后]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在Repeater控件中创建可隐藏区域]]></title>
    <link>http://im.vc/web/asp/2011/0701/7471.html</link>
    <description><![CDATA[在WEB应用中，如何才能使应用高效率呢?如何才能吸引用户呢?这的确是个大学问,页面的内容,色搭配等都十分重要。但不可忽视的是,多数情况下，对于数据的呈现方式也是十分重要的。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[巧用缓存提高ASP应用程序的性能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7470.html</link>
    <description><![CDATA[为了提高Asp程序的性能,人们常常将经常使用的数据缓存在 Application,但是你修改了数据库后怎么让application更新呢,本文给你提供了一个合理的解决办法。 ＜% Class wawa_app_getrows public Func]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用程序中加入智能搜索]]></title>
    <link>http://im.vc/web/asp/2011/0701/7469.html</link>
    <description><![CDATA[用ASP实现搜索引擎的功能是一件很方便的事，可是，如何实现类似3721的智能搜索呢？比如，当在搜索条件框内输入中国人民时，自动从中提取中国、人民等关键字并在数据库内进行搜索]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中使用Oracle数据库]]></title>
    <link>http://im.vc/web/asp/2011/0701/7468.html</link>
    <description><![CDATA[Oracle是世界上用得最多的数据库之一，活动服务器网页（ASP）是一种被广泛用于创建动态网页的功能强大的服务器端脚本语言。许多ASP开发人员一直在考虑，能否在开发互联网应用、电]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分页显示Recordset数据]]></title>
    <link>http://im.vc/web/asp/2011/0701/7467.html</link>
    <description><![CDATA[1．建立Recordset对象 Dim objMyRst Set objMyRst=Server.CreateObject(ADODB.Recordset) objMyRst.CursorLocation=adUseClientBatch 客户端可批量处理 objMyRst.CursorType=adOpenStatic光标类型为静态类型 注意：Recordset对象不]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP学做一个在线调查(1)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7466.html</link>
    <description><![CDATA[关于在线调查大家一定不会陌生吧，给出一个问题和数个答案，让用户填写， 然后把结果保存到数据库，自动进行统计，最后给出个统计的图。这期的跟我学 做就来做一个在线调查系]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[64位Windows 2003下ASP无法连接Access数据库]]></title>
    <link>http://im.vc/web/asp/2011/0701/7465.html</link>
    <description><![CDATA[症状：64位Windows 2003下面配置好IIS后，运行ASP页面，如果里面有连接access数据库的代码，就会出现错误警告： ADODB.Connection 错误 '800a0e7a' 未找到提供程序。该程序可能未正确安装。 /连接]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中连接MySQL数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7464.html</link>
    <description><![CDATA[折腾了一阵，总算把ASP和MySQL连接完成了，有感，特写此文与大家一同分享 。 查了很多资料，ASP和MySQL连接目前有两种办法：一个是使用组件，比 较有名是MySQLX，可惜要99美元。二就是]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP学做一个在线调查(2)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7463.html</link>
    <description><![CDATA[六、代码编写 做好了流程设计后，写代码就比较有条理了。让我们从 简单的开始。在编写代码 之前，我们要先在数据库里输入一些记录，以便 做测试。先加入一条调查问题，和几个]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何保障Winnt +asp +sql web站点的安全]]></title>
    <link>http://im.vc/web/asp/2011/0701/7462.html</link>
    <description><![CDATA[以下是我的一些经验，希望对你有用，但你要知道，绝对的安全是没有的。这才是一个网管存在的理由。所以。未雨绸缪是件好事。但亡羊补牢也不是下策。 请看我的经验： 1。多看看]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP多文件上传]]></title>
    <link>http://im.vc/web/asp/2011/0701/7461.html</link>
    <description><![CDATA[通常图片的上传，不是一张两张的，我们需要批量的上传,又不能一次上传太 多，总不能一张一张上传吧，这样多麻烦 鉴于此，用js做了一个多文件上传的demo，结合ASP,不要笑话我还在用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP对网页进行限制性的访问]]></title>
    <link>http://im.vc/web/asp/2011/0701/7460.html</link>
    <description><![CDATA[要使用request对象的ServerVariables属性，通过它来获得环境变量的值。使用的语法为：Request.ServerVariables(variable)，variable表示环境变量的名称，如服务器主机名称、Web服务器软件名等等，若]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP Recordset分页出现负数的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7459.html</link>
    <description><![CDATA[对于Recordset分页时出现负数的现象，相信会有很多人遇到过这个问题，有 时百度、GOOGLE也不得其解，现在由我来总结一下。 出现负数，主要和游标类型有关系。（为举例方便，假设已]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP测试WEB服务器]]></title>
    <link>http://im.vc/web/asp/2011/0701/7458.html</link>
    <description><![CDATA[HTML HEAD TITLE测试WEB服务器/TITLE /HEAD BODY Script language=jscript runat=server response.write (table border=1); response.write (trtd脚本引擎 /tdtd); response.write (ScriptEngine()+/td/tr); response.write (trtd编译版本 /tdtd]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[基于ASP与SQL 2000的在线组卷系统的设计与实现]]></title>
    <link>http://im.vc/web/asp/2011/0701/7457.html</link>
    <description><![CDATA[1 引言 在观察现阶段，学校的各种考试试卷大都采用传统的人工出卷 方式，教师每出一份试卷都需要参考各种相关书籍，斟酌试卷的难易程度，甚至 经常重复性劳动。显然，随着教育]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP整合的一个SQL语句类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7456.html</link>
    <description><![CDATA[我们在写ASP数据库程序的时候，通常都会用到SQL语句，而在增加数据和更新 数据的时候，通常会使用一下方式：insert into message (incept,sender,title,content,sendtime,flag,issend) values ('incept(i) ',]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进ASP应用程序中的字符串处理性能(2)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7455.html</link>
    <description><![CDATA[此类中使用的基本原则是，在类级别将变量 （m_sText） 用作字符串缓冲区 ，并使用 Space$ 函数以空格字符填充此缓冲区以将其设置为特定的大小。如果 要将更多文本与现有文本连接在一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP设计一个留言薄]]></title>
    <link>http://im.vc/web/asp/2011/0701/7454.html</link>
    <description><![CDATA[首先，我们在做留言薄之前，先做出一个输入屏的界面效果，也就是生成留言部输入屏幕的htmL页，然后在这些htmL源代码中加入ASP脚本，我这里得到的htmL代码如下。 *文件名：book.htm ＜]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP+XML打造个性化留言本(1)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7453.html</link>
    <description><![CDATA[一、读者指引 读者指引帮助你掌握本文的梗概。以免你看了大半才明白这编文章不适合你，给你造成视觉污染。 如果你正在用ASP+XML写一些程序，或者你正在学XML那就值得一看。 阅读本]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现网上“五子棋”大赛]]></title>
    <link>http://im.vc/web/asp/2011/0701/7452.html</link>
    <description><![CDATA[五子棋是大家都非常熟悉的一种益智类游戏，相关的游戏软件也非常多，在此我向大家隆重推出一款新的纯网络版的五子棋，它利用ASP做为开发环境，因此在Internet上对战的时候无需下]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用GetString来提高ASP的速度]]></title>
    <link>http://im.vc/web/asp/2011/0701/7451.html</link>
    <description><![CDATA[许多ASP程序员都有过执行数据库查询，然后将查询结果用HTML表格的形式显示出来的经历吧。通常我们是这么做的: % 'Create connection / recordset 'Populate data into recordset object % TABLE % Do While n]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP+XML打造个性化留言本(2)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7450.html</link>
    <description><![CDATA[六、建立写新留言程序(PostNew.asp) 这个文件要实现的功能就是写入新的XML节点，首先创建一个XML对像然后把XML读入内存中，利用appendChild()方法加入我们生成的XML节点。 ＜% username=reques]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用程序中限制重复提交同一表单]]></title>
    <link>http://im.vc/web/asp/2011/0701/7449.html</link>
    <description><![CDATA[在Internet上我们每天都会遇到数不清的表单，也看到其中大部分并没有限制用户多次提交同一个表单。缺乏这种限制有时候会产生某些预料不到的结果，如重复订阅邮件服务或重复投票]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写下载网页中所有资源的程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7448.html</link>
    <description><![CDATA[看过一篇关于下载网页中图片的文章，它只能下载以http头的图片，我做了些改进，可以下载网页中的所有连接资源，并按照网页中的目录结构建立本地目录，存放资源。 download.asp?url]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP对表单操作的程序实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7447.html</link>
    <description><![CDATA[Inserting Form content into Database with ASP. % ' -- Loader.asp -- ' -- version 1.5.2 ' -- last updated 12/5/2002 ' ' Faisal Khan ' faisal@stardeveloper.com ' www.stardeveloper.com ' Class for handling binary uploads Class Loader Private d]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现IE地址栏参数的判断]]></title>
    <link>http://im.vc/web/asp/2011/0701/7446.html</link>
    <description><![CDATA[在服务器端asp程序可以接受html页面上的form传来的参数，那么它又如何实现IE地址参数判断呢？ 当地址栏没有参数＂id＂时： 以下是引用片段： Request.QueryString[ID]==null Convert.ToString(Requ]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用CMyObject类对服务器端接收的表单数据实现对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7445.html</link>
    <description><![CDATA[从客户端获取的表单数据是平板结构，没有体现数据之间的关联（例如层级关 系），当数据来自多个表单、处理后需要分别保存到多张数据表时，表单数据与 数据表之间又缺乏对应关]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP处理XSLT转换XML的实现]]></title>
    <link>http://im.vc/web/asp/2011/0701/7444.html</link>
    <description><![CDATA[使用ASP处理XSLT转换XML比较简单，思路如下：创建一个XSLTemplate的对象，再创建一个XMLDOM对象，然后在家Xml文件和XSLT文件，最后使用方法transform即可，包含到类里面，具体代码如下： 以]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP错误提示大全]]></title>
    <link>http://im.vc/web/asp/2011/0701/7442.html</link>
    <description><![CDATA[ASP错误提示大全 MicrosoftVBScript语法错误(0800A03E9)＞内存不足MicrosoftVBScript语法错误(0800A03EA)＞语法错误 MicrosoftVBScript语法错误(0800A03EB)＞缺少?: MicrosoftVBScript语法错误(0800A03ED)＞缺少?( Mic]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP如何跳出本次进入下一次循环]]></title>
    <link>http://im.vc/web/asp/2011/0701/7441.html</link>
    <description><![CDATA[看下面的Java代码，目的是为了当i是3的时候，就不做输出，直接跳到下一个循环。 int i = 0; while (i 5) ...{ i++; if (i == 3) ...{ continue; } System.out.println(I'm not 3, I'm + i); // Do something else... } 然而]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP可逆算法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7440.html</link>
    <description><![CDATA[unction encrypt(ecode) Dim texts dim i for i=1 to len(ecode) texts=texts chr(asc(mid(ecode,i,1))+i) next encrypt = texts end function function decrypt(dcode) dim texts dim i for i=1 to len(dcode) texts=texts chr(asc(mid(dcode,i,1))-i) next]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现远程抓取网页到本地数据库]]></title>
    <link>http://im.vc/web/asp/2011/0701/7439.html</link>
    <description><![CDATA[接到一个任务是把中国名牌网站的某些内容添加到我们的网站上，这些网站上 有些页面是文章链接列表，点击链接会出现文章的详细内容显示页，根据这个规 律，结合正则表达式，X]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成静态Html文件技术杂谈]]></title>
    <link>http://im.vc/web/asp/2011/0701/7438.html</link>
    <description><![CDATA[网页生成静态Html文件有许多好处,比如生成html网页有利于被搜索引擎收录,不仅被收录的快还收录的全.前台脱离了数据访问,减轻对数据库访问的压力,加快网页打开速度. 像www.aspid.cn的主]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP分析内容自动保存远程图片到本地并取得第一]]></title>
    <link>http://im.vc/web/asp/2011/0701/7437.html</link>
    <description><![CDATA[俺从SNA新闻采集系统 For 3.62 (程序制作:ansir)里提取了点函数 用下 比较简单好用 以下是函数 程序代码 % '================================================== '函数名：CheckDir2 '作 用：检查文件夹是否]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现支持附件的EMail系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7436.html</link>
    <description><![CDATA[大家经常探讨使用asp，而不使用其他组建能否实现文件的上传，从而开发出支持邮件附件的邮件系统，答案是可以的。 以下是发送邮件的页面，邮件的帐号是员工号，假设是5位的数字]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Response.Redirect在新窗口打开的另一种方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7435.html</link>
    <description><![CDATA[这里介绍Ihttpmodule处理请求管道的方法。Response.Redirect的原理是服务器设置返回http状态码为302,然后客户端执行跳转，用reflector可以看到.net的代码段。 以下是HttpResponse类的Redirect方法中的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用AdminScripts脚本创建虚拟目录]]></title>
    <link>http://im.vc/web/asp/2011/0701/7434.html</link>
    <description><![CDATA[AdminScripts脚本位于InetpubAdminScripts目录下，本文介绍如何使用这些脚本来创建一个虚拟目录，并对该虚拟目录进行参数设置。 AdminScripts目录下的脚本很多，这里只使用了其中的两个，a]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写网站流量统计系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7433.html</link>
    <description><![CDATA[在目前的网站统计系统决大部分都是CGI的，但编写起来特别复杂，而ASP学起来简单，更有和数据库结合的优点，所以结合自己曾经做过的网站统计系统，和大家探讨一下ASP编写网站统计]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[个人主页的数据库ASP解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0701/7432.html</link>
    <description><![CDATA[如今，CGI日渐衰落，ASP大行其道，大有取而代之之势。对个人主页制作者而 言，CGI也确实太复杂了，尤其是在数据库的操作上，繁复无比让人望而生畏。相 较而言， ASP则简单得多。其]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP读取XML数据文件的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7431.html</link>
    <description><![CDATA[分别保存下面两段代码，一个保存为readxml.asp另一个保存为test.xml，放在同一个目录下面，调试程序即可，在程序里面我已经做了解释，读取代码可以做成一个readxml的函数，通过使用输]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中几种分页显示的比较]]></title>
    <link>http://im.vc/web/asp/2011/0701/7430.html</link>
    <description><![CDATA[下面通过对比来看看几种方式的用时对比。 一，使用存储过程分页，这种情况又分为两种方式： 第一种，使用command对象，如下： Set Cmd=server.CreateObject(Adodb.Command) Cmd.ActiveConnection=conn]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网站数据库被挂木马的处理办法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7429.html</link>
    <description><![CDATA[第一步：为现有数据库做好备份。 第二步： 执行如下ASP文件 ，这样就可以去掉数据库当中的JS木马： 注：conn.asp自己去写了。 '这里放入JS木马内容：请记得改为自己数据库中的JS木马]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp计算页面执行时间]]></title>
    <link>http://im.vc/web/asp/2011/0701/7428.html</link>
    <description><![CDATA[页面执行时间：就是从这页的开始执行一直到这页执行完毕所用的时间。 许多网站的的页尾都会显示一个页面执行时间，下面说说如何实现： 首先在一个网页的开头定义一个变量：]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用组件搜索]]></title>
    <link>http://im.vc/web/asp/2011/0701/7427.html</link>
    <description><![CDATA[MicroSoft的ASP(Active Server Page)技术极大的方便了在网络中对于数据库的访问，而且由于ASP不同于CGI需要那么多的请求（减少了服务器的资源占用），以及ASP同Windows NT 、2000的结合使得ASP技]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[编写通用的ASP防SQL注入攻击程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7426.html</link>
    <description><![CDATA[SQL注入被那些菜鸟级别的所谓黑客高手玩出了滋味，发现现在大部分黑客入 侵都是基于SQL注入实现的，哎，谁让这个入门容易呢，好了，不说废话了，现在 我开始说如果编写通用的S]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[点击链接弹出保存图片对话框的asp代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7425.html</link>
    <description><![CDATA[call download(server.mappath(./test.jpg)) Function download(File) temp = Split(File, ) filename = temp(UBound(temp)) Set s = CreateObject(adodb.stream) s.mode = 3 s.Type = 1 s.Open s.loadfromfile(File) data = s.Read If IsNull(data) Then res]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP自动生成编号的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7424.html</link>
    <description><![CDATA[1.建种子表,这个表用来保存各个表目前已使用到的最大序号 --种子表 create table SEED ( BM varchar(20) not null, --表名 BH varchar(12) not null, --种子编号 constraint PK_SEED primary key(BM) ) go 2.当我们建一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用sql语句动态的创建access表]]></title>
    <link>http://im.vc/web/asp/2011/0701/7423.html</link>
    <description><![CDATA[用sql语句动态的创建access表的代如下！ % nowtime = now() tablename = cstr(year(nowtime))+\_\+cstr(second(nowtime)) response.write tablename db_path = \test.mdb\ Set conn= Server.CreateObject(\ADODB.Connection\) connstr = \Provi]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp利用xmlhttp下载远程图片]]></title>
    <link>http://im.vc/web/asp/2011/0701/7422.html</link>
    <description><![CDATA[% function getHTTPimg(url) on error resume next dim http set http=server.createobject(MSXML2.XMLHTTP) Http.open GET,url,false Http.send() if Http.readystate4 then exit function getHTTPimg=Http.responseBody set http=nothing if err.number0 th]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现类似资源管理器的树形目录]]></title>
    <link>http://im.vc/web/asp/2011/0701/7421.html</link>
    <description><![CDATA[树形目录显示程序 问题描述： 在我们项目中常常会出现自关联的数据表，如果我们从整体看去，整个表就呈现为一个树形数据结构（对于复杂的情况，它可能变成一个图）。当我们对]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现网页BBS]]></title>
    <link>http://im.vc/web/asp/2011/0701/7420.html</link>
    <description><![CDATA[传统的网页BBS大多是采用CGI模式实现的，它的实现要求编程者既要掌握编程 语言如Perl或C等，又要了解关于CGI模式的各项技术内容，因此要制作自己的网 页BBS确实困难不小。ASP（Activ]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP模拟MVC模式编程]]></title>
    <link>http://im.vc/web/asp/2011/0701/7419.html</link>
    <description><![CDATA[大家都知道JAVA里最流行的是MVC模型的编程方式，如果你不知道MVC的概念，可以去网上搜索下，应该会马上找到N多资料。PHP5推出之后，也开始使用MVC模式开发，看来MVC确实有很大的吸引]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[conn.execute的用法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7418.html</link>
    <description><![CDATA[conn.execute、rs.open之间的差别conn.execute、rs.open、command.execute方法用法大大不同 通常形成记录集可以使用 Set rs=conn.execute(SQL) 或直接 rs=CONN.execute(SQL) 和 Set rs=Server.CreateObject(ADODB.Recordset)]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[MS-SQL分页函数+ASP]]></title>
    <link>http://im.vc/web/asp/2011/0701/7417.html</link>
    <description><![CDATA[CREATE PROCEDURE [dbo].[USP_GetList] ( @pageIndex int = 1 -- 当前页码0 表示返回所有符合内容 ,@pageSize int = 10 -- 页尺寸 ,@SID nvarchar(30) = '' -- 主键字段 ,@strGetField nvarchar(1000) = '*' -- 需要返回的列 ,@st]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP判断文件地址是否有效]]></title>
    <link>http://im.vc/web/asp/2011/0701/7416.html</link>
    <description><![CDATA[% Response.Write(headstyle!--span{ font-size: 9pt }--/style/head) On Error Resume Next Dim thisurl,thistext thisurl=Request(thisurl) '定义文件地址(非Html格式文档)! if thisurl= then Response.Write(span请先输入文件地址!/spa]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[WEB开发规范范本]]></title>
    <link>http://im.vc/web/asp/2011/0701/7415.html</link>
    <description><![CDATA[一.页面设计部分 1.img控件 alt：所有展示类图片都要具有能简要描述图片内容的文字说明。 2.Input控件 maxlength：所有INPUT控件都需要制定maxlength属性，默认值为数据库中对应的字段的长度]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[改进ASP应用程序中的字符串处理性能(1)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7414.html</link>
    <description><![CDATA[摘要：大多数 Active Server Pages （ASP） 应用程序都要通过字符串连接 来创建呈现给用户的 HTML 格式的数据。本文对几种创建此 HTML 数据流的方法 进行了比较，在特定情况下，某些方法在]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对你的ASP程序作负载测试]]></title>
    <link>http://im.vc/web/asp/2011/0701/7413.html</link>
    <description><![CDATA[介绍 当我们从传统的CS结构的应用程序转到当前流行的Web空间的程序时，我们发现我们在尝试跟上不断增长的可测性需求和性能要求。其中一个最大的挑战在于如何确定你的程序能最多]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP在浏览器上打印输出]]></title>
    <link>http://im.vc/web/asp/2011/0701/7412.html</link>
    <description><![CDATA[利用asp结合javascript或vbscript可以生成动态的web页面。在将这种方法用于实际应用中时，不可避免的要将结果打印输出。我们同样可以将查询结果整理后输出，并用浏览器工具栏上的打印]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（2）：FSO组件之文件夹操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7411.html</link>
    <description><![CDATA[操作完驱动器，接着就是来操作文件夹了。其中包括：提取文件夹信息、创建文件夹、删除文件夹、复制文件夹、移动文件夹等。下面就具体来看。 一、fso.GetFolder 一看就明白，是提取]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常用ASP自定义函数集(S.Sams)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7410.html</link>
    <description><![CDATA[rem ---表单提示函数 Being----------------------------- CODE Copy ... Function Check_submit(str,restr) if str= then response.write script response.write alert('restr'); response.write history.go(-1) response.write /script response.end]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+DLL实现WEB方式修改服务器时间]]></title>
    <link>http://im.vc/web/asp/2011/0701/7409.html</link>
    <description><![CDATA[昨天一个朋友有个需求，是要通过WEB方式，修改IIS服务器上的时间，由于他的系统是ASP 3.0下开发的，所以本例子的代码是ASP的，不是ASP.NET，但是本人写这个文章是想抛砖引玉，毕竟编]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（3）：FSO组件之文件操作（上）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7408.html</link>
    <description><![CDATA[学会了FSO提取文件值，也学会了将信息输入到文件中，那下面就再来应用应用下。 不知道你有没有这样的习惯：看到一个文件，不自觉的右键选择用记事本打开。呵呵，几乎没有哪个文]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[把网页中的电话号码生成图片的ASP程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7407.html</link>
    <description><![CDATA[以下是引用片段： % Call Com_CreatValidCode(Request.QueryString(tel)) Public Sub Com_CreatValidCode(pTel) '----------禁止缓存 Response.Expires = 0 Response.AddHeader Pragma,no-cache Response.AddHeader cache-ctrol,no-cache Respons]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP编写函数实现身份证验证代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7406.html</link>
    <description><![CDATA[Function CheckCardId(e) arrVerifyCode = Split(1,0,x,9,8,7,6,5,4,3,2, ,) Wi = Split(7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2, ,) Checker = Split(1,9,8,7,6,5,4,3,2,1,1, ,) If Len(e) 15 Or Len(e) = 16 Or Len(e) = 17 Or Len(e) 18 Then CheckCardId= 身]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（4）：FSO组件之文件操作（下）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7405.html</link>
    <description><![CDATA[一，fso.GetFile 提取文件相应的 File 对象 1，getfile.asp % whichfile=Server.MapPath(cnbruce.txt) Set fso = CreateObject(Scripting.FileSystemObject) Set f1 = fso.CreateTextFile(whichfile,true) f1.Write (This is a test.My Name is c]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web文件的ContentType类型大全]]></title>
    <link>http://im.vc/web/asp/2011/0701/7404.html</link>
    <description><![CDATA[ContentType属性指定服务器响应的HTTP内容类型。如果未指定ContentType，默认为text/html。 在ASP中使用它： % Response.ContentType = text/HTML % % Response.ContentType = image/GIF % % Response.ContentType = image/JP]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP程序模拟实现first-child的功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7403.html</link>
    <description><![CDATA[first-child用来设置对象（Selector1）的第一个子对象（Selector2）的样式表属性。比如一个列表第一行的样式可以和其他行有所不同，但目前IE尚不支持此伪类。下面给出用ASP模拟实现的方法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp操作excel，显示数据及统计方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7402.html</link>
    <description><![CDATA[这次做的活是asp操作excel，全程序是每行都标出，然后像填空一样做的。现在被我改成了动态显示每行的项，再逐行显示，最后做一个汇总。 1、FSO找到excel文件 % Dim fso,folder,file Set fso]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[对ASP动态包含文件方法的改进]]></title>
    <link>http://im.vc/web/asp/2011/0701/7401.html</link>
    <description><![CDATA[ASP本身不支持动态包含文件，现在的动态包含是通过FSO把被包含的文件合并到主文件里再运行。以下也有把形如 !--#include file=filename.asp -- 的普通包含文件方式称作传统引用，用函数实现]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP读INI配置文件的函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7400.html</link>
    <description><![CDATA[要求： 能够读取按照INI文件的Section和Key来读出相应的Value。 比如一个配置文件 SMSVote.ini --------------------------------- [SMSVote] Server=(local) DB=SMSVote User=sa PassWord=123 [DB2Vote] Server=192.168.0.1 DB=]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP安全设置：禁止从外部提交数据]]></title>
    <link>http://im.vc/web/asp/2011/0701/7399.html</link>
    <description><![CDATA[使用asp尽量减少服务器端的工作量，这样就应该多使用javascript，把所有提交字段使用javascript或vbscript检测后提交给服务器，这样服务器就不必再作检测，而在提交时可能会有人修改sc]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现不存在的网页就自动发送邮件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7398.html</link>
    <description><![CDATA[制作网站的时候通常会有当访客的一些错误操作或我们网站本身的缺陷，造成某个不存在的页面被访问，这时会出现404错误提示信息，如果是热心的访客可能会给你发一封邮件提示你，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP构建音乐服务器的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7397.html</link>
    <description><![CDATA[音乐服务器（Music Server）是指一个提供音乐在线服务的服务器，它包括高端提供门户服务的网站、Web数据库和低端的操作平台、硬件设施。目前，在Internet和Intranet上有不少这样的站点，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP备份数据库]]></title>
    <link>http://im.vc/web/asp/2011/0701/7396.html</link>
    <description><![CDATA[文件1：BackupDB.asp %@ Language=VBScript % HTML HEAD META name=VI60_defaultClientScript content=VBScript META NAME=GENERATOR Content=Microsoft FrontPage 4.0 SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript !-- Sub btnbak_onclick if frm]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现无组件生成GIF格式验证码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7395.html</link>
    <description><![CDATA[% Option Explicit ' 显示声明 Class Com_GifCode_Class ''''''''''''''''''''''''''''''''''''''''''''' ' Author: Layen support@ssaw.net 84815733(QQ) ' Thanks: Laomi, Laomiao, NetRube ' 2006-01-02 '''''''''''''''''''''''''''''''''''''''''''']]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP生成二维拼图]]></title>
    <link>http://im.vc/web/asp/2011/0701/7394.html</link>
    <description><![CDATA[%@ Language=VBScript % HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 /HEAD BODY OBJECT classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D id=MSChart1 style=LEFT: 0px; TOP: 0px VIEWASTEXT height=300 width=300/OBJECT SCRIP]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程隐藏图片的真实地址]]></title>
    <link>http://im.vc/web/asp/2011/0701/7393.html</link>
    <description><![CDATA[一般情况下，网站的图片代码是这样的。 img src=./attachments/test.jpg / 右键点击图片，选择属性就可以看到图片的真实地址。这样就让其它网站有机可乘，盗链您网站的图片。我们可以利用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获得代码中第一张图片地址]]></title>
    <link>http://im.vc/web/asp/2011/0701/7392.html</link>
    <description><![CDATA['把pattern 又修改了下 'code要检测的代码 'leixing html 或者ubb 'nopic 代码没有图片时默认值 function toppic(code,leixing,nopic) set regex = new regexp regex.ignorecase = true regex.global = true if leixing = html then]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现分级权限控制]]></title>
    <link>http://im.vc/web/asp/2011/0701/7391.html</link>
    <description><![CDATA[本文实现的是一个帐务管理系统中分级权限的控制，程序使用ASP和JavaScript编写，在装有IIS4.0的win NT服务器上运行，速度快，易维护。 权限级别划分如下： ①、院长和财务科长：不能输]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序在VB中转换为组件的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0701/7390.html</link>
    <description><![CDATA[在网易虚拟社区的VB和Basic区里有一篇《使用VB编写纯ASP程序 [转][Technology] 》，其实我认为最好的方法应该这样 原文中的定义如下： Dim m_objResponse As Response 其实对于我们写过.dll的来说，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp通用数据操纵函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7389.html</link>
    <description><![CDATA[我是历尽千辛万苦，拔山涉水啊，终于把这个页面写完了，不过这也要多感谢JSP了，因为昨天心血来潮的时候，突然想学JSP，于是找了几篇文章，看完后觉得javabean太牛X了，有感觉有点]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现开关IIS不重启电脑]]></title>
    <link>http://im.vc/web/asp/2011/0701/7388.html</link>
    <description><![CDATA[有时候我们在WEB程序如：ASP,中无意中使用到了一个死循环，或者在测试DLL组件时，挂了。这时候IIS就停止了响应，我们要继续我们的工作啊，重启IIS服务吧。 然而这个进程还在执行，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[全面解析Server对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7387.html</link>
    <description><![CDATA[Server对象提供对服务器上访问的方法和属性.大多数方法和属性是作为实用程序的功能提供的。 语法: Server.property|method 属性（property） Server 对象只有一个属性：ScriptTimeout 程序能够运行]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP编程入门进阶（1）：FSO组件之驱动器操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7386.html</link>
    <description><![CDATA[FSO，正如UFO般令人激动、令人神往，当然更多的亦是让人欢喜让人忧。君不见某空间服务商广告：100MB空间只要60RMB/年，支持数据库，支持什么什么一问不支持FSO，立马泄气。那FSO究竟]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现在线文章翻译的功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7385.html</link>
    <description><![CDATA[有时候想为我们的网页提供多语言支持，如果一种语言用一张网页来做实在太麻烦了，幸好Google提供了语言工具功能，下面介绍如何利用它来实现网页多种语言之间的转换。 lan.htm 以下]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[修改Metabase.xml文件提升IIS性能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7384.html</link>
    <description><![CDATA[Metabase.xml文件是IIS的设置文件，每个网站已经IIS的设置都在这个下面，所以在修改这个文件之前要把这个文件备份一下。这个文件在C:WINDOWSsystem32inetsrvMetabase.xml，前篇的启用IIS的静态压]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用isapi rewrite实现asp的HTML静态化]]></title>
    <link>http://im.vc/web/asp/2011/0701/7383.html</link>
    <description><![CDATA[asp网站程序在国内运用很广，但是类似于im286.asp?id=20050307213811这样的url有点不利于搜索引擎的收录，也就是说不符合友好url(urls-friendly)的标准，那么我们用isapi_rewrite打造一个clean url，让]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP在线创建Word与Excel文档]]></title>
    <link>http://im.vc/web/asp/2011/0701/7382.html</link>
    <description><![CDATA[ASP具备动态输出任一Office应用程序文件格式的功能。在开始编写代码之前，我们首先需要做的就是设置正确的文件类型，因为浏览器需要知道如何处理文件。第二步是编辑文件名称，我]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP跳过及显示错误]]></title>
    <link>http://im.vc/web/asp/2011/0701/7381.html</link>
    <description><![CDATA[ASP跳过错误： on error resume next ASP显示错误： %option explicit%]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用数据绑定实现高效率动态网页]]></title>
    <link>http://im.vc/web/asp/2011/0701/7380.html</link>
    <description><![CDATA[数据绑定（Data Binding）并不是一个新概念，IE 4.0就已对其给予了丰富的支持。但是，数据绑定并未受到应有的重视，许多开发者似乎更加愿意使用服务器端脚本（Server Script）的方法。然]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中的主页广告轮换技巧]]></title>
    <link>http://im.vc/web/asp/2011/0701/7379.html</link>
    <description><![CDATA[各位对javascript应该是比较熟悉了吧。下面我们就用它来解决广告的问题。设计思路是这样的：将原来同屏显示多个固定广告的做法改为单屏只显示一个广告，但这个广告是轮换的，也就]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中一个简单的用户登陆验证类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7378.html</link>
    <description><![CDATA[源代码如下： %'========================================================================== ' ' 用户登陆身份验证类 ' ' NAME: CheckLogin ' ' AUTHOR: Infozero ' DATE : 2006-5-28 ' ' COMMENT: 用户登陆身份验证类 ' '=======]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[最简单的ASP分页代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7377.html</link>
    <description><![CDATA[% set conn=server.createobject(adodb.connection) conn.open(DRIVER=Driver do Microsoft Access (*.mdb);UID=admin;pwd=;dbq=server.mappath(1.mdb)) set rs=server.createobject(adodb.recordset) sql=select * from student rs.open sql,conn,3 rs.pages]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中关于帖子分页显示的基本方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7376.html</link>
    <description><![CDATA[在了解了Recordset对象的以上属性和方法后，我们来考虑一下，如何运用它们来达到我们分页显示的目的。首先，我们可以为PageSize属性设置一个值，从而指定从记录组中取出的构成一个]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中一个用VBScript写的随机数类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7375.html</link>
    <description><![CDATA[外国人写的一个class，这么一点小小的应用，除非有特殊需求，还没有必要模块化。 用asp产生一个随机数。 % ''************************************************************************** '' CLASS: cRandom ']]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现语音上传]]></title>
    <link>http://im.vc/web/asp/2011/0701/7374.html</link>
    <description><![CDATA[＜script language=javascript function openScript(url, width, height){ var Win = window.open(url,openScript,'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' ); } ＜/script ＜form action=save.asp]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中通过getrows实现数据库记录分页的一段代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7373.html</link>
    <description><![CDATA[%@ Language = VBscript % % Option Explicit % % rem 在asp中通过getrows实现数据库记录分页的一段代码 Dim iStart, iOffset iStart = Request(Start) iOffset = Request(Offset) if Not IsNumeric(iStart) or Len(iStart) = 0 then iStar]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中一个字符串处理类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7372.html</link>
    <description><![CDATA[% class StringOperations ''**************************************************************************** '''' @功能说明: 把字符串换为char型数组 '''' @参数说明: - str [string]: 需要转换的字符串 '''' @返回值: - [Arr]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP随机涵数生成100条8位字母和数字混合密码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7371.html</link>
    <description><![CDATA[%for i = 1 to 100% % Randomize pass= Do While Len(pass)8 '随机密码位数 num1=CStr(Chr((57-48)*rnd+48)) '0~9 num2=CStr(Chr((122-97)*rnd+97)) 'a~z pass=passnum1num2 loop '原创:www.devdao.com % %=pass%br %next%]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP应用：用stream读文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7370.html</link>
    <description><![CDATA[前几天要写一个东西里面有用到读文件的。 可是我不想用FSO，我怕有的空间不支持。 可是网络上找了半天没有找到一个不是用FSO写的。 还是自己做了一个。 我记得以前在做无组件上传]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[CJJ专用ASP类库中的某个class]]></title>
    <link>http://im.vc/web/asp/2011/0701/7369.html</link>
    <description><![CDATA['----******************** TConnString *****************************---- '数据库连接字符串结构体 Class TConnString Public DBName,DBPath,DBServer,DBUser,DBPass,DBType End Class '----******************** TConnString ****************]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP在上传的图片上打自己的文字水印]]></title>
    <link>http://im.vc/web/asp/2011/0701/7368.html</link>
    <description><![CDATA[很多时候需要在用户上传的图片上加上版权或者一些其他的附加文字信息，如何实现这样的功能，下面帖个简单实现的例子，起到抛砖引玉的作用。 %@PageLanguage=c#Debug=trueTrace=true% %@Imp]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中cookie使用示例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7367.html</link>
    <description><![CDATA[首先是前台的表单域: form name=Login action=loginaction.asp method=post 用户名称 input name=User type=text id=User size=23 maxlength=20 用户密码:input name=Password type=password id=Password size=23 maxlength=20 Cookie选项]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Cookie，Session，Application封装]]></title>
    <link>http://im.vc/web/asp/2011/0701/7366.html</link>
    <description><![CDATA[再把其它的操作，比如Cookie，Session，Application封装 CookieState类： % Class CookieState Private CurrentKey Public Default Property Get Contents(ByVal Value) Contents = Values(Value) End Property Public Property Let Expires(]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp实现关键词获取(各搜索引擎，gb2312及utf-8)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7365.html</link>
    <description><![CDATA[不知道为什么现在各大搜索引擎编码居然不一样.当然不是gb2312就是utf-8了.编码问题是比较头疼的问题...头疼的不要命... 我们获得关键词,一般是通过来访页面的url进行分析的.比如 http]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp中如何设计跨越域Cookie]]></title>
    <link>http://im.vc/web/asp/2011/0701/7364.html</link>
    <description><![CDATA[Cookie简介 首先，我们对Cookie做一个简单的介绍，说明如何利用ASP来维护cookie。 Cookie是存储在客户端计算机中的一个小文件，这就意味着每当一个用户访问你的站点，你就可以秘密地在]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Cookie跨域操作解决方案]]></title>
    <link>http://im.vc/web/asp/2011/0701/7363.html</link>
    <description><![CDATA[Cookie跨域操作看来是个简单的问题,因为只要指定Domain属性为指定网站的根域名就可以了. 但是笔者在实际使用过程中却遇到了一些问题，的确值得注意. 环境介绍 cookie在www主域名下创建]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现多域名同一空间的处理实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7362.html</link>
    <description><![CDATA[以这两个域名为例： http://www.bianceng.cn/ http://club.bianceng.cn/ 假设要把这两个域名都绑在同一个空间上，访问时会跳到不同的目录。不是在IIS设置上实现的，而是通过ASP代码来实现。 Cod]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP常用数据库连接及操作的方法和技巧]]></title>
    <link>http://im.vc/web/asp/2011/0701/7361.html</link>
    <description><![CDATA[1.ASP连接Access数据库 % dim conn,mdbfile mdbfile=server.mappath(数据库名称.mdb) set conn=server.createobject(adodb.connection) conn.open driver={microsoft access driver (*.mdb)};uid=admin;pwd=数据库密码;dbq=mdbfile % 2. ASP与]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[js读取服务器Cookies时的中文编码问题]]></title>
    <link>http://im.vc/web/asp/2011/0701/7360.html</link>
    <description><![CDATA[问题的来源在于cookies在传递时是经过了编码的。 写入Cookie内容前需要进行escape（十六进制编码），编码时又是以字节为单位的。 任何一个汉字都会被拆成两个字节分别编码；而js在读]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习：urldecode方法补遗]]></title>
    <link>http://im.vc/web/asp/2011/0701/7359.html</link>
    <description><![CDATA[ASP里面没有urldecode函数，好象aspx里有吧，我不太清楚，但asp里面还是用得很多。在网上查找了有别人写的urldecode函数，但是这个函数有错误，而且在一些方面写得比较难理解。而且有错]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Object对象的一些的隐藏函数介绍]]></title>
    <link>http://im.vc/web/asp/2011/0701/7357.html</link>
    <description><![CDATA[自己写一套类模型的时候顺便整理出来的，贴出来给大家看看，希望能对大家有所帮助。 属性：Object.constructor 该属性被定义在类的prototype中，当对象实例创建后通过__proto__链可被对象]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中操作UTF-8格式的文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7356.html</link>
    <description><![CDATA[注意：这里说的ASP ASP由于它的一些功能对UTF-8支持非常差。 比如，你想生成一个UTF-8格式的文件，使用常用的Scripting.FileSystemObject对象就不行。 Scripting.FileSystemObject对象创建文件的函数]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Cookie集合基础]]></title>
    <link>http://im.vc/web/asp/2011/0701/7355.html</link>
    <description><![CDATA[Cookies、Session和Application对象很类似，也是一种集合对象，都是用来在保存数据。但Cookies和其它对象最大的不同是Cookies 将数据存放于客户端的磁盘上，而Application 以及Session对象是将数]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[获取Google PR值Checksum算法部分ASP版]]></title>
    <link>http://im.vc/web/asp/2011/0701/7354.html</link>
    <description><![CDATA[script language=javascript runat=server /* -- Checksum 算法ASP源代码 -- */ /* -- http://www.eliuzd.com/pr/ -- */ /* -- 挑战者工作组倾情奉献！ 作者：刘志丹 -- */ /* -- 2006-3-20 Eliuzd.com E-mail:eliuzd@gmail.com -- */]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[赋NULL值给COOKIES时出现的错误]]></title>
    <link>http://im.vc/web/asp/2011/0701/7353.html</link>
    <description><![CDATA[很多朋友在使用COOKIES时会出现下面这样的错误： Microsoft VBScript 运行时错误 错误 '800a000d' 类型不匹配: '[object]' 这个错误解决办法其实很简单，原因是因为你给COOKIES赋了一个为NULL的值。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用asp自动解析网页中的图片地址并将其保存到本]]></title>
    <link>http://im.vc/web/asp/2011/0701/7352.html</link>
    <description><![CDATA[现在基于WEB页的HTML的编辑器在新闻系统，文章系统中用得越来越广，一个网页一粘就可以保持原来的样式，同时图片也可以在这个页中保持。但是在使用过程中，如果所粘贴页中的图片]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成静态页面方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7351.html</link>
    <description><![CDATA[1、WITH TEMPLET意思是，生成的页面架构将采用某个已设定的模板，在此之前我的一篇教程中介绍过，希望各位在看本教程之前对ASP采用模板应熟悉下。 2、ASP转变为HTML。不要我再说ASP转变]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带进度条 无组件断点续传下载]]></title>
    <link>http://im.vc/web/asp/2011/0701/7350.html</link>
    <description><![CDATA[Name: ShowoPage(vbs class) RCSfile: ReadMe.txt Revision: 0.12.20051114.f Author: Yehe(叶子) Released: 2005-11-14 09:40:13 Descript: ASP分页类,支持access/mssql/mysql/sqlite Contact: QQ:311673 MSN:myehe@msn.com GT:mmyehe@gmail.com WebS]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[认识和优化connection对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7349.html</link>
    <description><![CDATA[在这个数据库连接中。我们使用了session对象，首先，建立一个conn的连接对象，然后连接到数据库data.mdb中，取得连接句柄后，把它保存在session(conn)这个session会话变量中，在打开记录集]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[操作xml的类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7348.html</link>
    <description><![CDATA[% '' Site validator 1.0.0 '' Very simple concept, run this script on your server, it records the file details to an '' XML file which you download and store. Then, when you come back to make changes you can '' run the XML file back through]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[轻松打造ASP计数器]]></title>
    <link>http://im.vc/web/asp/2011/0701/7347.html</link>
    <description><![CDATA[以下介绍用数据库实现简单计数器 '下面存为count.asp ＜% Set conn=Server.CreateObject(ADODB.Connection) conn.Open driver={Microsoft Access Driver (*.mdb)};dbq= Server.MapPath(count.mdb) %＞ ＜%on error resume next%＞ ＜]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[常用的工具类Utility]]></title>
    <link>http://im.vc/web/asp/2011/0701/7346.html</link>
    <description><![CDATA[% Class Utility Private Reg Public Function HTMLEncode(Str) If IsNull(Str) Or IsEmpty(Str) Or Str = Then HTMLEncode = Else Dim S : S = Str S = Replace(S, , ) S = Replace(S, , ) S = Replace(S, , ) S = Replace(S, vbCrLf, br /) HTMLEncode = S]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[XML替代APPLICATION实现服务器缓存]]></title>
    <link>http://im.vc/web/asp/2011/0701/7345.html</link>
    <description><![CDATA[在ASP开发程序的时候,为了提高ASP运行性能往往会使用APPLICATION作为服务器缓存,APPLICATION缓存占用的是服务器内存空间,如果在ASP程序中大量使用APPLICATION缓存或者缓存大量的内容将会造成]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何使用ASP记录在线用户的数量]]></title>
    <link>http://im.vc/web/asp/2011/0701/7344.html</link>
    <description><![CDATA[网络的访问量是每一个做网站的网友们都非常关心的问题。如何得知有多少个人正在访问你的网站呢 ？如何将每天的访问量记录下来？下面就是一个解决方案。 当有用户开始访问网站]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp编译成dll-图形化教程]]></title>
    <link>http://im.vc/web/asp/2011/0701/7343.html</link>
    <description><![CDATA[1。打开您的Microsoft Visual Basic: 点击确定,以下就按照蓝色的数字步骤. 2 。修改工程名和类模块的名称: 点3,把4改成bi,再点5: 6处改成cjjer. 3。增加到引用asp： 点击引用,然后选择其中的Mi]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[遍历cookies的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7342.html</link>
    <description><![CDATA[为了使用Cookies集合更加方便，可使用名称为Haskeys的附加属性。假如访问的cookie本身也是个集合，即它是一个多值的cookie，这将返回True。使用Haskeys属性，可以遍历完整的Request.Cookies集合]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何在ASP中实现PING]]></title>
    <link>http://im.vc/web/asp/2011/0701/7341.html</link>
    <description><![CDATA[使用WSH调用系统的Ping命令,将Ping的结果重定向到一个文本文件中去,再把文本文件显示到网页中，具体做法如下: 首先, 建一个.BAT文件(例如:myPing.BAT:),这个文件要在ASP中调用,文件代码如下]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的类(VBScript class)基础学习]]></title>
    <link>http://im.vc/web/asp/2011/0701/7340.html</link>
    <description><![CDATA[首先ASP的(VBScript)类是由事件和方法(它们就是构成类的成员了)构成的 在 Class 块中，成员通过相应的声明语句被声明为 Private(私有成员，只能在类内部调用) 或 Public(公有成员，可以在类]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[vbs(asp)的栈类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7339.html</link>
    <description><![CDATA[用js可以用array对象很容易的实现栈的功能，但在vbs中没有相应的功能，没办法，只有自己动手了:( 如果你的栈不了解请查看数据结构的相关内容。这个栈类是参照c++的栈类写的，用法一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[实例讲解ASP实现抓取网上房产信息]]></title>
    <link>http://im.vc/web/asp/2011/0701/7338.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRIPT CODEPAGE=936% !-- #include file=conn.asp -- !-- #include file=inc/function.asp -- !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd html head titleUntitled Document/title me]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP高亮类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7337.html</link>
    <description><![CDATA[Class Wyd_AspCodeHighLight Private RegEx Public Keyword,ObjectCommand,Strings,VBCode Public KeyWordColor,ObjectCommandColor,StringsColor,Comment,CodeColor Private Sub Class_Initialize() Set RegEx = New RegExp RegEx.IgnoreCase = True '' 设置]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中用Server.Transfer实现Rewrite模拟生成静态页效]]></title>
    <link>http://im.vc/web/asp/2011/0701/7335.html</link>
    <description><![CDATA[以前刚刚懂404.asp的时候，曾经幻想把所有程序代码写到404.asp中，实现一个模拟生成静态网页的站，如果程序小还可以，用404.asp实现Rewrite还是一个不错的选择，如果程序代码多达10000]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP缓存类【先锋缓存类】Ver2004]]></title>
    <link>http://im.vc/web/asp/2011/0701/7334.html</link>
    <description><![CDATA[% '------------------------------------------------------------------------------------- '转发时请保留此声明信息,这段声明不并会影响你的速度! '************************** 【先锋缓存类】Ver2004 ******************]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[无需模板 ASP+FSO生成静态HTML页]]></title>
    <link>http://im.vc/web/asp/2011/0701/7332.html</link>
    <description><![CDATA[FSO生成静态HTML文件的时候替换模板标签一直是一个很麻烦的问题，至少我是这么认为的，还要别外做一个模板，麻烦！，我今天看见有一个方法可以解决这个问题 如一个正常的index.a]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[负载平衡环境下的ASP会话管理]]></title>
    <link>http://im.vc/web/asp/2011/0701/7331.html</link>
    <description><![CDATA[创建交互式web 页面时最大的挑战之一是维持用户的状态，一个站点也许想记住你是谁、在n页之前你点击了什么、在这最后一次做了些什么、现在马上要向你显示什么。实现这些功能的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp 类(class)导读]]></title>
    <link>http://im.vc/web/asp/2011/0701/7330.html</link>
    <description><![CDATA[在VBScript中使用类涉及到一些关于面向对象的思想。使用各种语言都可以编写com组件，使用到asp之中，这些语言包含c、vb、delphi或者java等，可以看到windows操作系统可以兼容很多东西，这]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[带进度条的ASP无组件断点续传下载]]></title>
    <link>http://im.vc/web/asp/2011/0701/7328.html</link>
    <description><![CDATA[%@LANGUAGE=VBSCRIPT CODEPAGE=936% %Option Explicit% % '================================== ''带进度条的ASP无组件断点续传下载 '================================== '简介： '1)利用xmlhttp方式 '2)无组件 '3)异步方式获取]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP关于动态数据显示页面的锚点]]></title>
    <link>http://im.vc/web/asp/2011/0701/7327.html</link>
    <description><![CDATA[静态页面的锚点问题应该都不会有什么问题，今天遇到一个关于动态数据显示页面的锚点问题，研究了一下，拿出来和大家分享。 锚点是top，可以放在页面的任何位置，一般是页首。程]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[高亮度代码显示，ASP，VB，VBS，JS，JSP]]></title>
    <link>http://im.vc/web/asp/2011/0701/7326.html</link>
    <description><![CDATA[% private CONST VB_KEY_COLOR=#000099 ''vb 代码关键字显示色 private CONST VB_FUN_COLOR=#990033 ''vb 代码函数显示色 private CONST VB_COM_COLOR=#bbbbbb ''vb 代码注释显示色 private CONST VB_STR_COLOR=#669933 ''vb 代码字符]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[参考c#中的ArrayList写的asp操作数组的类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7325.html</link>
    <description><![CDATA[asp对数组操作要注意的一些问题： 1,LBound()和UBound()是取得数组里最小的和最大的索引值，并不是数组的长度， 数组的长度是:UBound()+1 2,有时要动态改变数组大小，所以要先声明一个空的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP类库之查询翻页优化]]></title>
    <link>http://im.vc/web/asp/2011/0701/7324.html</link>
    <description><![CDATA[SCRIPT language=VBSCRIPT RUNAT=SERVER ''//---- COCOON_自定义类_翻页优化代码 ----//'' Class cc_db_Pager ''-------------------------------- '' COCOON Db_Pager 类 (Ver: 1.02) '' 作者: Sunrise_Chen (sunrise_chen@msn.com) '' 请保留]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个模板类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7323.html</link>
    <description><![CDATA[实现一维循环和二维循环，可以从文件 数据库 变量取摸板 % ''========================================================= '' File: class_template.asp '' Version:1.0 '' Date: 2004-5-7 '' Script Written by R.H '' Description]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成静态页面类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7322.html</link>
    <description><![CDATA[% '******************************************************************************************* ' 创 建 人：cuiwl (longchengfy@hotmail.com) ' 更新时间：2006-11-14 10:11 ' 说 明：生成静态页面 '*******************************]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP日历类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7321.html</link>
    <description><![CDATA[% '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '''' '''' '''' Calendar Version 1.0 '''' '''' by Xinsoft, 2004-10-22 '''' '''' Blogchina.COM ChinaLabs.]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件加密]]></title>
    <link>http://im.vc/web/asp/2011/0701/7320.html</link>
    <description><![CDATA[这里提供了文件加密的一段小程序,以供大家参考. %@ Language = VBScript% % Response.Expires = 0 p = abcdefg Set TestPWD = New CPassWord TestPWD.EnPWD p TestPWD.UnPWD TestPWD.ShowPWD(True) k = TestPWD.ShowPWD(True) l = TestP]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp事件类asplib-eventProvider.class.asp用于获取ip等]]></title>
    <link>http://im.vc/web/asp/2011/0701/7319.html</link>
    <description><![CDATA[作者真是细致，把这些东西都封装成为class了。有点过了，这些东西可以作成过程或者函数来封装，sub和function也是封装，不一定非要class才可以。您的文件库不一定全部都是class，一些]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个简单的采用XML的在线人员统计类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7318.html</link>
    <description><![CDATA[class online sub userState(uState) dim userIP,xmlDoc,root,newUser,delNode,oTime oTime=day(now())*24*60+hour(now())*60+minute(now()) set xmlDoc = server.createObject(Msxml2.DOMDocument) xmlDoc.async = false xmlDoc.load(Server.mappath(xmlUrl]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[生成目录树结构的类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7317.html</link>
    <description><![CDATA[本程序有两文件test.asp 和tree.asp 还有一些图标文件 1。test.asp 调用类生成树 代码如下 %@ Language=VBScript % html head link rel=stylesheet href=tree.css titletree/title /head !-- #include file=tree.asp -- % ''=====]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据库封装驱动]]></title>
    <link>http://im.vc/web/asp/2011/0701/7316.html</link>
    <description><![CDATA[思路： 原来的方案： 我们是首先根据数据库的字段和实际需求设计Web表单，然后从Web表单获取提交的数据集，然后在服务段将提交的数据集和数据库的字段一一对应，然后再一一作过]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[使用application提高ASP数据显示效率]]></title>
    <link>http://im.vc/web/asp/2011/0701/7315.html</link>
    <description><![CDATA[当数据上到好几万多条时,要调用几条数据在页面显示,ASP就会慢如蜗牛.最糟糕的是,当n多用户打开页面访问的时候,每个用户每次都要读取数据库一次,这无疑降低了效率,很明显, 如果能把]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用MVC模型引导你的WEB设计思路]]></title>
    <link>http://im.vc/web/asp/2011/0701/7313.html</link>
    <description><![CDATA[习惯于过程式的开发，一直向往着面向对象。无奈半路出家人，没有一点内力基础，看了一大堆面向对象的书也只是看得一头雾水。对于MVC的概念也是偶然了解到的，感觉能和WEB开发结]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp开发中的面向对象化]]></title>
    <link>http://im.vc/web/asp/2011/0701/7312.html</link>
    <description><![CDATA[开发网站其实就是对数据库中数据的操作，所以我们可以把数据看作一个总的对象，每一个数据表都是一个对象，加入有数据表Topic的话，我们可以这样来做： (以下部分只是一个思路，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[输入验证类Validator]]></title>
    <link>http://im.vc/web/asp/2011/0701/7311.html</link>
    <description><![CDATA[%@Language=VBScript CodePage=936% % ''Option Explicit Class Validator ''************************************************* '' Validator for ASP beta 3 服务器端脚本 '' code by 我佛山人 '' wfsr@cunite.com ''**************************]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[cookie对象简介]]></title>
    <link>http://im.vc/web/asp/2011/0701/7310.html</link>
    <description><![CDATA[什么是cookie cookie 的英文本意是指就着牛奶一起吃的点心。然而，在因特网内，cookie这个字有了完全不同的意思。那么cookie到底是什么呢？Cookie是小量信息，由网络服务器发送出来以存]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[远程获取类Asp xmlHttp]]></title>
    <link>http://im.vc/web/asp/2011/0701/7309.html</link>
    <description><![CDATA[编者注：这个class主要用于操作asp中的xmlhttp。 首先是类定义 Cls_AspHttp.asp： % ''================================================================= ''飞扬远程获取类(AspHttp) 1.0.1 Bate1 '' By 奔腾的心 '' 2006]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据载取类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7308.html</link>
    <description><![CDATA[网络数据载取系统(WebCutpurse) 系统版本：Version 1.0 使用说明 作用:截取网络数据通用类，利用此类可以截取网络上文字，图片，Flash，音乐等 =================== 类的属性 =================== URL属]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP应用中验证用户身份]]></title>
    <link>http://im.vc/web/asp/2011/0701/7307.html</link>
    <description><![CDATA[为简单计，本文只讨论在服务器端的用户身份验证。登录页面是通过调用ASPSecurity.inc中的signUserOn函数验证用户身份的。signUserOn检查数据库中是否存在和用户输入的名字、密码匹配的记]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp数据库操作类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7304.html</link>
    <description><![CDATA[% Option Explicit % % '**************************************************************** ' 类名：Cls_dbOperate ' 作用：数据库操作类 '**************************************************************** Class Cls_dbOperate Private str]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落--Exception（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7303.html</link>
    <description><![CDATA[很诱人的标题，今天不是给大家介绍，而是跟大家讨论些问题。 在做开发的这几年中，大大小小的项目也经历了很多，但无论那个项目中，都没有真正的对Exception进行完整的处理。虽然]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何编写一个ASP类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7302.html</link>
    <description><![CDATA[首先ASP的类是由事件和方法（它们就是构成类的成员了）构成的，如果大家还没有接触过，可以先看看下面的说明： 在 Class 块中，成员通过相应的声明语句被声明为 Private(私有成员，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[同Scriptiing.Dictionary等价的字典类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7301.html</link>
    <description><![CDATA[写些类的原因是因为个人所写的模版类.,因为很多免费的个人主页空间(因为阿拉穷啊,没钱买空间啊=.=)都不提供FSO.所以导致Scripting.Dictionary也不能使用,所以那模版类就不能运行了.于是就]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落—Exception（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7300.html</link>
    <description><![CDATA[在上一篇文章中，跟大家简单介绍了一下Exception，也使大家充分的了解了Exception管理在一个项目中的重要性，那如何在我们的项目中处理异常呢？因为我从事的是Web开发，所以我只跟大]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[面向对象的ASP技术]]></title>
    <link>http://im.vc/web/asp/2011/0701/7299.html</link>
    <description><![CDATA[历史 如今的Web应用程序越来越流行，基于B/S结构的软件也日渐增多。这也不难想象，正如Sun公司总裁Scott所说，计算机就是网络，随着互联网技术的发展，知识在世界范围内得到充分的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[数据库备份转换为Excel文件类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7298.html</link>
    <description><![CDATA[注意:此版本的类暂时只支持一次转换一个数据表，即一个数据表只能对应一个Excel文件。如果转换一个数据表后不更换TargetFile参数，则将覆盖以前的表数据！！！！ 使用方法请仔细阅]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[另外一个分页类：支持多风格变换的ASP分页类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7297.html</link>
    <description><![CDATA[% '****************************** '名称：分页类 '日期：2005/12/3 '作者：西楼冷月 '网址：www.xilou.net | www.chinaCMS.org '描述：无 '版权：转载请注名出处，作者 '****************************** Class Page Pr]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[一个让人遗忘的角落—Exception（三）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7296.html</link>
    <description><![CDATA[上一篇中主要介绍了Log的几种方式，接下来说说通知的方式： 通知方式 说明 Email 这是最常见也是最方便的一种通知方式。 优点：使用简单 缺点：需要依赖于SMTP服务器等 SMS 这也是目]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[文件、目录、文本文件等多种操作类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7295.html</link>
    <description><![CDATA[一个使用fso的class，前面的文章也有提到。这里有比较多的一些实例。 % Dim MyFileFolder Set MyFileFolder = New FileFolderCls ''Response.Write MyFileFolder.MoveAFile(f:1234561.exe,f:1234562.txt) ''Response.Write MyFil]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用类实现模块化]]></title>
    <link>http://im.vc/web/asp/2011/0701/7294.html</link>
    <description><![CDATA[写在前面的话： 所有写程序的人都知道，当你逐渐对您要实现的功能展开的时候，很大的时候，第一天写的东西第二天就忘了写到那里了，很多的时候，不得不写上详细的程序开发笔记]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[cookies读写基本例子]]></title>
    <link>http://im.vc/web/asp/2011/0701/7293.html</link>
    <description><![CDATA[writecookie.asp %@ Language=VBScript % %Response.Buffer=true% HTML HEAD META NAME=GENERATOR Content=Microsoft Visual Studio 6.0 TITLE写Cookie的示例/TITLE /HEAD BODY % Response.Write 写Cookie： Response.Cookies(Cookie1)(key1) = KeyValu]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ACCESS数据库访问的类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7292.html</link>
    <description><![CDATA[大部分ASP应用，都离不开对数据库的访问及操作，所以，对于数据库部分的访问操作，我们应该单独抽象出来，封装成一个单独的类。如果所用语言支持继承，可以封装一个这样的类，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据持久层抽象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7291.html</link>
    <description><![CDATA[数据持久层在所有的系统中都存在。对于小型或者中型的ASP应用，这一点往往不受重视。这篇文章试图改善这一现状，以一种简单的方式提供了简化调用ADO相关对象的方法。这种方法的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[异常类Exception]]></title>
    <link>http://im.vc/web/asp/2011/0701/7290.html</link>
    <description><![CDATA[异常类Exception： % Class Exception Private IWindow Private ITarget Private ITimeOut Private IMode Private IMessage Private IHasError Private IRedirect Public Property Let Window(ByVal Value) IWindow = Value End Property Public Property]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP代码的对象化]]></title>
    <link>http://im.vc/web/asp/2011/0701/7289.html</link>
    <description><![CDATA[提起ASP很多人就认为是一堆HTML脚本和被括在%和%之中的一些代码还有就是一些JAVASCRIPT脚本等筹在一起的一些代码的集合，这样的代码，再加上各类的不同格式的注释，看起来就一个字：]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的debug类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7288.html</link>
    <description><![CDATA[ASP中最头疼的就是调试程序的时候不方便，我想可能很多朋友都会用这样的方法response.write ，然后输出相关的语句来看看是否正确。前几天写了一个千行的页面，里面大概有七八个SUB]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP将HTML格式数据传输给Excel]]></title>
    <link>http://im.vc/web/asp/2011/0701/7287.html</link>
    <description><![CDATA[到目前为止，有好几种方法可以使用ASP技术来创立Excel数据表格，你还可以利用服务器端Excel 8.0 VBA组件建立电子数据表。但是，某些情况下服务器可能无法处理所涉及到的信息量或无法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[遭遇ASP类的事件设计]]></title>
    <link>http://im.vc/web/asp/2011/0701/7286.html</link>
    <description><![CDATA[我之所以还是要宣扬用MVC来开发ASP，只是想让面向过程的思考方式变成面向对象的思考方式，这个对于任何一种语言的开发员来说都是有好处的。 MVC是个标准模型，ASP要实现似乎真的是]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP框架设计]]></title>
    <link>http://im.vc/web/asp/2011/0701/7285.html</link>
    <description><![CDATA[一，概述 ASP源代码的容易获得(如果用DLL封装则又不利于虚拟主机部署)使得ASP源码在国内流行到泛滥，程序员倾向于快速编程和快速忘记，可读性和维护性都为人诟病。其实，ASP代码也]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP控制虚拟主机函数ADSI]]></title>
    <link>http://im.vc/web/asp/2011/0701/7284.html</link>
    <description><![CDATA[使用ASP设置指定站点CPU最大使用程度 '================================================= '函数介绍：设置指定站点CPU最大使用程度 '本函数使用ADSI，需要Administrators组用户权限 '函数名称：SetCPULim]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中的cookies的基本使用方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7283.html</link>
    <description><![CDATA[有2种使用cookie cookies集合的基本方式： 1、将cookie写入访问者的计算机（RESPONSE） 2、从访问者的计算机中取回cookie（REQUEST ） 如果您对cookies如何在浏览器和服务器之间进行传递，可以参]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(1)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7282.html</link>
    <description><![CDATA[当你有了一个自己的网站以后，尤其是对于那些流量较大、内容较多的网站，每天的更新站点成了你维护网站的首要任务之一，但往往是找到了资料以后，还要先做出与其相关的页面，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[adodb.stream文件操作类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7281.html</link>
    <description><![CDATA[% ''/*******************************二进制文件操作类************************************ ''/*作者：死在水中的鱼（死鱼） ''/*日期：2004年9月7日 ''/*BLOG: http://blog.csdn.net/bpfish ''/* ''/*用法： ''/*Dim obj,s]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中FSO的神奇功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7280.html</link>
    <description><![CDATA[在ASP中，FSO的意思是File System Object，即文件系统对象。 我们将要操纵的计算机文件系统，在这里是指位于web服务器之上。所以，确认你对此拥有合适的权限。理想情况下，你可以在自己]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(2)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7279.html</link>
    <description><![CDATA[上一节为大家介绍了文章管理系统的数据库结构，建立了数据库以后，就要用ASP建立与数据库相关的程序，包括连接数据库、显示数据库内容、更新数据库等与之相关的程序，所以本篇]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[adodb的类封装]]></title>
    <link>http://im.vc/web/asp/2011/0701/7278.html</link>
    <description><![CDATA[Script language=vbscript runat=server '**************************************************************** ' Script Compont Object Model ' Design for Active Server Pages ' Copyright 2004 Version 2.0 ' ******************************************]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[拒绝破坏禁用FileSystemObject组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7277.html</link>
    <description><![CDATA[众所周知，FileSystemObject组件的强大功能及破坏性是它屡屡被免费主页提供商(那些支持ASP)的禁用的原因。 第一种：用RegSrv32 /u C:WINDOWSSYSTEMscrrun.dll(win98路径)来注销该组件。 第二种：修改]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(3)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7276.html</link>
    <description><![CDATA[上一节已经介绍了关于文章管理的数据库连接，本篇将讲述文章的在线添加，当你找到了一篇很好的资料，并且想尽快放到你的网站上面，如果你首先想到的是快点做好一个页面，并且]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成XBM图可用作验证码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7275.html</link>
    <description><![CDATA[这个程序主要是先生成一个随机数，然后根据生成的随机数经过变换后作为XBM图片的内容，最后显示这个图片. 验证时中要获取输入的数字和Session(validatecode)比较，如果相等则通过验证]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[filesystemobject组件的用法示例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7274.html</link>
    <description><![CDATA['''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' CreateLyrics ' 目的： ' 在文件夹中创建两个文本文件。 ' 示范下面的内容 ' - FileSystemObject.CreateTextFile ' - TextStream.WriteLine ' - TextSt]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(4)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7273.html</link>
    <description><![CDATA[经过了文章的添加过程，我想大家更想知道ASP代码是怎样将页面上的信息保存到数据库里面的呢？而且这一功能还必须由另外一个页面来实现，由于ASP对数据库支持的完好性，由ASP来实]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的标签引擎类tagEngine.Class]]></title>
    <link>http://im.vc/web/asp/2011/0701/7272.html</link>
    <description><![CDATA[修改记录： 1,增加扩展函数,2006-12-3 % '****************************** '类名：tagEngine '名称：标签引擎 '日期：2006-11-29 '作者：西楼冷月 '网址：www.xilou.net | www.chinaCMS.org '描述：只有提取标签功]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[FSO+递归生成文件列表(xml)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7271.html</link>
    <description><![CDATA[本来生成这个xml文档是为了开发一个ftp的搜索,后来由于没有资料参考怎么搜索xml文档,也就放弃了.其中最重要的是递归的算法.生成文件列表的速度很快.这个程序可以用于生成播放列表]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP进阶之文章在线管理更新(5)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7270.html</link>
    <description><![CDATA[前面为大家介绍了文章的在线添加以及保存，但如果仅仅是这样还不够的，因为有很多的文章本身带有的HTM代码必须完整的显示出来，而不是显示出它的效果来，这也就是说必须转化]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp的Cookie集合简介]]></title>
    <link>http://im.vc/web/asp/2011/0701/7269.html</link>
    <description><![CDATA[cookie的属性： 1、ExpiresAbsolute属性 该属性可以赋一个日期，过了这个日期Cookie就不能再被使用了。通过给Expires属性赋一个过期的日期，就可以删除Cookie。如： %Response.cookies(passtime).exp]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[为自己的ASP网站系统构建一套标记语言]]></title>
    <link>http://im.vc/web/asp/2011/0701/7268.html</link>
    <description><![CDATA[作为动态网站在建设过程中难免遇到在线编辑文章的问题。HTML提供了一个textarea标记，但是实际上没有解决这个问题，因为从textarea的是纯文本。除非在输入的时候使用了HTML标记，否则]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Aspjpeg组件写的一个类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7267.html</link>
    <description><![CDATA[% ''ASPJPEG综合操作CLASS ''Authour: tony 05/09/05 Class AspJpeg Dim AspJpeg_Obj,obj Private Img_MathPath_From,Img_MathPath_To,Img_Reduce_Size,CoverIf Private Img_Frame_Size,Img_Frame_Color,Img_Frame_Solid,Img_Frame_Width,Img_Frame_Heigh]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的Fso文件/文件夹操作类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7266.html</link>
    <description><![CDATA[和前面提到的一样，这个也只是把一些函数压在一起。实际上用一些函数集的方法放程序中更好。 主要功能： 1,创建删除文件夹 2,获取某个文件夹里的文件夹名称和个数 3,获取某个文件]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发中存储过程应用全接触]]></title>
    <link>http://im.vc/web/asp/2011/0701/7265.html</link>
    <description><![CDATA[ASP与存储过程(Stored Procedures)的文章不少，但是我怀疑作者们是否真正实践过。我在初学时查阅过大量相关资料，发现其中提供的很多方法实际操作起来并不是那么回事。对于简单的应用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序代码执行时间统计类]]></title>
    <link>http://im.vc/web/asp/2011/0701/7264.html</link>
    <description><![CDATA[第一次写ASP类,实现功能:分段统计程序执行时间,输出统计表等. 程序代码: Class ccClsProcessTimeRecorder ''程序作者:明月星光 ''作者主页:http://www.5iya.com/blog ''http://www.kuozhanming.com ''ASP程序代码]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP程序中实现数据库事务控制]]></title>
    <link>http://im.vc/web/asp/2011/0701/7263.html</link>
    <description><![CDATA[在编程中，经常需要使用事务。所谓事务，就是一系列必须都成功的操作，只要有一步操作失败，所有其他的步骤也必须撤销。比如用ASP开发一个网络硬盘系统，其用户注册部分要做的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[学以致用 驳“ASP低能论”]]></title>
    <link>http://im.vc/web/asp/2011/0701/7262.html</link>
    <description><![CDATA[很多人错误地认为ASP是简单、低效的代名词，认为ASP是低能的，不足挂齿的，也很简单，一学就会，一琢磨就精通。 有人讲ASP不安全，写ASP的程序的时候如果严格按照书写安全的代码的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中Session技巧]]></title>
    <link>http://im.vc/web/asp/2011/0701/7261.html</link>
    <description><![CDATA[写过稍微大型一点 ASP 的人都知道，Session 这个对象真是好用，它可以用来记录使用者私有的资料变量，既安全又方便。但是你真的知道 Session 的运作原理吗？或许了解以后，你就再也不]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[20种看ASP程序源码的方法及工具]]></title>
    <link>http://im.vc/web/asp/2011/0701/7260.html</link>
    <description><![CDATA[众所周知windows平台漏洞百出，补丁一个接一个，但总是补也补不净。我把我所知道的20种看asp源码的方法总结了一下，并且用c#写了个应用程序来扫描这些漏洞，发现虽然大部分的方法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP程序中使用断开的数据记录集]]></title>
    <link>http://im.vc/web/asp/2011/0701/7259.html</link>
    <description><![CDATA[我们在使用ASP 内置的ADO组件进行数据库编程时，通常是在脚本的开头打开一个连接，并在脚本的最后关闭它，但是就较大脚本而言，在多数情况下连接打开的时间要比它需要打开的时间]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Response对象的常用属性]]></title>
    <link>http://im.vc/web/asp/2011/0701/7258.html</link>
    <description><![CDATA[一、Buffer属性 Response 对象的Buffer 属性是用来确定是否输出缓冲页，也就是控制何时将输出信息送至请求浏览器。Buffer 的取值可以是true 或 False ，若取True 表示使用缓冲页，若Web 服务器]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP内置对象Request和Response详解]]></title>
    <link>http://im.vc/web/asp/2011/0701/7257.html</link>
    <description><![CDATA[Request和Response这两个对象是ASP所提供的内置对象中最常用的两个。在浏览器（或其他用户代理）和Web服务器之间，请求与响应中发生的信息交流可以通过ASP中的两个内置对象来进行访问]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中实现小偷程序的原理和简单示例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7256.html</link>
    <description><![CDATA[现在网上流行的小偷程序比较多，有新闻类小偷，音乐小偷，下载小偷，那么它们是如何做的呢，下面我来做个简单介绍，希望对各位站长有所帮助。 （一）原理 小偷程序实际上是通]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用Form集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7255.html</link>
    <description><![CDATA[当使用表单的Post 方式提交数据时，表单中的数据被保存在 Request 对象的 Form 集合中。使用 Form 集合来传递数据 的语法格式如下： Request.Form (元素名) [(索引值)|.表单某元素的个数] 注解]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防范ASP木马的十大基本原则]]></title>
    <link>http://im.vc/web/asp/2011/0701/7254.html</link>
    <description><![CDATA[由于ASP它本身是服务器提供的一贡服务功能，特别是最近由dvbbs的upfile文件出现漏洞以来，其高度的隐蔽性和难查杀性，对网站的安全造成了严重的威胁。因此针对ASP木马的防范和清除]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[解析ASP的Application和Session对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7253.html</link>
    <description><![CDATA[在已经发表的系列文章中我们已经讨论了两个ASP对象：Application对象和Session对象，因此能够访问Application对象和Session对象提供的集合、方法、属性和事件。本节将从程序设计的角度对这]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用Querystring集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7252.html</link>
    <description><![CDATA[当使用表单的Get 方式提交数据时，表单中的数据被保存在 Request 对象的 Querystring 集合中。除了读取表单对象传递的参数外，Querystring 集合还可以通过读取 HTTP 查询字符串中的参数值来]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP木马的原理和基本防范方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7251.html</link>
    <description><![CDATA[ASP木马猖獗，基于ASP的网站时时处于危险之中，要让网站的安全随时得到保障，需要我们的服务器管理员要做些什么呢，如何防范ASP木马呢？要防范ASP木马，那么我们就需要知道它的运]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中操作HTTP报头方法分析]]></title>
    <link>http://im.vc/web/asp/2011/0701/7250.html</link>
    <description><![CDATA[我们已经在几处见到ASP如何创建或修改在响应页面请示时被发送到客户的HTTP报头。在Response对象中有几个属性和方法可帮助我们做到一点。下面是一些报头方法： 控制缓存和有效期。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7249.html</link>
    <description><![CDATA[一、通过Response 对象的 Cookies 集合来创建Cookies。其语法格式为： Response.Cookies (Cookies名) [(key)|.属性] =值 注解： Key 为可选参数，如指定Key ，则 Cookies 就是一个字典，该参数值将被设置]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web服务器上防范基于ASP程序的木马]]></title>
    <link>http://im.vc/web/asp/2011/0701/7248.html</link>
    <description><![CDATA[随着ASP 技术的发展，网络上基于ASP技术开发的网站越来越多，对ASP技术的支持可以说已经是windows系统IIS服务器的一项基本功能。但是基于ASP技术的木马后门，也越来越多，而且功能也]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用ServerVariables集合详解]]></title>
    <link>http://im.vc/web/asp/2011/0701/7247.html</link>
    <description><![CDATA[当讨论Request对象内容时，要研究的集合之一就是ServerVariables集合。这个集合包含了两种值的结合体，一种是随同页面请求从客户端发送到服务器的HTTP报头中的值，另外一种是由服务器]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-网上图书管理系统实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7246.html</link>
    <description><![CDATA[本管理程序的主要功能有： 1、图书列表展示功能；2、图书放置购物车、移去购物车和清空购物车功能；3、购书结帐功能；4、新会员注册功能。 Iindex.asp 首页。框架结构。上框架连接]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中访问和更新Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7245.html</link>
    <description><![CDATA[LCookies的值比ASP其他集合（例如Form和ServerVariables）的值要复杂得多。Cookie是一小块由浏览器存贮在客户端系统上的文本，且随同每次请求发往它们应用于的域中的服务器。 ASP使得应用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Command对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7244.html</link>
    <description><![CDATA[Coonamd 对象定义了将对数据源执行的命令，可以用于查询数据库表并返回一个记录集，也可以用于对数据库表进行添加、更改和删除操作。 一、使用Command 对象的步骤： 当在 ASP 页面中]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程]]></title>
    <link>http://im.vc/web/asp/2011/0701/7243.html</link>
    <description><![CDATA[ASP入门教程-前言 ASP入门教程-静态网页和动态网页 ASP入门教程-ASP和脚本语言 ASP入门教程-创建基本表单 ASP入门教程-使用输入型表单控件 ASP入门教程-使用其他表单控件 ASP入门教程-表单]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP中轻松实现记录集分页显示]]></title>
    <link>http://im.vc/web/asp/2011/0701/7242.html</link>
    <description><![CDATA[大家都知道在Dreamwerver中可以很方便地实现记录集的分页显示，但是生成的代码的确很庞大，影响了网页的显示速度，看起来条理也不是很清晰，那么，可不可以用简单的方式实现同样]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Recordset对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7241.html</link>
    <description><![CDATA[一、Recordset 对象简述 Recordset 对象表示的是来自基本表或命令执行结果的记录全集。在任何情况下，该对象所指的当前记录均为集合内的单条记录。使用 Recordset 对象可以操作来自提供]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP]]></title>
    <link>http://im.vc/web/asp/2011/0701/7240.html</link>
    <description><![CDATA[十天学会ASP之第一天 十天学会ASP之第二天 十天学会ASP之第三天 十天学会ASP之第四天 十天学会ASP之第五天 十天学会ASP之第六天 十天学会ASP之第七天 十天学会ASP之第八天 十天学会ASP之]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中使用Form和QueryString集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7239.html</link>
    <description><![CDATA[当用户填写页面＜FORM＞内容时所提供的全部值，或在浏览器地址栏输入在URL后的值，通过Form和QueryString集合为ASP脚本所用。这是在ASP代码中访问值的一种简单方法。 1、 访问ASP集合的一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Connection对象]]></title>
    <link>http://im.vc/web/asp/2011/0701/7238.html</link>
    <description><![CDATA[提示：请将符号常量包含文件 adovbs.inc 复制到您的站点主目录上，该文件所在位置：C:Program FilesCommon FilesSystemado （假设您的系统装在C盘下）。该文件包含与ADO一起使用的符号常量的定]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Response对象的常用方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7237.html</link>
    <description><![CDATA[一、Write方法 Response 对象的Write 方法可以向发往客户端浏览器的HTML 文件中直接输出信息。也就是说，Reponse 对蟮腤rite 方法将信息从 Web 服务器输出到浏览器。其语法格式如下： Respon]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[怎样开始一个ASP网站的设计]]></title>
    <link>http://im.vc/web/asp/2011/0701/7236.html</link>
    <description><![CDATA[在开始设计一个ASP站点的时候，面对着一大堆的问题，到底要怎么样入手，才能让网站设计做到快，好，而且调试、更改，移植起来又方便呢？下面以留言本的设计为例子，谈谈站点的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-前言]]></title>
    <link>http://im.vc/web/asp/2011/0701/7235.html</link>
    <description><![CDATA[ASP(Active Server Pages)是目前最为流行的开放式的Web服务器应用程序开发技术。使用它可以将HTML语言，脚本语言和Active控件组合一起，产生动态、交互、具有数据库访问功能，且高效率的基]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Request对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7234.html</link>
    <description><![CDATA[Request对象在HTTP请求期间检索客户端浏览器传递给服务器的值。也就是说用它来与客户端交互，收集客户端信息或服务器端的环境变量，然后将收集的这些信息发送给服务器端或其它a]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实现邮件发送普通附件和嵌入附件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7233.html</link>
    <description><![CDATA[网上很多关于JMail发送邮件的例子都没有写如何发附件，或者没有写清如何发内嵌的附件(比如把附件图片嵌入到HTML信件里面) 其实最关键的就是这句要注释掉 'JMail.ContentType = text/html (为]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP网页模板的应用]]></title>
    <link>http://im.vc/web/asp/2011/0701/7232.html</link>
    <description><![CDATA[ASP网页模板的应用: 让程序和界面分离，让ASP脚本更清晰，更换界面更容易 为了避免ASP程序和HTML代码混写造成维护困难的情况，本文介绍了一种方法，利用模板来分离程序和页面，使程]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[关于ASP访问ACCESS数据的“不能打开注册表关键字]]></title>
    <link>http://im.vc/web/asp/2011/0701/7231.html</link>
    <description><![CDATA[前天，N久以前做的一个ACCESS数据库的程序出错了，程序都没有改动过，之前好好的，突然就不行了。 错误信息如下： ---------------------------------- Microsoft OLE DB Provider for ODBC Drivers 错误]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发WAP简易邮件系统实例(续)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7230.html</link>
    <description><![CDATA[3) 发送邮件 图五 发送邮件功能的实现主要采用了Jmail.Message对象完成，关于所要用到的对象相关知识在前面已经叙述过了，大家可以将上面的功能介绍与源码对照起来阅读，这样有助于]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-文件操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7229.html</link>
    <description><![CDATA[文件操作主要包括复制、移动和删除文件，检查文件是否存在以及获取文件的属性。完成这些操作可以使用 FileSystemObject 或 File 对象的方法。 一、使用 FileSystemObject 对象的相应方法进行]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp+ajax打造无刷新新闻评论系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7228.html</link>
    <description><![CDATA[不知上过ChinaRen校友录的朋友们有没有注意，ChinaRen在改版后很多方面都进行了较大的改动。例如留言与回复方面已经不再像以前那样，在每次提交后总得重新加载一下整个页面，碰到网]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Web开发中用sql语句完成分页的特效方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7227.html</link>
    <description><![CDATA[这篇文章以jsp/asp为例，简要介绍了Web开发中一种用sql语句完成分页的高效率方法。 一、Jsp方法如下: ********************** %@ page language=java import=java.util.*,java.sql.* % %@ page contentType=text/html;]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-读取文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7226.html</link>
    <description><![CDATA[一、读取文本文件的步骤如下： 1、创建 FileSystemObject 对象实例； % Set fso=Server.CreateObject(Scripting.FileSystemObject) % 2、使用FileSystemObject对象的OpenTextFile方法返回一个 TextStream 对象实例；]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP模式示范工程项目介绍]]></title>
    <link>http://im.vc/web/asp/2011/0701/7225.html</link>
    <description><![CDATA[多样化的企业需求 纵观北京的经济发展水平和结构，可更清楚地看道，以北京当前高达67.8%的第三产业发展水平以及位居全国第二的人均GDP财富水平，北京完全有足够的消费能力和广阔]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP获取字符串长度的自定义函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7224.html</link>
    <description><![CDATA[ASP获取字符串长度的自定义函数 '----------------------------------------------------------------' ' getStrLen ' 获取字符长度，一个中文字符长度算 2 ' 参数： ' str 需要获取长度的字符串 ' 返回值：整数]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-文件夹操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7223.html</link>
    <description><![CDATA[文件夹操作主要包括创建、复制、移动和删除文件夹，检查文件夹是否存在以及指定路径中某文件夹中相应的文件对象。完成这些操作可以使用 FileSystemObjec对象或 Folder 对象的方法。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[净化网络环境 ASP程序实现过滤脏话]]></title>
    <link>http://im.vc/web/asp/2011/0701/7222.html</link>
    <description><![CDATA[!--#include file=../conn/dbconn1.asp-- !--#include file=../inc/safe.asp-- % content=Replace_Text(request.Form(content)) content=replace(content,,[) content=replace(content,,]) newsid=Replace_Text(request.Form(newsid)) ip=request.Form(ip) rn]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-防止或允许更改应用程序变量值]]></title>
    <link>http://im.vc/web/asp/2011/0701/7221.html</link>
    <description><![CDATA[Application 对象有两个方法：即 Lock 和 Unlock 方法。使用这两个方法可以确保多个用户无法同时改变某一属性。 1、Application 方法 Lock 方法禁止其他客户修改 Application 对象的变量。其语法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-驱动器操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7220.html</link>
    <description><![CDATA[对驱动的器操作主要是获取驱动器的各种信息，有以下两种方法： 一、使用 FileSystemObject 获取驱动器的信息 1、 FileSystemObject 对象获取驱动器信息的方法如下表： 方 法 描述 / 格式 / 注]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[传统ASP程序开发者使用IIS7小提示]]></title>
    <link>http://im.vc/web/asp/2011/0701/7219.html</link>
    <description><![CDATA[至今还有这么多传统ASP (Classic ASP) 应用程序和开发者，真让我感到惊讶。我还记得96、97年的时候IIS3问世，我体验了最原始的ASP程序，并为它与ColdFusion相比表现出的惊 人的可编程性赞叹]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-内容链接组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7218.html</link>
    <description><![CDATA[内容链接组件（Content Linking) 用于创建管理 URL 列表的内容链接 （NextLink ）对象，通过该对象可以自动生成和更新目录表及先前和后续的 Web 页的导航链接。使用内容链接组件的步骤如下]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-ASP和脚本语言]]></title>
    <link>http://im.vc/web/asp/2011/0701/7217.html</link>
    <description><![CDATA[什么是 ASP ASP 称活动服务器页面（英文全称Active Server Pages）就是一个编程环境，在其中，可以混合使用HTML、脚本语言以及组件来创建服务器端功能强大的Internet应用程序。 如果您以前]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Asp+flash打造简单新闻评论系统]]></title>
    <link>http://im.vc/web/asp/2011/0701/7216.html</link>
    <description><![CDATA[我最初看到有几个网站在做一些我想做的事情，但是还没有完全是现在的样子。我是想做的一些网络应用最早是想用FLASH的，但是我手下的员工对FLASH不熟悉，我想怎么样用传统的Web技术]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-内容轮显组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7215.html</link>
    <description><![CDATA[内容轮显（Content Rotator) 组件和广告轮显（Ad Rotator） 组件十分类似，只是内容轮显组件进行随机变换的是页面内容而不仅仅是一个广告图片，该组件可以用于以下三个方面： 1）每日新]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-静态网页和动态网页]]></title>
    <link>http://im.vc/web/asp/2011/0701/7214.html</link>
    <description><![CDATA[静态网页与动态网页的区别在于Web服务器对它处理方式不同。了解这种区别对于ASP概念的理解至关重要。 1、静态网页 静态网页是标准的HTML文件，其文件扩展名是.htm或.html。它可以包含]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP开发WAP简易邮件系统实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7213.html</link>
    <description><![CDATA[随着手机用户的不断增加，WAP站点如雨后春笋迅速的滋长开来，手机邮箱也不断的出现在人的眼前，笔者也曾经开发了一套手机邮箱的系统，但由于时间仓促再加上后来一直忙于工作事]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-广告轮显组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7212.html</link>
    <description><![CDATA[广告轮显组件（Ad Rotator) 用于创建一个 AdRotator 对象实例，通过该对象在 Web 页上自动轮换显示广告图象。当用户每次打开或重新加载 Web 页时，该组件将根据在轮显列表（Rotator Schedul]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用输入型表单控件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7211.html</link>
    <description><![CDATA[为了让用户通过表单输入数据，可以使用INPUT标记创建各种表单控件，通过将INPUT标记的TYPE属性设置为不同的值，可以创建不同类型的输入型表单控件。 1、单行文本框，格式如下： 一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-文件系统对象模型]]></title>
    <link>http://im.vc/web/asp/2011/0701/7210.html</link>
    <description><![CDATA[1、文件系统对象模型 FileSystemObject 对象模型包括若干对象，可以用于创建、改编、移动和删除文件夹或文件，还可以用于获取文件夹或文件的各种信息。FileSystemObject 对象模型所包含的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp读sql数据时出现乱码问题的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7209.html</link>
    <description><![CDATA[如果你在做网站的时候，无法正确执行sql语句，response后，发现sql语句里面的中文字段都成了乱码，可以用下面的方法解决： %@ codepage=936%简体中文 %@ codepage=950%繁体中文 %@ codepage=65001]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-创建基本表单]]></title>
    <link>http://im.vc/web/asp/2011/0701/7208.html</link>
    <description><![CDATA[这里省略了部分HTML教程，建议不懂的朋友，直接查看HTML教程。这里只是讲讲表单。 表单是用来收集站点访问者信息的域集。表单从用户收集信息，然后将这些信息提交给服务器进行处]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用计数据组件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7207.html</link>
    <description><![CDATA[页面计数器 （Page Counter) 组件用于统计每个网页被访问的次数，该组件定期把统计的数据存入服务器磁盘上的一个文本文件---------访问次数统计数据文件中，所以在停机或出现错误信息]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+CSS实现随机背景]]></title>
    <link>http://im.vc/web/asp/2011/0701/7206.html</link>
    <description><![CDATA[随机背景--当你每次进入该页面时，从已指定的图片文件夹中，随机选取一个图片作为背景显示。这里介绍的方法是用ASP+CSS来实现的。 ASP代码 Const IMGS_DIR = /images '设定图片文件夹的地址]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用其他表单控件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7205.html</link>
    <description><![CDATA[除了使用INPUT标记创建输入型表单控件外，也可以使用TEXTAREA标记创建多行文本框，或使用SELECT标记创建选项选单，还可以使用FIELDSET标记以表单中的控件进行分组。 1、在表单中使用多]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-创建文本文件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7204.html</link>
    <description><![CDATA[一、创建文本文件的步骤如下： 1、创建 FileSystemObject 对象实例； % Set fso=Server.CreateObject(Scripting.FileSystemObject) % 2、创建 TextStream 对象实例； % txtFile=fso.CreateTextFile(filename[,overwrite[,unico]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-VBScript概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7203.html</link>
    <description><![CDATA[1、VBScript简介 VBScript是一种脚本语言，也是ASP的默认语言，可以在HTML文件中直接嵌入VBScript脚本，从而扩展HTML，使它不仅仅是一种页面格式语言。带有VBScript脚本的网页可以对用户的操]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-表单的综合实例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7202.html</link>
    <description><![CDATA[下面我们通过一个注册表单对表单中常用的控件进行应用。 1、注册表单页代码：(login.htm) HTML HEADTITLE注册表/TITLE style type=text/css !-- body,td,th { font-size: 11pt; color: #009999; line-height: 1.5; } b]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[判断远程图片是否存在的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7201.html</link>
    <description><![CDATA[判断远程图片是否存在[ASP代码] function CheckURL(byval A_strUrl) set XMLHTTP = Server.CreateObject(Microsoft.XMLHTTP) XMLHTTP.open HEAD,A_strUrl,false XMLHTTP.send() CheckURL=(XMLHTTP.status=200) set XMLHTTP = nothing end functio]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-单条件选择结构]]></title>
    <link>http://im.vc/web/asp/2011/0701/7200.html</link>
    <description><![CDATA[单条件选择结构是最常用的双分支选择结构，其特点是：所给定条件（条件表达式）的值如果为真，则执行x1块，否则，就执行x2块。 1、行 If 语句 其语法格式为： if条件 then [ 语句1]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP实例：即时显示当前页面浏览人数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7199.html</link>
    <description><![CDATA[online.asp文件 !--#include file=dbconn.asp -- % onlineTimeout=10 ''定义在线活动时间的时间间隔 Function Userip() GetClientIP = Request.ServerVariables(HTTP_X_FORWARDED_FOR) ''''''''''''''''''''''获得用户的虚拟IP地址 I]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP按指定参数格式化显示时间的函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7198.html</link>
    <description><![CDATA[Date 函数 描述:返回当前系统日期。 语法:Date DateAdd 函数 描述:返回已添加指定时间间隔的日期。 语法:DateAdd(interval, number, date) interval: 必选。字符串表达式，表示要添加的时间间隔。有]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-VBScript的输入与输出语句]]></title>
    <link>http://im.vc/web/asp/2011/0701/7197.html</link>
    <description><![CDATA[1、MsgBox函数 信息框函数（MsgBox）是常用的输出信息的函数。它在对话框中显示信息，等待用户单击按钮，并返回一个整数以标明用户单击了哪一个按钮。其语法格式如下： 变量=MsgBo]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP根据提交的视频格式进行正确播放的函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7196.html</link>
    <description><![CDATA[在给客户做个程序时,突然遇到个问题,就是产品页用户提交视频播放文件时,如何根据提交的网址内的视频格式进行正确的播放呢....郁闷了一会,想好了思路,说动手就动手... 思路是先取得]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用GetString提高ASP速度]]></title>
    <link>http://im.vc/web/asp/2011/0701/7195.html</link>
    <description><![CDATA[许多ASP程序员都有过执行数据库查询，然后将查询结果用HTML表格的形式显示出来的经历吧。通常我们是这么做的: % 'Create connection / recordset 'Populate data into recordset object % TABLE % Do While n]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-VBScript基本元素]]></title>
    <link>http://im.vc/web/asp/2011/0701/7194.html</link>
    <description><![CDATA[VBScript数据类型 VBScript只有一种数据类型，即Variant，称为变体型。Varriant是一种特殊的数据类型，根据使用的方式，它可以包含不同类别的信息。因为Variant是VBScript中惟一的数据类型，]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP检测文件编码的实现方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7193.html</link>
    <description><![CDATA[最近，在搞这个东西，网上也找不到asp相关的，如果有人很早弄出来了，也不要笑话偶；费了好久，总算搞定； 原理：用stream对象预读文件的头两个字节,分析判断出utf-8，unicode，ANSI]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[防止表单重复提交的ASP代码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7192.html</link>
    <description><![CDATA[在很多情况下都需要防止相同的表单被多次提交，很多人的实现方法都比较复杂(代码数量超过几十行！！)下面提供一种只需使用几行代码的方法，轻松地实现了防止用户刷新多次提交]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-多分支条件选择结构]]></title>
    <link>http://im.vc/web/asp/2011/0701/7191.html</link>
    <description><![CDATA[多分支选择结构的特点是：从多个选择结构中，选择第一个条件为真的路线作为执行的线路。即所给定的选择条件为真时，就执行A1块；如果为假则继续检查下一个条件。如果条件都为]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习之ASP入门]]></title>
    <link>http://im.vc/web/asp/2011/0701/7190.html</link>
    <description><![CDATA[一、语法 1语句 %...........% 2定义变量dim语句 % dim a,b a=10 b=ok! % 注意：定义的变量可以是数值型，也可以是字符或者其他类型的 3简单的控制流程语句 1. If 条件1 then 语句1 elseif 条件2 the]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[服务端VBScript与JScript几个相同特性的写法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7189.html</link>
    <description><![CDATA[1. 遍历集合/对象 1.1 VBScript 遍历表单集合 linenum % for each temp in request.Form response.write temp: request.form(temp) next % 1.2 JScript 遍历表单集合 linenum % for (var $e=new Enumerator(Request.Form); !$e.atEnd(); $e]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Response对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7188.html</link>
    <description><![CDATA[一、使用Response对象可以将输出信息发送到客户端。包括直接发送信息给浏览器、重定向浏览器到另一个URL地址或设置Cookie的值等功能。 二、Response提供了集合、属性和方法来进行参数]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Server对象概述与属性]]></title>
    <link>http://im.vc/web/asp/2011/0701/7187.html</link>
    <description><![CDATA[一、Server对象概述 通过Server对象可以使用服务器上的许多高级功能。使用Server对象可以创建各种服务器组件实例，从而实现访问数据库对文件进行输入输出，以及在Web页上自动轮换显示]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[DVBBS论坛防止注册机发布垃圾贴子的办法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7186.html</link>
    <description><![CDATA[进入后台，风格界面模板总管理，page_login,template.html(13) TR TD class=tablebody1B密码问题/B：BR忘记密码的提示问题/TD 在此两句上面添加如下代码 TR TD class=tablebody1 div style=color:redb反论坛群发]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-ASP概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7185.html</link>
    <description><![CDATA[ASP是一个服务器端脚本编写环境，用于创建动态的交互式Web 服务器应用程序。在ASP动态网页中，不仅可以包含服务器端脚本代码，也可以使用 ASP 内建对象和服务器组件，此外还可以包]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Server对象的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7184.html</link>
    <description><![CDATA[Server对象共有四个方法，分别为：MapPath方法、CreateObject方法、HTMLEncode方法和URLEncode方法。 一、Server对象MapPath方法 此方法可以将指定的相对或虚拟路径映射到实际的物理路径。其语法]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习之透彻掌握ASP分页技术]]></title>
    <link>http://im.vc/web/asp/2011/0701/7183.html</link>
    <description><![CDATA[近段时间看了一些论坛上面关于分页的ASP程序依然有许多的关注者，但里面只有代码，没有详细的解释，对于初学者来说，这样总是得不到真正的掌握，此次我将针对分页技术进行详解]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Response对象的Cookies集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7182.html</link>
    <description><![CDATA[一、Cooies集合是Response对象和Request对象共有的一项经常用到的集合。用户通过HTTP标头访问一个主页时，每次都要重新开始。因此，如果要判断某个用户是否曾经进入本网站，那么就可以]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Session对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7181.html</link>
    <description><![CDATA[一、Session对象概述 Session对象其实指的就是用户从到达某个站点直到离开为止的那段时间内，服务器端分配给用户的一个存储信息的全局变量的集合，这些变量可以是自动生成的，也可]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP快速开发方法之数据操作]]></title>
    <link>http://im.vc/web/asp/2011/0701/7180.html</link>
    <description><![CDATA[这是我自己的心得，给大家作个参考。我的目的是让开发变得简单，尽可能少地考虑实现语句，更多地把精力用于思考业务逻辑。希望我的文章对大家有所启发和帮助。 好吧，让我们进]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP连接数据库的方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7179.html</link>
    <description><![CDATA[1.连ACCESS：conn.open Provider=Microsoft.Jet.OLEDB.4.0;Data Source= Server.mappath(/db/database.mdb) 此采用根目录的相对路径方法，可以解决整个网站共用一个conn.asp文件的问题，但要注意：此方法不适合于]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-使用Session对象识别会话]]></title>
    <link>http://im.vc/web/asp/2011/0701/7178.html</link>
    <description><![CDATA[1、什么是会话标识 ASP 为每一个用户会话分配了惟一的识别标志。在创建会话时，服务器会为每一个会话生成一个单独的标识，该标识以长整型数据类型返回，并且随用户在 Web 站点上]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习之ASP和HTML表单]]></title>
    <link>http://im.vc/web/asp/2011/0701/7177.html</link>
    <description><![CDATA[在 ASP 中，有两个很常用的集合，一个是 Request.QueryString，另一个是 Request.Form。这两个集合可以获取 HTML 表单(HTML Forms) 提交的信息。 Request.QueryString HTML 表单中的 method 有两种，一种是]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数学函数Abs Atn Cos等详解]]></title>
    <link>http://im.vc/web/asp/2011/0701/7176.html</link>
    <description><![CDATA[【名称】 Abs 【类别】 数学函数 【原形】 Abs(number) 【参数】 必选的。Number参数是一个任何有效的数值型表达式 【返回值】 同number的类型 【异常/错误】 无 【描述】 返回参数number的绝]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-保存会话信息]]></title>
    <link>http://im.vc/web/asp/2011/0701/7175.html</link>
    <description><![CDATA[一、使用 Contents 集合保存会话信息 1、Contents 集合是使用 Session 对象定义的在 ASP 应用程序中的一组变量。这些变量的作用域为用户层，并且在整个 ASP 应用程序中都是可用的。这是Se]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP生成伪参数的技巧]]></title>
    <link>http://im.vc/web/asp/2011/0701/7174.html</link>
    <description><![CDATA[前两天在做一个站内版的企搜引擎，发现某些站点可以链接站点内容。。 奇怪之下看了看，原来是按照数据库ID的自动编号规律进行链接的~~ 闲暇之余弄了下面这个东东，希望对大家在]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-控件会话的结束时间]]></title>
    <link>http://im.vc/web/asp/2011/0701/7173.html</link>
    <description><![CDATA[1、利用 Session.Timeout 属性设置超时时限 对于一个登录到 ASP 应用程序的用户，如果用户在系统默认的时间内未进行其它任何操作，当设置的时间一到便自动撤销这个用户的 Session，这样]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第六天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7172.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作2（查询记录） 在第四天中我们有这样一个程序： % set conn=server.createobject(adodb.connection) conn.open driver={microsoft access driver (*.mdb)};dbq=server.mappath(example3.m]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的filesystemobject组件的用法示例]]></title>
    <link>http://im.vc/web/asp/2011/0701/7171.html</link>
    <description><![CDATA['''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' CreateLyrics ' 目的： ' 在文件夹中创建两个文本文件。 ' 示范下面的内容 ' - FileSystemObject.CreateTextFile ' - TextStream.WriteLine ' - TextSt]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-Application对象概述]]></title>
    <link>http://im.vc/web/asp/2011/0701/7170.html</link>
    <description><![CDATA[一、Application对象概述 当载入ASP DLL并响应对一个ASP网页的第一个请求时，创建Application对象。该对象提供一个存储场所，用来存储对于所有访问者打开的所有网页都可用的变量和对象]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第五天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7169.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作1（写入记录） 数据库的基本操作无非是：查询记录，写入记录，删除记录，修改记录。今天我们先学习写入记录。 先建立一个表单： form name=form1 me]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[破解加密的Asp木马登陆密码]]></title>
    <link>http://im.vc/web/asp/2011/0701/7168.html</link>
    <description><![CDATA[破解目标：破解一经过加密的Asp木马登陆密码。由于木马里没有版本说明，具体也不知道这木马叫什么名。 破解思路：两种，用加密后的密码替换密文和利用密文及加密算法反解出密码]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-处理会话事件]]></title>
    <link>http://im.vc/web/asp/2011/0701/7167.html</link>
    <description><![CDATA[Session 对象有两个事件：即 OnStart 事件和 OnEnd 事件。通过对这两个事件过程编写脚本可以在会话开始和结束时执行指定的操作。编写这些事件过程的脚本代码时，必须使用 SCRIPT 标记并]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第四天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7166.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP脚本运行超时的解决方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7165.html</link>
    <description><![CDATA[最近在学习服务器知识。有时候遇到asp脚本运行超时的错误，真是麻烦。找了相关资料，其中有一些解决方法。 IIS默认的脚本超时时间是90秒 这样的话如果你是上传软件或者传送数据大]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP入门教程-保存应用程序信息]]></title>
    <link>http://im.vc/web/asp/2011/0701/7164.html</link>
    <description><![CDATA[一、使用 Contents 集合应用程序信息 1、Contents 集合是由所有通过脚本语言添加到应用程序的变量和对象组成的集合。可以使用这个集合来获得给定的应用程序作用域的变量列表或指定某]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第三天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7163.html</link>
    <description><![CDATA[学习目的：学会ACCEES数据库的使用，并建立一个将来要用的留言簿数据库。 首先，大家要安装OFFICE里面的ACCEES（我的演示是OFFICE XP版本），安装过程这里就不说了，安装好以后会出现下]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[Server.CreateObject调用失败的问题]]></title>
    <link>http://im.vc/web/asp/2011/0701/7162.html</link>
    <description><![CDATA[给服务器安装JMAIL组件,可是在使用过程中遇到Server.CreateObject 的调用失败的问题。上网搜索到解决方法，这里将安装步骤记录一下。 一，开启25端口。 二，安装好JMAIL,将JMAIL.DLL 复制到]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中HTTP报头操作方法分析]]></title>
    <link>http://im.vc/web/asp/2011/0701/7161.html</link>
    <description><![CDATA[我们已经在几处见到ASP如何创建或修改在响应页面请示时被发送到客户的HTTP报头。在Response对象中有几个属性和方法可帮助我们做到一点。下面是一些报头方法： 控制缓存和有效期。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中OLEDB和ODBC的区别]]></title>
    <link>http://im.vc/web/asp/2011/0701/7160.html</link>
    <description><![CDATA[ODBC(开放数据库互连):是Microsoft引进的一种早期数据库接口技术。它实际上是ADO的前身。早期的数据库连接是非常困难的. 每个数据库的格式都不一样,开发者得对他们所开发的每种数据库]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第二天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7159.html</link>
    <description><![CDATA[学习目的： 学会用表单元素向服务器传送变量，然后显示变量在客户端的浏览器。 首先，让我们来看一下DREAMWEAVER的表单元素。 此主题相关图片如下： A表单元素要放在一个表单域里面]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的日期时间函数]]></title>
    <link>http://im.vc/web/asp/2011/0701/7158.html</link>
    <description><![CDATA[Date 函数 描述:返回当前系统日期。 语法:Date DateAdd 函数 描述:返回已添加指定时间间隔的日期。 语法:DateAdd(interval, number, date) interval: 必选。字符串表达式，表示要添加的时间间隔。有]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP操作Access及ADOX类的使用]]></title>
    <link>http://im.vc/web/asp/2011/0701/7157.html</link>
    <description><![CDATA[一般操作Access数据库，有Alter语句，和MsSQL2k的基本语法差别不是太打，例如，在某表创建新列语句： Dim sqlstr sqlstr=alter table l_info add column info_file varchar(200)default NULL conn.execute(sqlstr) 以上]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第一天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7156.html</link>
    <description><![CDATA[此主题相关图片如下： 大家不要头痛，里面只有三个页面需要修改，先是WEB站点，如果用户有固定IP，可以分配一个IP 此主题相关图片如下： 接下来在注目录中选择一个自己硬盘上面的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp网站开发入门]]></title>
    <link>http://im.vc/web/asp/2011/0701/7155.html</link>
    <description><![CDATA[留言本的数据库比较简单，如果是大型网站，在数据库设计好后要反复检查。所有的字段名最好用命名标准，在数据库设计完成后，最好能打印出一份象上面的列表来，以方便使用。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Error对象的知识]]></title>
    <link>http://im.vc/web/asp/2011/0701/7154.html</link>
    <description><![CDATA[在VBScript中，有一个On Error Resume Next语句，它使脚本解释器忽略运行期错误并继续脚本代码的执行。接着该脚本可以检查Err.Number属性的值，判别是否出现了错误。如果出现错误，返回一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第十天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7153.html</link>
    <description><![CDATA[学习目的：分页技术，总结 今天最后一天我们学习一下ASP里面稍微难一点地分页技术，毕竟当我们有N条记录的时候我们不可能把所有记录显示在一个页面里面吧。 % exec=select * from tes]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[如何学习asp]]></title>
    <link>http://im.vc/web/asp/2011/0701/7152.html</link>
    <description><![CDATA[1.不要放过任何一个看上去很简单的小编程问题他们往往并不那么简单，或者可以引伸出很多知识点； 2.会用asp，并不说明你会asp； 3.看asp的书，是学不了asp语言的； 4.浮躁的人容易说]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP学习之ADO教程]]></title>
    <link>http://im.vc/web/asp/2011/0701/7151.html</link>
    <description><![CDATA[Connection对象中的Open方法建立到数据源的物理连接,使用 Close 方法将其断开;Recordset 对象中的使用 AddNew、Update 和 Delete 方法所做的更改，在最后分页中提到了Recordset 对象中AbsolutePage和R]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第九天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7150.html</link>
    <description><![CDATA[学习目的：基本的SESSION组件，总结response，request组件。 首先，有会员系统的任何程序都会用到检测是不是用户已经登陆这个步骤。这就用到了SESSION组件，下面我们看一个代码来说明。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp基础教程]]></title>
    <link>http://im.vc/web/asp/2011/0701/7149.html</link>
    <description><![CDATA[ASP教程：第一篇 Are you ready ASP教程：第二篇 ASP技术简介 ASP教程：第三篇 ASP基础 ASP教程：第四篇 ASP脚本基础 ASP教程：第五篇 脚本变量、函数、过程和条件语句 ASP教程：第六篇 ASP脚本]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第八天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7148.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作4（修改记录） 先来看代码： % set conn=server.createobject(adodb.connection) conn.open driver={microsoft access driver (*.mdb)};dbq=server.mappath(test.mdb)//这不是以前的一个数据]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的FSO功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7147.html</link>
    <description><![CDATA[在ASP中，FSO的意思是File System Object，即文件系统对象。 我们将要操纵的计算机文件系统，在这里是指位于web服务器之上。所以，确认你对此拥有合适的权限。理想情况下，你可以在自己]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP应用程序设计的Web状态管理分析]]></title>
    <link>http://im.vc/web/asp/2011/0701/7146.html</link>
    <description><![CDATA[许多开发人员把应用程序传送到Web之前从来没考虑状态的概念。正如前面说过的，Web是一个无状态的环境。因此应该探讨一下状态是什么，了解能够避免产生问题的方法。 状态的准确定]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[十天学会ASP之第七天]]></title>
    <link>http://im.vc/web/asp/2011/0701/7145.html</link>
    <description><![CDATA[学习目的：学会数据库的基本操作3（删除记录） 开门见山，大家直接看程序。 exec=delete * from guestbook where id=request.form(id) 上面这句话完成了删除记录的操作，不过锁定记录用了记录唯一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中FSO加递归生成文件列表(xml)]]></title>
    <link>http://im.vc/web/asp/2011/0701/7144.html</link>
    <description><![CDATA[本来生成这个xml文档是为了开发一个ftp的搜索,后来由于没有资料参考怎么搜索xml文档,也就放弃了.其中最重要的是递归的算法.生成文件列表的速度很快.这个程序可以用于生成播放列表]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计动态页中服务器端的处理]]></title>
    <link>http://im.vc/web/asp/2011/0701/7143.html</link>
    <description><![CDATA[就服务器端处理而言，ASP是产生动态Web网页的一种相对较新的技术。动态页意味着什么呢？先暂时不考虑客户端相关功能上的进展，也不讨论客户端脚本、Java Applet、动态HTML或ActiveX控件]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[在ASP及ASP.NET中处理客户端数字证书]]></title>
    <link>http://im.vc/web/asp/2011/0701/7142.html</link>
    <description><![CDATA[客户端数字证书与基本身份验证（Basic）、域服务器的摘要式身份验证、集成 Windows 身份认证或自定义的 Form 认证等方式相比，虽然部署和管理方面稍微复杂一些，但安全性也更好一些]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（六）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7141.html</link>
    <description><![CDATA[子查询 在一个SELECT、SELECT...INTO、INSERT...INTO、DELETE、或UPDATE 表达式中，可以包括SELECT表达式，这个SELECT表达式叫做子查询（sub query）。 您可以使用三种语法建立子查询： 表达式 [ANY]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP记录集分页显示的实现]]></title>
    <link>http://im.vc/web/asp/2011/0701/7140.html</link>
    <description><![CDATA[大家都知道在Dreamwerver中可以很方便地实现记录集的分页显示，但是生成的代码的确很庞大，影响了网页的显示速度，看起来条理也不是很清晰，那么，可不可以用简单的方式实现同样]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7139.html</link>
    <description><![CDATA[作为微软推出的网页与数据库解决方案，ASP由于有微软得天独厚的操作系统等技术后盾支持，因此得到了迅速的发展，并且正受到越来越多的欢迎，在目前在电子商务网站的建设中有很]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中sql语句使用教程（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7138.html</link>
    <description><![CDATA[五花八门的SQL产品多得要命，或许你早顾不得其它甩开袖子就动手干了。但你要同时采用ASP和SQL的话就可能会头晕。MySQL、SQL Server和mSQL都是绝佳的SQL工具，可惜，在ASP的环境下你却用不]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Form表单和QueryString集合使用详解（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7137.html</link>
    <description><![CDATA[b) HTML复选框控件 当一个窗体中HTML源码包含一个复选框控件时，一般都给定唯一的名称，例如： ＜FORM ACTION=show_request.asp METHOD=POST＞ I enjoy: ＜INPUT TYPE=CHECKBOX NAME=Reading CHECKED＞ Reading ＜]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7136.html</link>
    <description><![CDATA[9、问题：我有没有必要在每一个ASP文件中使用Option Explicit？ 答：在实际应用中，VBscript变量的概念已经模糊了，允许直接使用变量，而不用Dim声明变量，但这并不是一个好习惯，容易造]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp中sql语句使用教程（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7135.html</link>
    <description><![CDATA[当你的查询相对简单的时候，每次从头开始创建SQL语句也不费什么工夫，不过，复杂的查询就不同了，每次都从头来会产生很多开发错误。因此，一旦让SQL顺利地运行起来，你最好把它]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Form表单和QueryString集合使用详解（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7134.html</link>
    <description><![CDATA[假如编写更复杂一些集合遍历代码，如先前所述（单独显示每个子键），就得到这样结果： Hobby: Subkey 1 value = Hobby025 Subkey 2 value = Hobby003 Subkey 3 value = Hobby010 需要注意的是两种情况，没]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要（三）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7133.html</link>
    <description><![CDATA[17、问题：在ASP中使用ADO的AddNew方法和直接使用Insert into...语句有何不同？哪种方式更好？ 答：ADO的AddNew方法只是将Insert into 语句封装了起来，所以，当对大量数据进行操作的时候，直]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用Asp修改注册表]]></title>
    <link>http://im.vc/web/asp/2011/0701/7132.html</link>
    <description><![CDATA[看完了这个你就可以用asp修改注册表了! 大名鼎鼎的WSH听说过吗？ 它就是Windows script Host的缩写形式，WSH是Windows平台的脚本指令，它的功能十分强大，并且它还是利用语法结构简单、易]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP中遍历和操作Application对象的集合]]></title>
    <link>http://im.vc/web/asp/2011/0701/7131.html</link>
    <description><![CDATA[为了能够正常使用，必须把它们放到服务器上的一个虚拟应用程序内，并且把所提供的global.asa文件放到该应用程序的根目录中。最简单的办法是把global.asa文件放到缺省Web网站的根目录]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP设计常见问题及解答精要（四）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7130.html</link>
    <description><![CDATA[23、问题：在ASP文件中读取HTML的表单字段有几种方法？ 答：Request对象除了可以用来读取附带在网址后面的参数以外，也可以读取HTML表单字段的内容，经常使用的语法结构如下： Form]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP实现汉字转拼音的功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7129.html</link>
    <description><![CDATA[% Set d = CreateObject(scripting.Dictionary) d.add a,-20319 d.add ai,-20317 d.add an,-20304 d.add ang,-20295 d.add ao,-20292 d.add ba,-20283 d.add bai,-20265 d.add ban,-20257 d.add bang,-20242 d.add bao,-20230 d.add bei,-20051 d.add ben,-20]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的cookies的应用详解]]></title>
    <link>http://im.vc/web/asp/2011/0701/7128.html</link>
    <description><![CDATA[Cookies的值比ASP其他集合（例如Form和ServerVariables）的值要复杂得多。Cookie是一小块由浏览器存贮在客户端系统上的文本，且随同每次请求发往它们应用于的域中的服务器。 ASP使得应用]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Application和Session对象详解（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7127.html</link>
    <description><![CDATA[在已经发表的系列文章中我们已经讨论了两个ASP对象：Application对象和Session对象，因此能够访问Application对象和Session对象提供的集合、方法、属性和事件。本节将从程序设计的角度对这]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[用ASP+XMLHTTP编写一个天气预报程序]]></title>
    <link>http://im.vc/web/asp/2011/0701/7126.html</link>
    <description><![CDATA[本人就职于一个本地门户网站，每天网站上的天气都得更新。久而久之感到相当麻烦，于是写了一个定时的新闻小偷，帖出来大家参考一下系统要求: 支持FSO, 服务器UDP TCP/IP 没有屏蔽。]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（一）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7125.html</link>
    <description><![CDATA[SELECT表达式 接着，让我们看看SELECT表达式，SELECT用来在表中寻找符合特定条件的记录，语法如下： SELECT [关键字] { * | 表名称.* | [表名称.]字段名称1 [AS 别名1] [, [表名称.] 字段名称2 []]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Application和Session对象详解（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7124.html</link>
    <description><![CDATA[使用Application和Session的事件 ASP的Application和Session对象体现了其他ASP内置对象所没有的特征事件。然而，正像在前面的对象成员表中看到的那样，这些都是ASP会话和应用程序的工作相联系]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[简单快捷实现ASP在线发邮件功能]]></title>
    <link>http://im.vc/web/asp/2011/0701/7123.html</link>
    <description><![CDATA[在编写网上应用程序时,经常碰到需要在线发送邮件的问题，邮件内容是由程序动态决定的，如果你采用的是ASP方式来编写网上应用程序，如何简单、快捷地实现这一功能呢？ 笔者在实]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（二）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7122.html</link>
    <description><![CDATA[接上一篇文章： WHERE可以使用下面的BETWEEN、LIKE、IN运算子。 Between...And Between...And判断表达式的值是否落在指定的范围之中。语法为： expr Between value1 And value2 表示如果expr的值介于valu]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的FSO对象的使用]]></title>
    <link>http://im.vc/web/asp/2011/0701/7121.html</link>
    <description><![CDATA[在ASP中，FSO的意思是File System Object，即文件系统对象。 我们将要操纵的计算机文件系统，在这里是指位于web服务器之上。所以，确认你对此拥有合适的权限。理想情况下，你可以在自己]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（三）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7120.html</link>
    <description><![CDATA[接上一篇文章： ORDER BY ORDER BY子句，可以设定排序的字段。 在一个SQL表达式之中，ORDER BY子句通常放置于最后。 若要以递减顺序来进行排序（Z~A，9 ~0），须于您要递减排序的每一字段]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[利用ASP发送和接收XML数据的处理方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7119.html</link>
    <description><![CDATA[因为要做移动梦网WAP的一些接口，所以要用到这种方式，接下来会有ASP.net版本的，这个是ASP版本的，利用了MSXML2.XMLHTTP对像。 request.asp dim Https set Https=server.createobject(MSXML2.XMLHTTP) '定义一]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP的Request和Response对象使用详解]]></title>
    <link>http://im.vc/web/asp/2011/0701/7118.html</link>
    <description><![CDATA[1、 Request对象成员的概述 a) Request对象的集合 Request对象提供了5个集合，可以用来访问客户端对Web服务器请求的各类信息，这些集合如下表： Request对象的集合及说明 集合名称 说明 Cl]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（四）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7117.html</link>
    <description><![CDATA[HAVING HAVING使用于SELECT 表达式中，筛选已经GROUP BY统计的记录。在GROUP BY统计记录后，HAVING将筛选与HAVING子句中条件相吻合的记录。 语法如下： SELECT fieldlist FROM table WHERE selectcriteria GRO]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP+SQL Server构建网页防火墙]]></title>
    <link>http://im.vc/web/asp/2011/0701/7116.html</link>
    <description><![CDATA[为网页设置防火墙的主要目的是根据网页内容对不同来访者提供不同的服务，利用Java Script或VB Script，我们很容易做到这一点。但网页的源码在客户浏览器中可以被看到，访问者可以查看]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP数据库事务控制的实现]]></title>
    <link>http://im.vc/web/asp/2011/0701/7115.html</link>
    <description><![CDATA[在编程中，经常需要使用事务。所谓事务，就是一系列必须都成功的操作，只要有一步操作失败，所有其他的步骤也必须撤销。比如用ASP开发一个网络硬盘系统，其用户注册部分要做的]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[asp的ado中使用SELECT-sql语法（五）]]></title>
    <link>http://im.vc/web/asp/2011/0701/7114.html</link>
    <description><![CDATA[Join JOIN连接组合两个表中的字段记录，包括三种： INNER JOIN运算式：连接组合两个表中的字段记录。 LEFT JOIN运算式：连接组合两个表中的字段记录，并将包含了LEFT JOIN左边表中的全部记]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>
<item>
    <title><![CDATA[ASP创建SQL Server数据库的两种方法]]></title>
    <link>http://im.vc/web/asp/2011/0701/7113.html</link>
    <description><![CDATA[% ************ 使用ADODB.Connect对象创建 ************************ Dim oConn Dim sDatabaseName sDatabaseName = CodeCreateDB Set oConn = Server.CreateObject(ADODB.Connection) oConn.Open Provider=SQLOLEDB;Data Source=(local);User ID=sa;P]]></description>
    <pubDate>2011-07-01</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>未知</comments>
</item>

</channel>
</rss>

