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.
 

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