Converted PowerBuilder to ASP.Net browsing Errors

Posted by user493325 on Stack Overflow See other posts from Stack Overflow or by user493325
Published on 2010-12-16T10:19:36Z Indexed on 2011/01/12 11:54 UTC
Read the original article Hit count: 241

I had a powerbuilder application which i converted to web application in the format of ASP.Net (aspx) files.

after deploying and publishing the converted web application (copy it and add ASP.Net and network Service AND IUser permissions to enable users to access it) in IIS V6.0 over Windows server 2003 and The ASP.Net version is 2.0

The error messages I get when I browse default.aspx web page are as the following:-

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 tag within a "web.config" configuration file located in the root directory of the current web application. This 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 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>

Another error message appears on the server is:-

Server Error in '/' Application.

Configuration Error

<roleManager enabled="true">
<membership>
</roleManager>

Thanks in Advance...

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about website