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
 
Back
Top