2011-06-24 217 views
2

我是新来的asp.net,我的公司有一个项目,所有这个项目devolopers离开这里,没有人知道这个项目。我需要更新它。 其实所有的都是在我的windowsXP系统本地配置的。数据库,iis,项目文件都在这里。远程服务器返回一个错误:(500)内部服务器错误

当我使用网络请求时出现错误 “远程服务器返回错误:(500)内部服务器错误。” 错误和代码在这里 请帮我 的错误是

Server Error in '/ava-006' Application. 
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. 

异常详细信息:System.Net.WebException:远程服务器返回错误:(500)内部服务器错误。

源错误:

Line 50:   End If 
Line 51: 
Line 52:   wResp = wr.GetResponse 
Line 53:   sr = New System.IO.StreamReader(wResp.GetResponseStream) 
Line 54:   Shtml = sr.ReadToEnd 

源文件:F:\ Prajeesh \ AVA-006 \ lead.report.aging.aspx.vb行:52

堆栈跟踪:

[WebException: The remote server returned an error: (500) Internal Server Error.] 
    System.Net.HttpWebRequest.GetResponse() +5375997 
    ava_006.lead_report_aging.GetReport(String strFormat, String strWeek) in F:\Prajeesh\ava-006\lead.report.aging.aspx.vb:52 
    ava_006.lead_report_aging.btnView_Click(Object sender, EventArgs e) in F:\Prajeesh\ava-006\lead.report.aging.aspx.vb:73 
    System.Web.UI.WebControls.Button.OnClick(EventArgs e) +107 
    System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +110 
    System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10 
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13 
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3436 


Version Information: Microsoft .NET Framework Version:2.0.50727.3623; ASP.NET Version:2.0.50727.3618 

我用的是代码为

<pre lang="vb">Function GetReport(ByVal strFormat As String, ByVal strWeek As String) As String 
     Dim wr As WebRequest 
     Dim wResp As WebResponse 
     Dim sr As StreamReader 
     Dim Shtml As String 
     If InStr(Request.ServerVariables(&quot;path_info&quot;), &quot;ava-006&quot;) &gt; 0 Then 
      wr = HttpWebRequest.Create(&quot;http://&quot; &amp; Request.ServerVariables(&quot;server_name&quot;) &amp; &quot;/ava-006/lead.report.agingsub.aspx?pFormat=&quot; &amp; strFormat &amp; &quot;&amp;pWeek=&quot; &amp; strWeek) 
     Else 
      wr = HttpWebRequest.Create(&quot;http://&quot; &amp; Request.ServerVariables(&quot;server_name&quot;) &amp; &quot;/lead.report.agingsub.aspx?pFormat=&quot; &amp; strFormat &amp; &quot;&amp;pWeek=&quot; &amp; strWeek) 
     End If 
     wResp = wr.GetResponse 
     sr = New System.IO.StreamReader(wResp.GetResponseStream) 
     Shtml = sr.ReadToEnd 
     GetReport = Shtml 
    End Function</pre> 
+0

我认为错误发生在您尝试获取数据而不是此代码的服务器上。因此,您需要检查您的远程服务器是否实际尝试获取数据,并且数据位于您要求的位置。这是你需要检查它的工作。 server_name // ava-006/lead.report.agingsub.aspx – Aristos

回答

0

在你的btnView_Click上放置一个断点并查看发生异常的位置。

+0

Function GetReport中的实际断点(...除非该代码不是你的.. – ghimireniraj

1

错误是在你的页面lead.report.agingsub.aspx 当其通pFormatpWeek其抛出错误,以便 其显示500错误,因为wr.GetResponse返回错误页面,从铅.report.agingsub.aspx

相关问题