I want to create a view that has different displays according to the role the user is in.
Should I create a different view for different roles or should I check the
Yeah that was something that was bothering me as well ... but at the same time it seems ridiculous to load whole different view for such a small change.
btw how did you set this up in your controller. Right now, my controller looks something like the code below, which I don't think is correct.
[Authorize(Roles = "Admin, Member")]
public ActionResult RegistrationInformation()
{
return View();
}