Hi,
Please find the following link to know more about the use of navigation to specified website with the web browser control in the window forms:
http://www.c-sharpcorner.com/UploadFile/mahesh/WebBrowserControl11102005042132AM/WebBrowserControl.aspx
http://www.dotnetcurry.com/ShowArticle.aspx?ID=49&AspxAutoDetectCookieSupport=1
and to set the proxy server details please check the sample code below:
WebProxy proxy = new WebProxy("http://proxy:80/", true);
proxy.Credentials = new NetworkCredential("userId", "password", "Domain");
result.Proxy = proxy;
//Set the login details
result.Credentials = GetCredentials();
//Do not keep alive (stateless mode)
result.KeepAlive = false;
for implementing the WebProxy class you have to include using System.Net namespace.
Please let me know if you have any issues.
Thanks & Regards,
Santosh
santosh kumar patro
Shabeer50, if this helps please login to Mark As Answer. | Alert Moderator