I have a controller to show up a model (User) and want to create a screen just with a button to activate. I don't want fields in the form. I already have the id in the url. How can I accomplish this?

link|improve this question

63% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You could use a hidden field inside the form:

<% using (Html.BeginForm()) { %>
    <%= Html.HiddenFor(x => x.Id) %>
    <input type="submit" value="OK" />
<% } %>

or pass it in the action of the form:

<% using (Html.BeginForm("index", "home", 
    new { id = RouteData.Values["id"] }, FormMethod.Post)) { %>
    <input type="submit" value="OK" />
<% } %>
link|improve this answer
But i cant have httpost and httpget with same paramets, can you show the sample for .cs too ? – waldecir Dec 13 '10 at 13:17
@waldecir, no, you can't have two controller actions with the same arguments. You will need to modify the signatures of either your GET or POST action. – Darin Dimitrov Dec 13 '10 at 13:23
Yes i know. my firt page is a get with id to show the infos about user, so i need a post to activate/deactivate, how would be the httppost call? – waldecir Dec 13 '10 at 13:25
1  
@waldecir, you have two possibilities: either rename your controller action to make the compiler happy and still use the [ActionName("Index")] along with the [HttpPost] attribute to make this action accessible with the same name as the GET action, or add some dummy action parameter to it. – Darin Dimitrov Dec 13 '10 at 13:28
Thnkx very much, i thinkg the best option is create a new action, and use the second solution with routes, sice i dont need any model information, do you agree? – waldecir Dec 13 '10 at 13:34
show 1 more comment
feedback

The easiest way for such simple situation is to give a name to submit button and check in action if it has value or not. If it has the value, then it Post action, if not, then it Get action :

<% using (Html.BeginForm("index", "home", 
    new { id = RouteData.Values["id"] }, FormMethod.Post)) { %>
    <input type="submit" value="OK" name="btnActivate" />
<% } %>

For Cs you can combine get and post controller methods in one:

public ActionResult Index(int? id, string btnActivate)
{
        if (!string.IsNullOrEmpty(btnActivate))
        {
            Activate(id.Value);
            return RedirectToAction("NextAction");
        }

    return View();
}
link|improve this answer
feedback

A bit late to the party on this but I found an easier solution to what I think is a fairly common use-case where you prompt on GET ("are you sure you want to blah blah blah?") and then act on POST using the same argument(s).

The solution: use optional parameters. No need for any hidden fields and such.

Note: I only tested this in MVC3.

    public ActionResult ActivateUser(int id)
    {
        return View();
    }

    [HttpPost]
    public ActionResult ActivateUser(int id, string unusedValue = "")
    {
        if (FunctionToActivateUserWorked(id))
        {
            RedirectToAction("NextAction");
        }
        return View();
    }

On a final note, you can't use string.Empty in place of "" because it must be a compile-time constant. And it's a great place to put funny comments for someone else to find :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.