存档

文章标签 ‘asp’

解决方法:An error occurred on the server when processing the URL. Please contact the system administrator

2015年4月16日 没有评论

在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,然后点右侧的应用!如图所示:

asp语言判断域名来路跳转代码

2012年11月21日 没有评论

经常有时我们需要做一些类301跳转的手段来对客户访问的域名进行重定向。以下代码为asp实现些目的。

利用asp语言判断域名来路跳转代码:

以下代码实现的效果是如果客户访问域名888.vps12.com时。自动跳转到http://hk.vps12.com/login/login.aspx

1
2
3
4
5
<%
if (request.ServerVariables("Server_NAME") = "888.vps12.com") then
Response.Redirect "http://hk.vps12.com/login/login.aspx"
end if
%>

以下代码实现的效果是如果客户访问域名时。域名后面自动加入端口8083。如:访问vps12.com时自动在vps12.com后面加入8083端口—— http://vps12.com:8083/

1
2
3
4
5
6
<%
host = Trim(Request.ServerVariables("HTTP_HOST"))
host = "http://" & host & ":8083"
Response.Redirect(host)
Response.End()
%>

asp及php的url跳转代码实现

2012年11月11日 没有评论

php语言环境下的跳转

1
2
3
4
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.vps12.com/");
?>

asp语言环境下的跳转

1
2
3
4
5
6
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", " http://www.vps12.com/"
Response.End
%>