I think that would depend on the particular Web site and how it handles
persisting state and if and how it accepts cookies. You might want to post
this on a group that deals with IE or Web programming to get more
information.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"jiramot" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi I am a newbie for deverlop c# and VSTO
>
> now i am try to create MAPIFolder and set a properties
>
>
> myFolder.WebViewOn = true;
> myFolder.WebViewURL = "http://localhost:8080/testform/";
>
>
> and i want to sent a cookie intro webrequest because that web site has a
> http BASIC authentication
>
> the first time in ThisAddIn_Startup() i am send a HttpWebRequest and I
> receive a cookie from HttpWebResponse
>
> when i click a myButton i want to access through the web (not want to see
> user password dialog again)
> How can i do.
> Thankyou