Start Page based on role

Hello Team,
I have created two pages in my application HomePageAdmin and HomePageStaff . I would like to display the application start page based on logged in user role. Ex: If the logged in user role is admin the user will be shown HomePageAdmin as start page and for user with staff role HomePageStaff will be shown.
Could you please guide me on how to implement this.
Thanks !

You can use a Navigate to Page action in the Load event of your page with Condition set that will check for the desired role e.g. ${Security.IsInRole("Admin")}

2 Likes

Thanks For Your Valuable Guidance!