I am Developed a Desktop application in Visual Basic 2008 for displaying website.
I used below XAML Code for my application
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" WindowState="Maximized" Width="975" Height="310">
<Grid>
<WebBrowser HorizontalAlignment="Left"
Margin="10,10,0,0"
VerticalAlignment="Top"
Source="http://xxxx.com/"
Name="MainBrowser"/>
</Grid>
</Window>
When running this application, it show scripting error ("An error has occurred in this script on page"). I think it asking permission to run script. I changed security settings in IE. But no luck. Because of this error, the website not displaying properly. Please help me to solve this.