How to send a http request (URL) from Window Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,

I need to send an URL request to a web server from my Window application.

e.g. http:\\serverA\IamAlive.asp

Unfortunately, the web server does not provide Web Service. I need to send
the URL directly. How can I do that?

Thanks for any help.

Tedmond
 
Hello Tedmond,
Dear All,

I need to send an URL request to a web server from my Window
application.

e.g. http:\\serverA\IamAlive.asp

URLs use forward slashes ;-)
Unfortunately, the web server does not provide Web Service. I need to
send the URL directly. How can I do that?

Have a look at System.Net.WebClient.

Cheers,
 
Back
Top