<?xml version="1.0" encoding="utf-8"?>
<!--  RSS generated by phpcms.cn RSS Builder [2026-04-07 13:36:00]  --> 
<rss version="2.0" xmlns:im="http://purl.org/rss/1.0/item-images/" xmlns:dc="http://purl.org/dc/elements/1.1/" >
<channel>
<pubDate>Tue, 07 Apr 2026 13:36:00 +0800</pubDate>
<lastBuildDate>Tue, 07 Apr 2026 13:36:00 +0800</lastBuildDate>
<docs>https://www.pweb123.com</docs>
<link>https://www.pweb123.com</link>
<title>asp基础</title>
<image>
<title>asp基础</title>
<url><![CDATA[]]></url>
<link>https://www.pweb123.com</link>
</image>
<webMaster>https://www.pweb123.com</webMaster>
<generator>https://www.pweb123.com</generator>
<ttl>60</ttl>
<dc:creator>https://www.pweb123.com</dc:creator>
<dc:date>Tue, 07 Apr 2026 13:36:00 +0800</dc:date>
<item>
<title><![CDATA[前端开发面试题 （题目列表页）（看完之后我哭了）]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/527.html]]></link>
<description><![CDATA[<img src=https://www.pweb123.com/uploadfile/2015/0913/thumb_150_150_20150913100804929.jpg border='0' /><br />HTMLDoctype作用？严格模式与混杂模式如何区分？它们有何意义?行内元素有哪些？块级元素有哪些？ 空(void)元素有那些？介绍一下CSS的盒子模型？link和@import的区别是？CSS选择符有哪些？哪些属性可以继承？优先级算法如何计算？ CSS3新增伪类有那些？如何居中div？如何居中一个浮   ]]></description>
<pubDate>2015-09-13 09:59:26</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/527.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[Web源码安全审计之ASP篇（下）]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/171.html]]></link>
<description><![CDATA[<img src=https://www.pweb123.com/uploadfile/2015/0525/thumb_150_150_20150525104711943.png border='0' /><br />六．Cookies欺骗（Cookies Spoofing）  概述：在只对用户做Cookies验证的系统中，通过修改Cookies的内容来得到相应的用户权限登录。Cookies欺骗在入侵中经常用到，通过修改Cookies的内容来得到相应的用户权限登录，从而达到攻击的目的。 漏洞原理：到底什么是Cookies，它有什么作   ]]></description>
<pubDate>2014-01-05 22:39:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/171.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[Web源码安全审计之ASP篇（上）]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/170.html]]></link>
<description><![CDATA[<img src=https://www.pweb123.com/uploadfile/2015/0525/thumb_150_150_20150525104710827.png border='0' /><br />0x01 ASP简介：ASP是一种服务器端脚本编写环境，可以用来创建和运行动态网页或Web应用程序。ASP网页可以包含HTML标记、普通文本、脚本命令以及COM组件等。利用ASP可以向网页中添加交互式内容（如在线表单），也可以创建使用HTML网页作为用户界面的web应用程序。0x02 ASP漏洞介绍：   ]]></description>
<pubDate>2014-01-05 21:56:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/170.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[ASP模板引擎实现（ASP网页静态化）]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/169.html]]></link>
<description><![CDATA[模板引擎说明:1 此模板引擎由个人独立完成,转载或使用请联系2 引擎内部使用了其它函数及操作类,暂时不能直接使用3 发出来是想分享一下自己的解析思路,希望有兴趣的朋友点评一下以下是说明==============================分隔线====================================模板对象属性bHtm   ]]></description>
<pubDate>2013-11-19 08:53:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/169.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[常用的asp代码]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/168.html]]></link>
<description><![CDATA[这里列出一些常用字的asp代码。1 获得系统时间:&lt;%=now()%&gt;2 取得来访用的IP:&lt;%=request serverVariables(&quot;remote_host&quot;)%&gt;3 获得系统,浏览器版本:&lt;script&gt; window document write(&quot;版本：&quot;+navigator appName+navigator appVersion+&quot; browser &quot;) &lt; script&gt;4 去除IE混动条:&lt;body s   ]]></description>
<pubDate>2013-08-18 22:52:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/168.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[asp生成静态页面方法]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/167.html]]></link>
<description><![CDATA[原理：用asp获取动态页面的html代码后，再将这些html代码写成html代码。&lt;% SetMyFileObject=Server CreateObject(&quot;Scripting FileSystemObject&quot;) path=server mappath(&quot;index html&quot;) IfMyfileobject fileexists(path)Then如果存在此文件，删除之 MyfileObject deletefilepath En   ]]></description>
<pubDate>2013-08-18 22:51:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/167.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[asp有效防止网站留言板出现垃圾留言/评论实现思]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/166.html]]></link>
<description><![CDATA[一 在表单填写页面: &lt;input name=&quot;intime1&quot; type=&quot;hidden&quot; value=&quot;&lt;%=Now()%&gt;&quot;&gt;在提交处理页面,设置提交时间代码如下:If DateDiff(&quot;s&quot;,request form(&quot;intime1&quot;), Now()) &lt; 5 thenresponse write &quot;&lt;SCRIPT language=JavaScript&gt;alert(您的留言速度太快，禁止留言！);&quot;respo   ]]></description>
<pubDate>2013-08-13 13:01:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/166.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[ASP中FSO神奇功能]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/165.html]]></link>
<description><![CDATA[在ASP中，FSO的意思是File System Object，即文件系统对象。　　我们将要操纵的计算机文件系统，在这里是指位于web服务器之上。所以，确认你对此拥有合适的权限。理想情况下，你可以在自己的机器上建立一个web服务器，这样就能方便地进行测试。如果运行于Windows平台，请试一试微软   ]]></description>
<pubDate>2013-08-08 13:05:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/165.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[ASP简单入门教程(2):ASP环境配置]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/164.html]]></link>
<description><![CDATA[<img src=https://www.pweb123.com/uploadfile/2015/0525/thumb_150_150_20150525104709163.jpg border='0' /><br />IIS环境配置图文教程1、在网上下载或者安装iis软件（不要相信什么插入CD-ROM的方法，这种需要有系统盘的前提的，一般是没有这玩意的，还是在网上下载一个iis划算） 网上提供的IIS种类有很多，有绿色破解版、有收费版，推荐大家一个是：由蓝点软件工作室（http:  landian cq cn）陈宗   ]]></description>
<pubDate>2015-05-25 22:47:09</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/164.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[ASP编程常用的函数function大全]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/163.html]]></link>
<description><![CDATA[&lt;%　　&amp;rsquo;*************************************　　&amp;rsquo;防止外部提交　　&amp;rsquo;*************************************　　function ChkPost()　　dim server_v1,server_v2　　chkpost=false　　server_v1=Cstr(Request ServerVariables(&quot;HTTP_REFERER&quot;))　　server_v2=C   ]]></description>
<pubDate>2015-05-25 22:47:08</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/163.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[Session与Cookie的区别]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/162.html]]></link>
<description><![CDATA[先说session 对SESSION的争论好象一直没有停止过，不过幺麽能理解SESSION的人应该占90以上。但还是讲讲，别嫌老~有一些人赞成用SESSION，有一些人不赞成。但这个问题到底要怎么说。不妨听听我的看法，如果有错误请不要朝丢东西，金条和硬币除外。有些人应该知道我是做江湖程序的，而   ]]></description>
<pubDate>2013-07-08 17:11:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/162.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[ASP+AJAX 实现类似于google搜索提示]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/161.html]]></link>
<description><![CDATA[利用AJAX 实现 google提示主要要文件有:Index html 实现功能,一个文本框,输入内容并实现提示search asp 查询功能,让文本框输入的内容在数据库中查询,然后返回给客户端conn asp 数据库连接功能,实现与数据库相连xmlhttp js AJAX 核心部分,用来把客户端的数据传给服务端,再把服   ]]></description>
<pubDate>2013-06-27 10:34:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/161.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[配置IIS服务器时需要注意的地方]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/160.html]]></link>
<description><![CDATA[介绍五种配置IIS服务器时需要注意的地方，把好安全关是所有网站都必须要做好的功课，如果服务器本身不安全，给网站带来的将是毁灭性的。一、操作系统的安装我这里说的操作系统以Windows 2000为例，高版本的Windows也有类似功能。格式化硬盘时候，必须格式化为NTFS的，绝对不要使用FA   ]]></description>
<pubDate>2013-06-17 20:03:00</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/160.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
<item>
<title><![CDATA[配置IIS服务器时需要注意的地方]]></title>
<link><![CDATA[https://www.pweb123.com/html/asp/8.html]]></link>
<description><![CDATA[介绍五种配置IIS服务器时需要注意的地方，把好安全关是所有网站都必须要做好的功课，如果服务器本身不安全，给网站带来的将是毁灭性的。一   ]]></description>
<pubDate>2015-05-12 22:55:13</pubDate>
<guid><![CDATA[https://www.pweb123.com/html/asp/8.html]]></guid>
<author>https://www.pweb123.com</author>
</item>
</channel>
</rss>
