problem about webservice!?
however, I found that the ASP can never get any parameter from
my request. Any problem with my coding!!!!
///////////////////////////////////////////
Dim remoteUri As String "http://192... card_info.asp?p1=314"
//Open a stream to point to the data stream coming from the Web resource.
Dim myStream As Stream = WebClient1.OpenRead(remoteUri)
Try
Dim SrReadToEnd As StreamReader = New StreamReader(myStream, System.Text.Encoding.ASCII)
Console.WriteLine(SrReadToEnd.ReadToEnd())
SrReadToEnd.Close()
Catch ee As Exception
MsgBox("error" & ee.ToString())
End Try
myStream.Close()
End Sub
///////////////////////////////////////////

