> Hi,
>
[quoted text clipped - 4 lines]
>
> Thanks,
Hmm, without knowing the true uses of those classes in the Java world, I
think you're looking for things like:
System.Uri
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystemuriclasstopic.asp
System.UriBuilder (handy if you're munging a url together yourself)
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystemuribuilderclasstopic.asp
System.Net.HttpWebRequest and ...HttpWebResponse
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystemnethttpwebrequestclasstopic.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystemnethttpwebresponseclasstopic.asp

Signature
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
Anbu - 15 Jul 2005 07:21 GMT
Craig,
Here is the exact JSP code. I'm looking for the alternative code in ASP
.NET.
URLConnection con=url.openConnection();
con.setDoOutput(true);
con.setDoInput(true);
BufferedWriter out=new BufferedWriter(new
OutputStreamWriter(con.getOutputStream()));
out.write(str4);
out.close();
How can i read the output from a web page and store them in a buffer?
Thanks,
Klaus H. Probst - 15 Jul 2005 09:47 GMT
Look at the System.Net.WebClient class.

Signature
Klaus H. Probst, MVP
http://www.simulplex.net/
> Craig,
>
[quoted text clipped - 13 lines]
>
> Thanks,