Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
4k views

Handling session timeout in ajax calls

I'm making an ajax call using jquery to an asp.net mvc controller action: [AcceptVerbs(HttpVerbs.Post)] public ActionResult GetWeek(string startDay) { var daysOfWeek = ...
10
votes
4answers
1k views

ASP.NET MVC Beta Authorize attribute sends me to wrong action

Today I started playing with the MVC 3 Beta. Started with an application from default MVC 3 template, added a new action in the Home controller as follows(with a view for it) [Authorize] public ...
7
votes
1answer
1k views

A controller action which returns a partial view inserts the logon page when authorization fails

I have a view that loads a partial view from a controller action using jQuery. The controller action is decorated with the Authorize attribute and if the user has timed out when that action is called ...
5
votes
2answers
1k views

ASP.NET MVC: How to find Controllers with [Authorize] attributes using Reflection in C#? (or How to build Dynamic Site.Master Menus?)

Maybe I should back-up and widen the scope before diving into the title question... I'm currently writing a web app in ASP.NET MVC 1.0 (although I do have MVC 2.0 installed on my PC, so I'm not ...
5
votes
3answers
482 views

ASP.NET MVC AuthorizeAttribute passing values to ActionMethod?

I'm only a newcomer to ASP.NET MVC and am not sure how to achieve a certain task the "right way". Essentially, I store the logged in userId in HttpContext.User.Identity and have written an ...
5
votes
5answers
2k views

Is it possible to override the default behavior of [Authorize] in ASP.NET MVC?

I wondered if/how I can override the default [Authorize] behavior in ASP.NET MVC. I know that I can create a new Action Filter, make my own attribute and so forth; I am merely interested if I can ...
4
votes
3answers
1k views

asp.net MVC 3 applying AuthorizeAttribute to areas

I'm currently writing an Admin MVC 3 site, and each user only has access to certain parts of the site. The areas of my site are the same as the user Roles, so what I would like to do is the put the ...
4
votes
1answer
384 views

How to use Custom AuthorizeAttribute for controller utilizing parameter value?

I am trying to secure a controller action to prevent a user from accessing an Entity that they do not have access to. I am able to do this with the following code. public ActionResult ...
3
votes
2answers
240 views

Why can't I combine [Authorize] and [OutputCache] attributes when using Azure cache (.NET MVC3 app)?

Using Windows Azure's Microsoft.Web.DistributedCache.DistributedCacheOutputCacheProvider as the outputCache provider for an MVC3 app. Here is the relevant action method: ...
3
votes
1answer
144 views

ASP.Net MVC 3: Inverse Authorize Attribute

I have a simple ASP.Net MVC 3 application that has some controller and a good few actions. Now, as this is a user based application, most of the controller actions require the user to be ...
3
votes
1answer
419 views

OutputCache and Authorize filters in MVC3

I am reading a book about MVC2, and in the OutputCache section it states: Warning In the earlier section “How Authorization Filters Interact with Output Caching,” I explained that [Authorize] ...
3
votes
3answers
471 views

Question about [Authorize] Attribute for Administrators

If i have an Area in my ASP.NET MVC 3 (Razor) Web application, where all controllers derive from a base controller that looks like this: [Authorize(Roles="Administrator")] public class ...
3
votes
2answers
224 views

If current user isn't in role required by [Authorize], can I automatically redirect them?

In the ASP.NET MVC site I am building, I have some methods where the users who use them have to be in a certain role (as it happens, if they're not, it means that they're suspended from the site). To ...
2
votes
1answer
136 views

AuthorizeAttribute MVC - restrict access to user created content

So I read about how implementing your own authorization routines are bad! http://www.nashcoding.com/2011/02/05/using-the-forms-authentication-membership-provider-on-appharbor/ And I got scared, ...
2
votes
1answer
305 views

MVC3 Authorize: Is It Bad Form to Call an Authorized Action from another Action?

Is it required to use RedirectToAction when calling a controller action from another action? I currently just call them directly because I do not want them to return, and thus I bypass the Authorize ...
2
votes
2answers
251 views

Displaying a useful message when redirected to FormsAuthentication logon page with ASP.NET MVC

I want to make a custom AuthorizeAttribute that includes a Message property. The problem is, my FormsAuthentication redirects to the specified loginUrl. How can that View get access to the attribute's ...
2
votes
2answers
344 views

Is there a way to make AuthorizeAttribute respond with status code 403 Forbidden rather than a redirect?

If the user is not logged in and they request an action marked [Authorize], then the response is a redirect to the Account/LogOn action (status code 302 Found). Is there a way to make the response be ...
2
votes
1answer
237 views

Authorize filters vs Action Filters

i m using .NET mvc2 for my application. i want some custom authorization on my actions. i have googled a bit and there seems to be two options available. Impelement logic in onActionExecuting in ...
2
votes
1answer
208 views

