How to call IE pages!

  • Thread starter Thread starter CSharper
  • Start date Start date
C

CSharper

I have to write a program which needs to launch a web site hidden so
that it can initiate a task at the server side. Also I need to call a
web site to see the status without lunching the web site explicitly.
Is it possible to launch a web site and read the content of the html
page?
Thanks.
 
CSharper,

You will want to use the HttpWebRequest and HttpWebResponse (or if the
requests are really simple, the WebClient) classes. You would use these to
emulate the request to the server, and then get the response back.
 
CSharper,

    You will want to use the HttpWebRequest and HttpWebResponse (or if the
requests are really simple, the WebClient) classes.  You would use these to
emulate the request to the server, and then get the response back.

--
          - Nicholas Paldino [.NET/C# MVP]
          - (e-mail address removed)




I have to write a program which needs to launch a web site hidden so
that it can initiate a task at the server side. Also I need to call a
web site to see the status without lunching the web site explicitly.
Is it possible to launch a web site and read the content of the html
page?
Thanks.- Hide quoted text -

- Show quoted text -

Thanks a lot.
 

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