Questions tagged [controller-action]
51 questions
1
vote
1 answer
URL-ROUTING for Asp.Net MVC Action parameter binding
I am using ASP.NET MVC 3 for the first time. I want to call a controller action with a single parameter. this parameter is an object, not a simple type. Let's say:
Controller = "Person",
Action="Add",
The single argument of this action is an…

minchiya
- 603
- 1
- 7
- 13
0
votes
1 answer
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
click on me
The inside of the a href needs to point to a controller action. The question is how do I do inside my JS?

sarsnake
- 26,667
- 58
- 180
- 286
0
votes
1 answer
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 function to render the template by email, hence…

Alexandre Bourlier
- 3,972
- 4
- 44
- 76
0
votes
1 answer
Post mvc3 table to controller action
I have a simple table
@using (Html.BeginForm("Save", "Subscription", FormMethod.Post))
{
Name | Report | …
---|