problem about webservice!?

I've written a function to call out another ASP to process.
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
///////////////////////////////////////////
[868 byte] By [Try Try] at [2007-11-18 2:09:18]