Hello, i m using a webbrowser control in wpf to show a virtualearth map, but because i m developing behind a proxy of my company, every time i try to see the map, i have to inser my credetials, i would like to insert them automacly in the c# code, how can i achive that?
i alreadt try in the navigating event of the web broweser using:
void webBrowser_Navigating(object sender, NavigatingCancelEventArgs e) { //NetworkCredential credential = new NetworkCredential("u007239", "**", "**"); //e.WebRequest.Proxy.Credentials = credential;
}
But this dosent work because i m getting that e.webrequest is a null object.
all the help is welcome, best regards
RUi portugal