Best practice question
I'm working on an application that has a main page where the user must log in and after this, gains access to other pages within the application. This all works okay.
However, if the user does not log in (bypasses the main page) by entering the full url in the address bar or by using a saved favourite, I would like this trapped and the user be automatically sent to the main page.
I would like to do this either in the constructor (could be bypassed by loading the page twice) or in each of the getXXX properties.
Can I initiate a navigation event from either of these locations?
Is there a better way to handle this?

