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

Re: Open Specific URL from Windows Desktop by Matt

Matt
Fri Mar 02 03:53:35 CST 2007

On 2 Mar, 06:33, "waheed iqbal" <wiq...@sigmaflow.com> wrote:
> 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