我们在服务器 2003 上使用 IIS6。我们有几个使用经典 ASP 的网站。现在我们有 1 个使用 ASP.NET 的网站。这个 asp.net 网站与经典的 asp 网站在同一台服务器上。
直到最近,我们的用户还有他们的书签(我们有很多用户都有书签)作为
http://www.myasp.com/weather 和 http://www.myasp.com/weather/default.asp 会加载。
使用 IIS6 在服务器 2003 上创建此 ASP.NET(“ http://www.myNet.com/weatherNet ”)网站后,
用户转到(经典 asp) http://www.myasp.com/weather他们收到错误消息:
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
当用户键入或添加书签“ http://www.myasp.com/weather ”时,如何使经典的asp“ http://www.myasp.com/weather/default.asp ”加载?
另外我怎样才能使“ http://www.myNet.com/weatherNet ”加载(ASP.NET)“ http://www.myNet.com/weatherNet/default.aspx ”?
我检查了 IIS 和 ASP 已经允许并且 ASP.Net v4.0.30319 是允许的。