<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>易腾动力社区 - ASP开发</title>
    <link>http://bbs.yidz.cn/forum-38-1.html</link>
    <description>Latest 20 threads of ASP开发</description>
    <copyright>Copyright(C) 易腾动力社区</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 13 May 2026 16:07:05 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://bbs.yidz.cn/static/image/common/logo_88_31.gif</url>
      <title>易腾动力社区</title>
      <link>http://bbs.yidz.cn/</link>
    </image>
    <item>
      <title>ASP Buffer</title>
      <link>http://bbs.yidz.cn/thread-109-1-1.html</link>
      <description><![CDATA[不知道大家对Buffer了解多少，很多人对这个概念都比较模糊，尤其是在asp中。很多初学者在编写asp程序时很少用到这条语句，下面我就来说说Buffer的用途以及它在asp程序中的作用。

一、Buffer
Buffer从英文直译过来的意思是“缓冲区”，这里我们将它称为缓冲，因为它 ...]]></description>
      <category>ASP开发</category>
      <author>jaly</author>
      <pubDate>Wed, 31 Aug 2016 07:48:49 +0000</pubDate>
    </item>
    <item>
      <title>ASP上传不了大于200K的文件</title>
      <link>http://bbs.yidz.cn/thread-103-1-1.html</link>
      <description><![CDATA[set providerObj=GetObject(\&quot;winmgmts:/root/MicrosoftIISv2\&quot;)
set vdirObj=providerObj.get(\&quot;IIsWebVirtualDirSetting=\'W3SVC/1/ROOT\'\&quot;)
WScript.Echo \&quot;Before: \&quot; &amp; vdirObj.AspMaxRequestEntityAllowed
vdirObj.AspMaxRequestEntityAllowed=2097152
vdirObj.Pu]]></description>
      <category>ASP开发</category>
      <author>jaly</author>
      <pubDate>Wed, 31 Aug 2016 07:39:23 +0000</pubDate>
    </item>
    <item>
      <title>ASP 数据库连接</title>
      <link>http://bbs.yidz.cn/thread-20-1-1.html</link>
      <description><![CDATA[\'ACCESS 2007
conn.open \&quot;Provider=Microsoft.ACE.OLEDB.12.0; Data Source=\&quot;&amp;Server.MapPath(db)

[hr]\'ACCESS 2003
conn.open \&quot;driver={microsoft access driver (*.mdb)};dbq=\&quot;&amp;server.MapPath(db)

[hr]\'SQL 2005
conn.open \&quot;Driver={SQL Server};Server=]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:50:17 +0000</pubDate>
    </item>
    <item>
      <title>ASP 常量</title>
      <link>http://bbs.yidz.cn/thread-19-1-1.html</link>
      <description><![CDATA[Request.ServerVariables(\&quot;环境变量\&quot;)
CONTENT_LENGTH  \'获取请求程序所发送的内容的字符总数
CONTENT_TYPE  \'获取请求信息的类型
GATEWAY_INTERFACE  \'获取网关的接口
HTTP_USER_AGENT  \'客户端浏览器类型版本号
LOCAL_ADDR  \'服务器IP地址
NUMBER_OF_PROCESSORS ...]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:49:30 +0000</pubDate>
    </item>
    <item>
      <title>Response.Flush、Response.clear和Response.Buffer的使用</title>
      <link>http://bbs.yidz.cn/thread-18-1-1.html</link>
      <description><![CDATA[设置改页面ContentType = \&quot;audio/x-wav\&quot;，写入byte[]数组，页面输出为wav格式的音频文件
WebClient wc = new WebClient();
byte[] byteData = wc.DownloadData(urls);

//jc.Context.Response.ContentType = \&quot;audio/x-wav\&quot;;
//设置输出的文件名称
jc.Context.Resp ...]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:45:43 +0000</pubDate>
    </item>
    <item>
      <title>rs记录集</title>
      <link>http://bbs.yidz.cn/thread-16-1-1.html</link>
      <description><![CDATA[rs.bof移到第一条
rs.eof移最后一条 
rs.movenext读取是下一条 
rs.MovePrevious读取是上一条]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:41:48 +0000</pubDate>
    </item>
    <item>
      <title>asp清缓存</title>
      <link>http://bbs.yidz.cn/thread-15-1-1.html</link>
      <description><![CDATA[有时候缓存会给程序带来很大的麻烦，这段代码是用来清空IE缓存里的内容
1.禁止客户端缓存要在中加入类似如下内)：
 
 


2.在服务器的动态网页中禁止缓存，要加入类似如下脚本
(1)asp:

或者

(2)jsp:
response.setHeader(\&quot;Pragma\&quot;,\&quot;No-cache\&quot;); 
response ...]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:41:16 +0000</pubDate>
    </item>
    <item>
      <title>完整 BOF EOF 大全</title>
      <link>http://bbs.yidz.cn/thread-14-1-1.html</link>
      <description><![CDATA[eof是指针在最后端
bof是指针在最前端
BOF：第一条记录之前
EOF：最后一条记录之后
当打开记录数为0的库时（即库中没有记录）时：
RS.EOF=TRUE  ADN RS.BOF=TRUE
当删除库中的最后一条数据时（这时recordcount亦=0）时：
RS.BOF=FALSE  AND  RS.EOF=FALSE
如果  ...]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:40:42 +0000</pubDate>
    </item>
    <item>
      <title>ASP错误代码</title>
      <link>http://bbs.yidz.cn/thread-13-1-1.html</link>
      <description><![CDATA[对不起，程序发生错误，被停止执行。

错误码：
错误代码：
错误程序代码：
错误文件：
错误行数：
错误Column：
错误类型：
错误描述：
错误描述：]]></description>
      <category>ASP开发</category>
      <author>小林飞刀</author>
      <pubDate>Wed, 03 Jul 2013 14:40:00 +0000</pubDate>
    </item>
  </channel>
</rss>