All,
I am using STA thread to open webbrowser control and then navigate to sharepoint site, now I am expecting authentication window to open but it does not come up. But when I create webbrowser control on main thread it will work fine. This is my code which I am using to create webbrowser control.
Thread th = new Thread(abc);
th.SetApartmentState(ApartmentState.STA);
th.Start();
void abc()
{
WebBrowser wb = new WebBrowser();
wb.DocumentCompleted += wb_DocumentCompleted;
wb.Navigate("http://amasud.sharepoint.com/");
Application.Run();
}