-1

我正在尝试使用以下代码为 Json 进行 DirectCast -

Dim EmailId as String
Dim URL as String
EmailId = txtEmailId.Text
URL = "http://localhost/json.php?id=" & EmailId

request = DirectCast(URL, HttpWebRequest)
response = DirectCast(request.GetResponse(), HttpWebResponse)
reader = New StreamReader(response.GetResponseStream())

问题是,上述方法只有在我将电子邮件 ID 硬编码到 URL 时才有效。例如DirectCast("http://localhost/json.php?id=abcd@gmail.com", HttpWebRequest)。当尝试将电子邮件 ID 作为变量时,我收到以下错误 -

“String”类型的值无法转换为“System.Net.HttpWebRequest”。

请帮助我完成这项工作。

4

1 回答 1

0
request = WebRequest.Create(URL)
于 2014-07-21T14:18:19.357 回答