Adding to ViewData[] collection from AuthorizeAttribute Extension

I wrote an extension class to customize my AuthorizeAttribute for my action methods and I'd like to be able to inject messages into my view when a certain condition is met. I"m using the below code ...
1
vote
0answers
48 views

ASP.Net MVC: Lock JSON Requests to within a site by HTTP_REFERER

Suppose I have an ASP.Net MVC site. How do I lock controller methods (perhaps with an Attribute on the Action) so that HTTP_REFERER must point to my site? To expand: I have many JSON actions on my ...
1
vote
1answer
83 views

Does this method do what it says it will do (prevent the page from being cached)?

private void PreventPageFromBeingCached(AuthorizationContext filterContext) { var cachePolicy = filterContext.HttpContext.Response.Cache; cachePolicy.SetProxyMaxAge(new TimeSpan(0)); } The ...
1
vote
1answer
117 views

Action filter execution order

I have created two classes that implements AuthorizeAttribute. One is used globally, and I set it on the Global.asax.cs: filters.Add(new FirstAuthorizeAttribute() { Order = 0 }); The other is ...
1
vote
1answer
619 views

ASP.NET MVC Global or BaseController ActionFilter to Execute Before OnAuthorization

In my application (ASP.NET MVC 3) I have a BaseController class that all my Controllers inherit and in that BaseController I have overridden the OnActionExecuting method to check to ensure a Session ...
1
vote
2answers
449 views

Authorize attribute not working

I wanted to add a simple login. So I thought the best way would be to add the credentials in a database and then query that and if the username and password mathches you get logged in. This is ...
1
vote
1answer
122 views

How can I pass data from an AuthorizeAttribute to the Controller?

I have created a custom AuthorizeAttribute which verifies some OAuth credentials that are sent inside the HTTP header. I am using some of these credentials to identify who is making the request. Once ...
1
vote
2answers
419 views

How to output the default 404 page within HandleUnauthorizedRequest

I have written a custom AuthorizeAttribute having an override of HandleUnauthorizedRequest. This override conditionally sets the response status code to 404 with: var response = ...
1
vote
1answer
390 views

Using LINQ and Reflection: How to query for all Classes with [Authorize] Attribute in my Assembly?

Currently, I'm trying to identify which "Controller" classes in my assembly have the [Authorize] attribute associated with them using Reflection and LINQ. const bool allInherited = true; var ...
1
vote
1answer
216 views

Display action-specific authorisation message for [Authorize] attribute

Is there a way to display an action-specific authorisation message for when an [Authorize] or [Authorize(Roles="Administrator")] attribute redirects the user to the sign-in page? Ideally, ...
1
vote
1answer
646 views

custom AuthorizeAttribute + custom SiteMapProvider related?

I have a custom SiteMapProvider (populated from database) and a custom AuthorizeAttribute (validates current users roles + requested page against Role_Page database) for controller classes. I have to ...
1
vote
1answer
179 views

AuthorizeAttribute extension for .net MVC…two problems/questions

my first question is, where do I put this custom extension so that it can be called rather than the default AuthorizeAttribute? I currently have created a new project that contains all of my business ...
0
votes
1answer
99 views

AuthorizeAttribute v Application_AuthenticateRequest

We want to authorize users and if they are authorized we want to add their roles and permissions to the user and add that to the IPrinciple We have 2 ways of doing this one is to do it in global.asax ...
0
votes
1answer
214 views

Mock presence of Authorize attribute

I was wondering how you could mock that a controller is decorated with the [Authorize] attribute in MVC3? I am using a custom membership provider. I would like to test that a controller been decorated ...
0
votes
0answers
85 views

Somehow [Authorize] is ignored by application

I have an ASP.NET MVC2 application deployed on 2 servers: preproduction and production. All controllers in this application are marked with [Authorize] attribute: namespace TMS.Controllers { ...
0
votes
0answers
108 views

OnAuthorization filter doesn't handle mandatory parameter as expected

My asp.net mvc 2 app requires a mandate parameter as part of all urls. (The mandate id will later help keeping seperate "virtuell installations" apart.) To make this work I added a route like this: ...
0
votes
1answer
212 views

ASP.NET MVC - Entending the Authorize Attribute

currently I use [Authorize(Roles = ".....")] to secure my controller actions on my ASP.NET MVC 1 app, and this works fine. However, certain search views need to have buttons that route to these ...
0
votes
2answers
300 views

How to have Global Authorization in asp.net mvc

I have been looking around but i don't see any spec for this, maybe i search a wrong keyword. But i'm here so i should ask something.. :) I'm familiar with Authorize Attribute, but I think it only ...
0
votes
0answers
582 views

ASP.NET MVC check role for user other then current

I have scenario: There is an employee which is in role TeamDirector. There is another one which is normal employee. Team Director is sick so he use our app to set that normal employee has all rights ...