我收到此错误:
(远程服务器返回错误:(500) Internal Server Error. at System.Net.HttpWebRequest.GetResponse())
突然出现在我使用 c# 制作的一个 Windows 应用程序中。我已经使用这个应用程序多年了,直到昨天才出现任何问题。它突然开始抛出这个错误。
以下是我的方法和我正在调用的网址:
public string CallOnlineUrl() {
try {
Uri onlineupdateUrl = new Uri("https://billett.tusenfryd.no/admin/update.aspx");
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(onlineupdateUrl);
System.Net.WebResponse resp = req.GetResponse();
System.IO.Stream stream = resp.GetResponseStream();
//****some code
//-------
} catch(Exception ex) {
ERPLog.AddLogEntry(ex.Message + ex.StackTrace);
}
return cont;
}
任何解决此问题的帮助或建议表示赞赏:)