Outlook Addin WebView

  • Thread starter Thread starter jiramot
  • Start date Start date
J

jiramot

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
 
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.
 
Back
Top