在asp.net vb.net中使用WebClient.DownloadString时出错

时间:2012-03-04 06:55:23

标签: asp.net vb.net sendmail

我在WebClient.DownloadString中使用vb.net方法将asp.net页面转换为字符串,之后我通过电子邮件发送此字符串。 我从服务器收到此错误

The remote server returned an error: (500) Internal Server Error. 

不幸的是,没有关于错误的更多细节。什么是可能的问题?

编辑:

以下代码行中的

错误:

Dim str As String = client.DownloadString(Request.Url.GetLeftPart(UriPartial.Authority) + "/GFOPortalA/isd/ViewForm.aspx?ISD_FRM_NO=" + Session("ISD_ReqId"))

1 个答案:

答案 0 :(得分:0)

在你的web.config中

,确保你有:

<webServices>
  <protocols>
    <add name="HttpGet"/>
    <add name="HttpPost"/>
  </protocols>
</webServices>