Designing a Windows Forms application using C#, i am facing a problem. The application performs its functions smoothly when connected to the Internet but the real problem starts when we try the application in our College.
Our College connects to the Net using proxy gateways. The Proxy server is "192.168.120.5" and Proxy Port "8080".Every Student is given an unique user name and password.
How can i get ahead through this obstacle ?? Will using
WebRequest request = WebRequest.Create("http://www.mysite.com");
request.Proxy = new WebProxy("192.168.120.5", 8080);
help me in any way ?? . If yes, where do I enter the Username and Password Credentials
Thanks for helping out