2009-06-28 111 views
3

我想通過我的web應用程序創建站點縮略圖,所以我想我會使用WebBrowser控件。但是,我得到一個錯誤:在ASP.NET應用程序中使用Web瀏覽器控件

System.Threading.ThreadStateException: ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is not in a single-threaded apartment.

我嘗試設置當前線程:

Thread.CurrentThread.ApartmentState = ApartmentState.STA

但是這並沒有幫助。

是不是可以在ASP.NET中使用WebBrowser控件?

回答

相關問題