Open Specific URL from Windows Desktop

  • Thread starter Thread starter waheed iqbal
  • Start date Start date
W

waheed iqbal

i am using C#.net and i want to open a specific url using windows brwoser .
this is very easy to launch IE process and provide url .
But url required authentication and i need to provide this authentication
automatically. or can any body tell me how can i save password for specific
url programatically.

thanks
 
i am using C#.net and i want to open a specific url using windows brwoser .
this is very easy to launch IE process and provide url .
But url required authentication and i need to provide this authentication
automatically. or can any body tell me how can i save password for specific
url programatically.

thanks

Passwords can be included in the URI.

The structure/format of a URI is: protocol://[username[:password]@]host[:port]/path/file.ext#

So, for example: http://auser:mypassword@localhost/file.html
 
Back
Top