我有一些澄清要清除MVC用户角色。我有一个页面可以访问某些用户,有些用户也无法使用这些页面。因此,我需要验证用户ID,检查该用户ID是否有权访问该页面。您能帮我解决一下我要验证的问题吗?
if (user id =access denied )
{
should be retrun error message that user cannot see this page
}
else
{
should access and show this page
}
你能帮我吗