How to call a jsp page from my C# program?

  • Thread starter Thread starter Linda Chen
  • Start date Start date
L

Linda Chen

I need to call a jsp page from my C# code and pass same
parameters to it, can any one tell me how to do that?

Thanks.

Linda Chen
 
Linda Chen said:
I need to call a jsp page from my C# code and pass same
parameters to it, can any one tell me how to do that?

Use WebRequest, WebClient etc just as if you were fetching the contents
of any other page. See the docs for WebClient, WebRequest and
HttpWebRequest for more details and examples.
 
Back
Top