剛剛看到一段簡短的程式是使用vb.net 開發應用程式來對網站使用POST的方式傳送資料
Dim web As New System.Net.WebClient()
web.Headers.Add("Content-Type","application/x-www-form-urlencoded")
Dim d As Byte() = System.Text.Encoding.ASCII.GetBytes("SEA
Dim res As Byte() = web.UploadData("http://www.baidu.com","POST",d)
msgBox(System.Text.Encoding.ASCII.GetStr
比起下面這種方法是簡單許多!
Dim httpResp As System.Net.HttpWebResponse Dim httpUrl2 As New System.Uri("http://www.baidu.com") Dim req As HttpWebRequest req = CType(WebRequest.Create(httpUrl2),HttpWebRequest) req.Method = "POST" req.ContentType = "application/x-www-form-urlencoded" Dim bytesData() As Byte = Encoding.ASCII.GetBytes("SEARCHSTRING=test") req.ContentLength = bytesData.Length Dim postStream As Stream = req.GetRequestStream() postStream.Write(bytesData,bytesData.Length) postStream.Close() Dim res As HttpWebResponse = CType(req.GetResponse(),HttpWebResponse) Dim reader As StreamReader = New StreamReader(res.GetResponseStream,System.Text.Encoding.GetEncoding("BIG5")) Dim respHTML As String = reader.ReadToEnd() res.Close() MsgBox(respHTML)