在C#的WebBrowser Control
中,對AJAX問題進行故障排除 > C#
有時會在Ajax呼叫中掙扎,導致令人沮喪的“您的請求正在處理”。這種行為與完整的IE瀏覽器顯著不同,該瀏覽器通常會無問題處理這些調用。>解決方案通常在於配置特徵控件,以更好地使
這是一個修改註冊表設置的函數:WebBrowser
>
"FEATURE_BROWSER_EMULATION"
>中使用:
><code class="language-csharp">private void SetBrowserFeatureControlKey(string feature, string appName, uint value) { using (var key = Registry.CurrentUser.CreateSubKey( String.Concat(@"Software\Microsoft\Internet Explorer\Main\FeatureControl\", feature), RegistryKeyPermissionCheck.ReadWriteSubTree)) { key.SetValue(appName, (UInt32)value, RegistryValueKind.DWord); } }</code>
為了確保在SetBrowserFeatureControl()
控制初始化之前應用這些更改,請在主體的構造函數中調用
<code class="language-csharp">private void SetBrowserFeatureControl() { // Avoid modifying settings in the Visual Studio debugger var fileName = System.IO.Path.GetFileName(Process.GetCurrentProcess().MainModule.FileName); if (String.Compare(fileName, "devenv.exe", true) == 0 || String.Compare(fileName, "XDesProc.exe", true) == 0) return; // Register necessary features (see detailed explanation below for a comprehensive list) // ... }</code>
>有關推薦的功能控制設置的完整列表以解決各種兼容性問題,請參閱此資源:WebBrowser
瀏覽器功能控制密鑰設置SetBrowserFeatureControl()
>這將為 >提供更強大的解決方案🎜>控制。
以上是為什麼我的C#WebBrowser控件掛在Ajax調用上,我該如何修復?的詳細內容。更多資訊請關注PHP中文網其他相關文章!