Equivalent to JSP Objects

  • Thread starter Thread starter Anbu
  • Start date Start date
A

Anbu

Hi,

I'm new to ASP .NET and I'm developing a web based tool to authenticate the
users. The existing application in JSP. I would like to know the ASP .NET
equivalent to the URL and URLConnection JSP Objects

Thanks,
 
Hi,

I'm new to ASP .NET and I'm developing a web based tool to authenticate
the
users. The existing application in JSP. I would like to know the ASP .NET
equivalent to the URL and URLConnection JSP Objects

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/d...en-us/cpref/html/frlrfsystemuriclasstopic.asp

System.UriBuilder (handy if you're munging a url together yourself)
http://msdn.microsoft.com/library/d...pref/html/frlrfsystemuribuilderclasstopic.asp

System.Net.HttpWebRequest and ...HttpWebResponse
http://msdn.microsoft.com/library/d...ml/frlrfsystemnethttpwebrequestclasstopic.asp

http://msdn.microsoft.com/library/d...l/frlrfsystemnethttpwebresponseclasstopic.asp
 
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,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top