Okay I\'m very new to C# and i\'m trying to create a little website using ASP MVC2.
I want to create my own authorization attribute. but i need to pass some values i
You get it from Request.Form
public class CustomAuthorizeAttribute : AuthorizeAttribute { protected override bool AuthorizeCore(HttpContextBase httpContext) { //httpContext.Request.Form["groupid"] return base.AuthorizeCore(httpContext); } }