Need to enter data in the HTML pages without open that URL....

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi
I need to enter the data in the HTML Pages and then submit that page without
opening that URL it means programatically....so how to do that in .NET

is there any possiblity like doing this by loading that response of URL in
any object and then accessing the HTML response using the objects in it???

Or if there is ant other way to do this please help me out.....
 
Hello Gourav,

I would suggest looking at AJAX (Asynchronous Javascript and XML). This
would enable you to use the broswer to send HTTP requests to your web server
and receive a response without the need to refresh your browser of load another
page.
There are a number of publically available AJAX libraries for .NET.

Regards,
Andrew McNerlin
 
Gourav,
You can achieve it programmatically.You can use HttpWebRequest &
HttpWebResponse classes.
 
Back
Top