﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>运维部落 &#187; asp</title>
	<atom:link href="http://help.vps12.com/tag/asp/feed" rel="self" type="application/rss+xml" />
	<link>https://help.vps12.com</link>
	<description>分享服务器运维及实践解决方案</description>
	<lastBuildDate>Sat, 25 Jan 2025 07:14:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>解决方法:An error occurred on the server when processing the URL. Please contact the system administrator</title>
		<link>https://help.vps12.com/1270.html</link>
		<comments>https://help.vps12.com/1270.html#comments</comments>
		<pubDate>Thu, 16 Apr 2015 09:01:56 +0000</pubDate>
		<dc:creator>vps12.com</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[解决方案]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[vps12.com]]></category>
		<category><![CDATA[服务器安全]]></category>

		<guid isPermaLink="false">http://help.vps12.com/?p=1270</guid>
		<description><![CDATA[在WINDOWS7或SERVER2008上安装了IIS7.5，调试ASP程序时出现以下错误： An error occurred on the server when processing the URL. Please contact the system administrator 解决方法如下： 设置方法一: 以管理员身份运行CMD，将目录定位到%windir%\system32\inetsrv\，然后执行appcmd set config -section:asp -scriptErrorSentToBrowser:true。 %windir%\system32\inetsrv\appcmd set config -section:asp -scriptErrorSentToBrowser:true 设置方法二: 打开IIS7的asp设置，展开“调试属性”选项，“将错误发送到浏览器”这项默认的是False，改为True，然后点右侧的应用！如图所示：]]></description>
		<wfw:commentRss>https://help.vps12.com/1270.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp语言判断域名来路跳转代码</title>
		<link>https://help.vps12.com/580.html</link>
		<comments>https://help.vps12.com/580.html#comments</comments>
		<pubDate>Wed, 21 Nov 2012 05:32:11 +0000</pubDate>
		<dc:creator>vps12.com</dc:creator>
				<category><![CDATA[编程实践]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[vps12.com]]></category>
		<category><![CDATA[台湾vps]]></category>
		<category><![CDATA[源代码]]></category>
		<category><![CDATA[美国vps]]></category>
		<category><![CDATA[香港vps]]></category>

		<guid isPermaLink="false">http://blog.vps12.com/?p=580</guid>
		<description><![CDATA[经常有时我们需要做一些类301跳转的手段来对客户访问的域名进行重定向。以下代码为asp实现些目的。 利用asp语言判断域名来路跳转代码： 以下代码实现的效果是如果客户访问域名888.vps12.com时。自动跳转到http://hk.vps12.com/login/login.aspx ?View Code ASP1 2 3 4 5 &#60;% if &#40;request.ServerVariables&#40;&#34;Server_NAME&#34;&#41; = &#34;888.vps12.com&#34;&#41; then Response.Redirect &#34;http://hk.vps12.com/login/login.aspx&#34; end if %&#62; 以下代码实现的效果是如果客户访问域名时。域名后面自动加入端口8083。如：访问vps12.com时自动在vps12.com后面加入8083端口—— http://vps12.com:8083/ ?View Code ASP1 2 3 4 5 6 &#60;% host = Trim&#40;Request.ServerVariables&#40;&#34;HTTP_HOST&#34;&#41;&#41; host = &#34;http://&#34; &#38; host &#38; &#34;:8083&#34; Response.Redirect&#40;host&#41; Response.End&#40;&#41; %&#62;]]></description>
		<wfw:commentRss>https://help.vps12.com/580.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp及php的url跳转代码实现</title>
		<link>https://help.vps12.com/517.html</link>
		<comments>https://help.vps12.com/517.html#comments</comments>
		<pubDate>Sat, 10 Nov 2012 17:50:05 +0000</pubDate>
		<dc:creator>vps12.com</dc:creator>
				<category><![CDATA[编程实践]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[vps12.com]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[服务器安全]]></category>
		<category><![CDATA[跳转]]></category>

		<guid isPermaLink="false">http://blog.vps12.com/?p=517</guid>
		<description><![CDATA[php语言环境下的跳转 ?View Code PHP1 2 3 4 &#60;?php header&#40;&#34;HTTP/1.1 301 Moved Permanently&#34;&#41;; header&#40;&#34;Location: http://www.vps12.com/&#34;&#41;; ?&#62; asp语言环境下的跳转 ?View Code ASP1 2 3 4 5 6 &#60;%@ Language=VBScript %&#62; &#60;% Response.Status=&#34;301 Moved Permanently&#34; Response.AddHeader &#34;Location&#34;, &#34; http://www.vps12.com/&#34; Response.End %&#62;]]></description>
		<wfw:commentRss>https://help.vps12.com/517.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
