Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Out-of-browser specific settings do not affect in-browser applications

I've a couple of scenarios in my WP8 where I'm getting this exception message : "Out-of-browser specific settings do not affect in-browser applications." Both of these scenarios have async calls. I want to know in general when do I get such an exception, so that I understand what to look for whenever I get them. Is that possible to know or I need to describe my particular scenario?

like image 971
Aditya Avatar asked Nov 02 '22 19:11

Aditya


1 Answers

Unfortunately, this is a pretty generic message meaning you did something wrong with your XAML. If you're dynamically creating controls, review your code in detail to make sure you're doing it properly. For instance, as in my case, when assigning names to dynamically built controls, make sure each time you assign a different name if the same code is building multiple controls.

like image 105
Rob.Kachmar Avatar answered Jan 04 '23 14:01

Rob.Kachmar