Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
1k views

Enforce Action Filter on all Controller Actions (C# / ASP.NET MVC)

I made a new action filter (attribute, similar to [Authorize]) which authorizes access to a controller action based on a session value. However, I'm basically decorating all my controller actions with ...
4
votes
1answer
365 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
191 views

ASP.NET MVC: Enforce AJAX request on an action

I'm looking for a way to enforce a controller's action to be accessed only via an AJAX request. What is the best way to do this before the action method is called? I want to refactor the following ...
2
votes
1answer
324 views

How do I use CoffeeScript in Rails?

In my controller's create action, I have the following: def create @article = Article.find(params[:id]) respond_to do |format| if @comment.save format.js { render 'success.js' } ...
2
votes
2answers
302 views

How to support multiple forms that target the same Create action on the same page?

I want to have two separate forms on a single create page and one action in the controller for each form. In the view: <% using (Html.BeginForm()) { %> // Contents of the first ...
2
votes
2answers
234 views

Using a .NET MVC Controller Action as the Source for an HTML <img>

I'm trying to display the picture associated with a user in my database (the picture field's data type is image) on a page - unfortunately the code below fails to do that. HTML <img ...
2
votes
2answers
267 views

Using a filter to execute a different action?

I want to avoid having lots of if Request.IsAjaxRequest() in my controllers. I was thinking that if I could condense this logic to an ActionFilter it would be easy to adopt a convention in my ...
1
vote
1answer
256 views

Html.Action - Get versus Post

I do this very often: <div id='Product'> @Html.Action("Create", "Product") </div> it's convenient because I can delegate the painting of a production creation form to another controller ...
0
votes
3answers
64 views

ASP.NET MVC3 : ActionMethod with same name and different arguments for List and Details view

I have a ProdcutsController where i have 2 Action methods. Index and Details. Index will return list of products and Details will return details of a selected product id. So my urls are like ...
0
votes
1answer
40 views

Specifiying asp.net action inside the JS code

I am building a html table inside my JS code and I need to have something like <a href="link goes here">click on me</a> The inside of the a href needs to point to a controller action. ...
0
votes
1answer
56 views

Grails - Render a template by email

I have a controller's method which renders a template. This works fine to render the template within my .gsp view. I am also using the mail-plugin, and I would like to used the same controller's ...
0
votes
1answer
107 views

Post mvc3 table to controller action

I have a simple table @using (Html.BeginForm("Save", "Subscription", FormMethod.Post)) { <table> <tr> <th> Name </th> ...
0
votes
1answer
96 views

Is a ASP.NET MVC controller action faster/more efficient than a HttpHandler?

I'm trying to create a simple lightweight server side redirect which inspects the client's User-Agent and redirects to a website for a given browser. For example: ...
0
votes
1answer
166 views

RedirectToAction redirects with query parameters?

I am working on a ASP.NET MVC application and have ran in to a strange thing. I got two controller actions like this: [CustomAuthorize(Roles = SiteRoles.Admin)] public ActionResult Review(int? id) ...
0
votes
2answers
212 views

Zend Framework: How to call a Function (not a Controller Action) using ajax?

Assume that I have a public function in IndexController called test(): public function test(){ //some code here } In index.phtml view file, I want to use JQUERY AJAX to call test() function but ...
0
votes
2answers
407 views

Pass data from controller action helper to view automatically in Zend Framework

I have created an actionHelper with a preDispatch function. I want this preDispatch to send some data to my view. Any idea how I can achieve this?
0
votes
1answer
76 views

After calling URL “/article/1234abcd” how to retrieve the value `1234abcd` from inside the `article` action?

@RequestMapping(value = "/article", method = RequestMethod.GET) public final String article(final ModelMap model) { } If this is called using the address: /article/1234abcd How can the value ...