replacing webbrowser

  • Thread starter Thread starter Alcibiade
  • Start date Start date
A

Alcibiade

Hi to all, I need to use a webbrowser on my server(webservice) but it
cannot be used beacuse it's not a windows form.
I need to navigate among pages of external website, filling textbox
and logging (so i think it should support cookie)
How can i use instead of webbrowser?
Thanks a lot for your help ;)
 
Hi to all, I need to use a webbrowser on my server(webservice) but it
cannot be used beacuse it's not a windows form.
I need to navigate among pages of external website, filling textbox
and logging (so i think it should support cookie)
How can i use instead of webbrowser?
Thanks a lot for your help ;)

Since it's not for display, maybe you might want to look into
System.Net.WebClient.

HTH
 
Hi to all, I need to use a webbrowser on my server(webservice) but it
cannot be used beacuse it's not a windows form.
I need to navigate among pages of external website, filling textbox
and logging (so i think it should support cookie)
How can i use instead of webbrowser?
Thanks a lot for your help ;)

Or even System.Net.HttpWebRequest/HttpWebResponse.
 
Yeah... In a service environment, me too.

Ok....I've been looking for some example on the net for managing
cookie, login and https, but I am not able to loggin on the target
site.....does a class exist similar to webbrowser but i can use it on
server?Thanks
 
Back
Top