Reputation: 233
I have a portal with BackEnd and FrontEnd sides. I use skin A for BackEnd, skin B for FrontEnd. I create a page P1 on FrontEnd and then drag a module with two controls:
When P1 is shown up, the skin B is loaded correctly (Skin of FrontEnd). But when i click on an item, the skin A is loaded (Skin of BackEnd). I don't know why and how to solve this problem.
This is link of all Item: http://dnndev.me/vi-VN/dich-vu/cateid/104
This is link of one item: http://dnndev.me/vi-vn/dich-vu/ctl/Display/mid/544/id/88
Thanks for your help :)
Upvotes: 1
Views: 53
Reputation: 63126
With DNN, when you load a secondary control the site moves into "Isolation Mode". This isolation mode uses the "Edit Skin" as defined in the site settings, rather than the actual skin that is created. (It also removes all other modules from the page.)
To combat this, you might need to handle control switching on your own. (Without using the ctl or mid parameters that trigger Isolation Mode.
Upvotes: 1