|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 9/21/2005 4:19:00 AM
Posts: 4,
Visits: 1
|
|
Hi, I've created an ASP.NET Web Application. I want to deploy it on my space hosted on re-invent.com server. When I deploy it in my root directory it works fine. But I create a new folder and deploy it there, It causes problems, gives the following error:
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></configuration> |
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web></configuration> |
I believe it is b/c. I've deployed Application in a folder, hasn't created an application. Any help ? 
-Attari-
|
|
|
|
|
Supreme Being
      
Group: Administrators
Last Login: Yesterday @ 10:51:33 PM
Posts: 161,
Visits: 397
|
|
Hello, You are correct. The sub-folder need to be set as an IIS Web Application. Please set the folder as an IIS Web Application or contact our Customer Support to set this for you.
Paul BRe-invent Technologies LLC http://www.re-invent.com
Innovative ASP.NET 3.5/2.0 Hosting Now with Windows 2008 Hosting and SQL 2008 Celebrating 10 Years in Business!
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 9/21/2005 4:19:00 AM
Posts: 4,
Visits: 1
|
|
Thanks a million for your kind reply. Is it possible that I can set some sub directory as an IIS web application myself ? If yes then Howwww ??????????? Please reply  Thanks, -Attari-
-Attari-
|
|
|
|
|
Supreme Being
      
Group: Administrators
Last Login: Yesterday @ 10:51:33 PM
Posts: 161,
Visits: 397
|
|
Hello, Please contact our Support at support@re-invent.com and they can assist you further as we need to know some account info on you.
Paul BRe-invent Technologies LLC http://www.re-invent.com
Innovative ASP.NET 3.5/2.0 Hosting Now with Windows 2008 Hosting and SQL 2008 Celebrating 10 Years in Business!
|
|
|
|