如何在ASP.NET站点中处理ASP请求?

时间:2010-11-08 08:45:39

标签: asp.net http iis asp-classic

我有一个托管在ASP.NET环境中的站点。该网站目前能够处理.aspx请求。如果用户请求服务器中不存在的.aspx页面,那么我可以将他/她重定向到一般错误页面。

现在的问题是,如果用户请求.asp页面, 例如,如果用户键入

http://wwww.example.com/index.asp

然后错误处理程序不起作用。我想把他/她重定向到这里,

http://wwww.example.com/index.aspx

我怎样才能做到这一点?

提前致谢。

1 个答案:

答案 0 :(得分:2)

对于permanent redirect

Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"

this

Response.Redirect "http://www.new-url.com/"