The tag has no wiki summary.

learn more… | top users | synonyms (3)

0
votes
1answer
15 views

Dynamically replacing content in views

I have a situation where our core project requires heavy templating. We have come up with a solution which should make the project very flexible, but I am unsure how to implement a solution. In ...
0
votes
0answers
18 views

how to send custom Actionfilter to view

I have never worked with actionfilter before so i dont really understand how to do it. I have created the controller which i think will work, but now i want to my _ViewStart.cshtml to call this ...
0
votes
0answers
20 views

Can I cache This actionfilter Database calls [closed]

public class SidebarData : ActionFilterAttribute { public override void OnActionExecuted(ActionExecutedContext filterContext) { ...
0
votes
1answer
16 views

working with Actionfilter

I have never worked with actionfilter so i dont really know how to use it, ive done som reseach but i dont completly understand it. But basicly im going to create a new controller, and i want my ...
0
votes
2answers
25 views

InitializeSimpleMembership filter issue

I have MVC 4 application with out of the box Simple Membership mechanism implemented. Recently I have discovered that every single time I call any of the controllers in my application ...
0
votes
1answer
22 views

action filter: redirect to logout and send a error msg

IM new to MVC, this is w I need to do: A person login to the app in 1 place (PC 1) Goes to a different PC and login again (without login off from PC 1) Someone try to use PC 1 PC 1 logoff A error ...
0
votes
3answers
53 views

Get User Name on Action Filter (WebAPI)

I use MVC4 web application with WebAPI. I want to create an action filter, and I want to know which user (a logged-in user) made the action. How can I do it? public class ModelActionLog : ...
1
vote
1answer
25 views

ActionFilter is not executing in WebApplication but executing in WebApi

I have created an ActionFilterAttribute public class LoggingNHibernateSessionAttribute : ActionFilterAttribute The purpose of the filter as name indicates is logging and opens and commits a ...
0
votes
1answer
24 views

Orchard CMS continues executing request after permanent redirect from IActionFilter

We have a website that uses Orchard CMS and we've written a "RedirectFilter" to do permanent redirects on legacy URLs (aliases that don't match the AutoroutePart pattern for the relevant Content ...
1
vote
1answer
29 views

Get ActionResult from ActionExecutingContext

I'm looking to get the action that caused OnActionExecuting() in an overridden ActionFilterAttribute. The idea is to save this in the session so the user can be redirected to their intended page after ...
1
vote
1answer
60 views

ASP MVC Filters, where implement interface or not?

Just wondering, googling around how to use filters in asp mvc 4. I have found some people defines them like this: public class CustomFilter : ActionFilterAttribute And some like this: public class ...
1
vote
1answer
125 views

ASP.NET MVC: Call one controller action from another, with ActionFilters applied

Take a look at the code below. When Get() calls Foobar() and Foobaz(), the ActionFilters that decorate Foobar() and Foobaz() are not invoked. How can I call these other two controller actions from ...
0
votes
0answers
42 views

Dependency Injection - Ninject MVC with Global Filters - Random issue

To follow up with the MVC Ninject for Filters posted in the SO question. http://stackoverflow.com/a/9079383/1292534 I have used the same method as described. But issue is sometimes the authService is ...
0
votes
2answers
52 views

Asp.net MVC AuthorizationFilter and AjaxRequests

I have an authorization filter class: public class ValidateSessionTokenFilter : IAuthorizationFilter { public void OnAuthorization(AuthorizationContext filterContext) { if ...
1
vote
1answer
313 views

C# MVC4 ActionResult ActionFilter for FormCollection

I have the following ActionResults and one is meant to be an override of the other that accepts a FormCollection as a parameter. [HttpPost] public ActionResult PartialAverageDisplay() { ...
0
votes
0answers
102 views

Action filter attribute- “outputstream is not available when a custom textwriter is used”

I would need to modify the response of each Render.Action replacing with a Regex each "a" with a "b". I used the following action filter to do this: /// <summary> /// /// </summary> /// ...
0
votes
1answer
30 views

Explicit convert from object in ActionFilter

The goal is to create a ActionFilter to save all your contacts automatically. Code: ViewModels Origem is used to identify the view source of contact was saved (in this case only two views contato ...
1
vote
1answer
65 views

ASP.NET MVC 4.0 GolbalFilter for page request

I want to capture site traffic in my ASP.NET MVC 4.0 website. I have done this My Base Controller: public class BlogActionFilterAttribute : ActionFilterAttribute { public ...
0
votes
1answer
61 views

Checking object access using ActionFilters

I have been happily using a BaseController class with a custom ActionFilterAtribute, overriding OnActionExecuting(). I use this BaseController class for all my controllers as a convenient way of ...
1
vote
0answers
101 views

Log out user from mvc global filter?

My MVC app is using FormsAuthentication. I'm trying to store a small amount of information in the FormsAuthenticationTicket cookie. My approach is based on Ahmad Abu Raddad's solution in ...
1
vote
1answer
118 views

ASP.NET MVC - How can I get the Namespace In Custom Authorization Filter?

I have to implement the Custom Authorization Filter. (for check Is Authorized, need Namespace, Controller Name, And Action Name) I don't manage to Get the Namespace. Here's my code: ...
0
votes
2answers
216 views

How to filter requests for access code in Play 2.1

I'd like to add a (per method / global) filter to requests, that simply rejects (404/403 page) any request that doesn't have a specific URL parameter. I know Play has one-two mechanism to do this ...
1
vote
0answers
99 views

ASP.NET MVC - Response.Filter is null when using ActionFilterAttribute in RegisterGlobalFilters()

I want to use G-ZIP on my website, I googled the following code: public class CompressAttribute : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext ...
3
votes
1answer
20 views

Miss-matching orders in ActionFilter in mvc over three dlls

I have three Namespaces and In that I have three different individual Action Filter Providers for detecting the controller and Action method like : Namespace1- ActionFilterProvider1-ActionFilter1 ...
1
vote
2answers
64 views

Dynamically register custom ActionFilter on ActionMethod with shared name

I'm building a NopCommerce plugin and want to register a custom ActionFilter with a FilterProvider on an ActionMethod that has shared ActionName with other methods. Here are two of the ActionMethods ...
0
votes
1answer
769 views

Asp.net web api post action parameters

I'm currently writing a little application consisting of a mvc web api server and mvc 4 client, I've faced a problem, that is eating my mind for several days already. I have a ContactsController, ...
1
vote
1answer
55 views

How break chain of action filter

I have 2 action filter: [Auth] [Check] public ActionResult Home() { //... } I need set CheckAttr first work and break AuthAttr. I do not remember how to do it. Please help me. example: request ...
1
vote
1answer
55 views

Use Samsung Comic Fun Filter from Samsung in SDK

I'm looking for a possibility to use the Samsung Comic Fun Filter in my Android App. Is there a possibility to do this? Or is this exclusive for the Samsung apps?
0
votes
1answer
51 views

webapi actionfilters, how to inject a value when using different argument types that inherit from a base type

I have a base request type.. class RequestBase { public string inputId; public string derivedid; } and types that inherit .. class RequestA : RequestBase { public string name; } and ...
1
vote
2answers
191 views

MVC4 WebAPI filters: any way to stub Filter.Order?

I have two filters added to a WebAPI controller: [FooFilter] [BarFilter] public IQueryable<SomeEntity> GetSomething() { ... Unfortunately, they are being executed in random order. For ...
0
votes
2answers
195 views

ActionFilter not firing at Method level in Base Controller…works at Class Level

MVC 4 I have an action filter that I want applied only to the Index and Edit methods in my base controller, but the action filter does not fire when I apply it to the Index and Edit methods. It DOES ...
0
votes
1answer
141 views

ActionFilter - OnActionExecuted is called AFTER Json result returned

I'm creating a plugin within another framework, so I don't have ability to change the controller. I have an Actionfilter making changes to the model in OnActionExecuted. This works fine when the ...
1
vote
0answers
49 views

unit testing actionfilter on mvc

i try to write a unittest for actionfilter. i wrote some code but i didn't know if it is true or not. my action result code is below: public override void OnActionExecuting(ActionExecutingContext ...
0
votes
1answer
181 views

Common action filter or HttpModule for asp.net MVC web service

We have a web service written in MVC 1.0. There is a need to intercept every request being made to this service. In this case is it wise to develop a HTTPModule which intercepts every request and ...
2
votes
1answer
526 views

return status code Unauthorized for custom IActionFilter in WebAPI

I am working with asp.net WebAPI and I need to create a custom ActionFilter that does a quick check to see if the user requesting the URI should actually be able to get data back. They have already ...
0
votes
1answer
100 views

How to filter and compress output HTML in MVC3?

In my MVC3 project all the pages have the following HTML as output <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>My app</title> ...
0
votes
1answer
137 views

MVC3: Grouping Action Filters or calling Action Filters from other action filters

I'm trying to write an attribute class that can be used on all my "admin" actions which then effectively applies all relevant action/auth filters to that action. For instance, I always apply the ...
1
vote
1answer
246 views

Why model binding happens earlier than filters

After going this excellent blog post by Simon I came to know that model binding happens earlier than filters execution (even before authorization filters). If the request is not authorized then it ...
0
votes
1answer
631 views

Authorisation Action Filters for WebAPI

I have an MVC 4 solution which I have been applying authorisation action filters onto various controllers to some additional checks before allow access through to certain controllers. public class ...
0
votes
1answer
177 views

How can i return Json Reslut + Web api + validate model + actionfilters +OnActionExecuting method

string message = string.Empty; public override void OnActionExecuting(HttpActionContext actionContext) { var modelState = actionContext.ModelState; if (!modelState.IsValid) actionContext.Response ...
2
votes
2answers
559 views

filter listview with image and text view using custom adpater

I have a listview in my app, which looks like this: --img-- --ArrayListItems(names)--- ---TextView---- I am using Action bar sherlock with search view to make the app reverse compatible. I am using ...
0
votes
0answers
77 views

Handling multiple writes for HttpRequestBase.Filter

I am writing a JSON-P response filter for ASP.NET MVC 4 to allow using the Razor engine to render my views but encapsulate the HTML in a JSON-P response. I am approaching this by using an ...
6
votes
2answers
129 views

Retrieve a complex object from ActionParameters

I am working on an MVC project where controller actions deal with Assets. Different controllers take in the assetId parameter in different way: Some controllers simply get int assetId, other int id, ...
2
votes
2answers
304 views

Change culture before ModelBinder is used

I want to create a website in different languages. I already read that I could create an ActionFilter, but I have a litte problem: I had to create a custom ModelBinder in order to work with english ...
3
votes
1answer
2k views

Register global filters in ASP.Net MVC 4 and Autofac

I have a filter like this one: public class CustomFilterAttribute : ActionFilterAttribute, IAuthorizationFilter { public MyPropery Property { get; set; } .... } I need it to be run for ...
1
vote
2answers
213 views

ASP MVC 4 - caching action filters

I have a simple action filter attribute that checks if user is currently online: public class CheckForOnlineAttribute : ActionFilterAttribute { public override void ...
2
votes
0answers
254 views

ActionExecutingContext - ActionParameters vs RouteData

Given the following code: public class MyActionFilter : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { var a = ...
1
vote
1answer
294 views

Ninject Authorization vs Action Filter binding order

I have 2 filters I'm trying to apply using Ninject's BindFilter<> syntax, and they are being applied with their dependency injection successfully. The problem lies in the fact that the one sorts ...
0
votes
0answers
30 views

Can I access an ActionFilter from a helper?

I have an actionfilter applied to an action. Its checking for a flag and redirects to a different view if the flag is set to true. This works well if a user navigates to the action. I have an html ...
4
votes
2answers
1k views

Why is my ASP.NET Web API ActionFilterAttribute OnActionExecuting not firing?

I'm trying to implement what's seen here: http://www.piotrwalat.net/nhibernate-session-management-in-asp-net-web-api/ but I'm having an issue with my NhSessionManagementAttribute. I've set ...

1 2 3 4 5 6