I have a MVC 3.0 application which 3 controllers and action methods in it. The application is login based. And once the user is authenticated he is landed on the homepage where he sees the 3 menu links which are mapped to the action methods of the three controller. The user can click the links or enter the url in the address bar and can navigate to the respective page.
But now the links have become role based like,
If IsProductPageAllowed=true then only user can see the ProductPage.
If IsMediaPageAllowed=true then only user can see the MediaPage.
I have handle the visiblity of the links easily in the HomePage view depending on the property valuetrue/false.
But was looking for a correct way to block the user of accessing the ProductPage if he enters the url in address bar directly and if the value is false. I can do this easily on each action method of the controller by checking the true false property and accordingly redirect to homePage if the value is false.
I was thinking of some better way to do this, like in Controller itself.
Thank you,
M.
