Click here to Skip to main content
15,881,380 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am in a big problem. I have developed a website in asp.net and it was working fine, but right now i am getting the following error If i go to my website. I am getting following error:

500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.


Please Help me
Posted

HTTP 500 error is very generic. To get further info about it, temporarily add the following within the appropriate tags in your web.config file:

XML
<configuration>
    <system.webserver>
        <httperrors errormode="Detailed" />
    </system.webserver>
    <system.web>
        <customerrors mode="Off" />
        <compilation debug="true" />
    </system.web>
</configuration>
 
Share this answer
 
Comments
dhiman.rohit9 14-Nov-13 5:45am    
thanks, problem is solved

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