We are using IIS6 on server 2003. We have several web sites that use classic ASP. Now we have 1 web site that uses ASP.NET. This asp.net website is on the same server as the classic asp websites.
Until recently, our users have their bookmarks ( we have many users that have a bookmark) as
http://www.myasp.com/weather and http://www.myasp.com/weather/default.asp would load up.
After creating this ASP.NET ("http://www.myNet.com/weatherNet") web site on the server 2003 with IIS6,
a user goes to (classic asp) http://www.myasp.com/weather they get error message:
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>
When a user types in or bookmark "http://www.myasp.com/weather", How can I make classic asp "http://www.myasp.com/weather/default.asp" load?
Also how can I make "http://www.myNet.com/weatherNet" load up (ASP.NET) "http://www.myNet.com/weatherNet/default.aspx"?
I checked IIS and ASP is already Allowed and ASP.Net v4.0.30319 is Allowed.