我在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"))
答案 0 :(得分:0)
,确保你有:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>