views:

205

answers:

2

My c# application opens the Internet explorer for different web URL/ domains. And I have all those credential information (username, password and domain name) stored in the database for each web application. Now how I can authenticate automatically without entering credential in “Network Credential” dialog box using code or bypass that dialog box? In other words I need to store those credential on system so no need to enter. I am using c#

A: 

You could use the http://user:[email protected]/somepage.html, but this will store the info a the browser's history.

Patrick Forget
A: 

Some time back, I was stumbled upon similar issue that I wrote about; see if it helps you.

KMan