I'm wanting to require that all users have some additional information filled out before they proceed to ANY section of the site that requires authentication.
If possibly I'm wanting to catch on [Authorize]
annotations, but ignore any @User.IsInRole("something")
Is there a method that I can override in Global.asax
or ?
I'm only hoping to grab the annotations because my only use for .IsInRole()
is to display different info to them and I want the links there so they actually see what is needed to get to the annotations. Hope this makes sense (kinda tired).