I have these pages:
- _PageStart.cshtml
- Index.cshtml
Login.cshtml
.
.
.
n. OtherPage.cshtml
Basically, I want to restrict a user from accessing all the pages when he is not logged in, with one exception, "Login.cshtml".
In my "_PageStart.cshtml", when a user is not logged in, the page is redirected to "Login.cshtml". Since "Login.cshtml" is requested, the "_Pagestar.cshtml" will run and will detect that the user is not logged in, as result, an infinite redirect will be created.
The question now is:
- Is "_PageStart.cshtml" the best place to put the redirect?
- If the answer in question one is yes, then how not to apply PageStart on a specific page?
- If the answer in question one is no, then where? Should I create a helper and put it in every page?