Hi,
I'm dealing with problem, that totally stopped my development.
I would like to show html page in WebView control. I download data from server, save them to LocalFolder and use this piece of simple code
string url = "ms-appdata:///local/FolderWithPageData/index.html";
WebView.Navigate(new Uri(url));
Index.html uses files that are downloaded in separated folders (css, js, pictures, fonts etc.). WebView can't load them and shows only plain text of index.html body.
I tried to explore what is happening and I found one solution. To turn off Security level (or disable protected mode) in IE. After this change in IE setting everything start to work, but I would like to have Security level in IE allowed. Another point is,
that my app should regardless all settings in IE.
I read one solution to save files in installation folder of my Windows store app, but I don't like this solution so much.
Please, can you help me?
Thanks.