How can I communicate with a WebPage?

  • Thread starter Thread starter Keith Smith
  • Start date Start date
Not sure what you are asking. You can definitely use the
HttpWebResponse/HttpWebRequest classes to request a webpage, however, the
content will be text based (such as HTML) which will need to be parsed.
 
You are looking to find out how to pass down parameters from one page to
another?
If so then you need to do:
Request.QueryString["report"].ToString() // to get the report variable
..... and so on
 
Keith,

Using a webpage to exchange data is always a problem, when there is one
little bit changed in that page you have a problem.

However there is a greath solution created for that WebServices.

I hope this helps

Cor
 

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