Click here to Skip to main content
15,889,648 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I've developed a website in ASP.NET + SQL Server and i uploaded it to the server, but when i enter the url i can only find a web config error,




XML
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 <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
<defaultRedirect='mycustompage.htm'/>
    </system.web>
</configuration>


this is the error, i changed my web config file by adding the <defaultredirect> and customErrors mode="RemoteOnly". But nothing seems changing.What changes should I make now in web config n all?? Some one please help me. I'm new to this hosting stuff and any help is much appreciated.


Thanks in advance,

Ajay.
Posted
Comments
[no name] 28-Apr-13 9:53am    
Did you bother reading the error message? <customerrors mode="Off"></customerrors>
ajaykalarickal 28-Apr-13 10:08am    
yea..I changed it with this :

<defaultredirect></defaultredirect>
[no name] 28-Apr-13 10:32am    
No you did not. You need to read the message and do what it says.

1 solution

Just use below code.. for finding actual error on your website...

C#
<customerrors mode="On" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900