I have view with parameters like reset password with parameter key
public ActionResult ResetPassword(string Email,string Key)
{
//Do some thing
return View();
}
and I am using forms authentication.
What I want is to allow unauthorized users to access this view.
The solution is to add location in web.Config and set allowOverride=”false” like
This solve my problem. Thanks all 🙂