M
Manuel
I have an asp page ("test.asp") that presents the data it receives from a
post.
When I try the following code, test.asp doesn't return the values
(supposedly) posted to it.
If I make a web page with a form and the values, test.asp reports them fine.
----------------------------
Dim thePost As String = "Variable1=Value1&Variable2=Value2&Variable3=Value3"
Dim thePage As Byte()
Dim MyWebClient As New System.Net.WebClient
thePage = MyWebClient.UploadData("http://localhost/test.asp",
System.Text.Encoding.ASCII.GetBytes(thePost))
post.
When I try the following code, test.asp doesn't return the values
(supposedly) posted to it.
If I make a web page with a form and the values, test.asp reports them fine.
----------------------------
Dim thePost As String = "Variable1=Value1&Variable2=Value2&Variable3=Value3"
Dim thePage As Byte()
Dim MyWebClient As New System.Net.WebClient
thePage = MyWebClient.UploadData("http://localhost/test.asp",
System.Text.Encoding.ASCII.GetBytes(thePost))