Reputation: 612
I am using a webbrowser control in my app. The control does not perform at all with ajax refresh panels, almost like it is preventing the partial-refresh to load. Is there something I am missing with this control? I really need it to work as part of my solution.
Upvotes: 0
Views: 394
Reputation: 15268
Scripts are disabled by default on the WebBrowser
control. Did you set the IsScriptEnabled
to true
?
<phone:WebBrowser x:Name="browser" IsScriptEnabled="True" />
Upvotes: 1