Thanks deepak, I've tried this. I'm using the same method. code is: Dim myRequest As WebRequest = WebRequest.Create(Server.MapPath("test.asp")) Dim myResponse As WebResponse = myRequest.GetResponse() Dim responseStream As System.IO.Stream = myResponse.GetResponseStream() Dim reader As New System.IO.StreamReader(responseStream) TextBox1.Text = reader.ReadToEnd() myResponse.Close() it shows me this result: <% response.write("Hello")%> and if I try to access remote page then it gives error that connection has lost. can you please help me? thanks again.