Exception showing a erroneous web page in a WPF frame
- by H4mm3rHead
I have a small application where i need to navigate to an url, I use this method to get the Frame:
public override System.Windows.UIElement GetPage(System.Windows.UIElement container)
{
XmlDocument doc = new XmlDocument();
doc.Load(Location);
string webSiteUrl = doc.SelectSingleNode("website").InnerText;…