Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
The remote server returned an error: (500) Internal Server Error.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Net.WebException: The remote server returned an error: (500) Internal Server Error.

Source Error:


Line 63: }
Line 64: //Gets the response
Line 65: WebResponse response = req.GetResponse();
Line 66: //Writes the Response
Line 67: Stream responseStream = response.GetResponseStream();

Source File: d:\Development\WorkingFolder\CareCredit\Default2.aspx.cs Line: 65
Posted

1 solution

You're making an HTTP request to a particular URL. The code behind that URL failed, and returned an error. The error code means that it's a problem with the code of that page, not a problem with your request.

There's nothing you can do except report the error to the people who are responsible for maintaining the page that you're requesting, and wait for them to fix it.
 
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