I'm trying to show a partial view via calling Ajax.BeginForm, but I can't receive the values of my form(I need to get the value of hidden input, bookId, in controller, e.g 5).

// View

  @using (Ajax.BeginForm("Detail", "Books", new AjaxOptions { HttpMethod = "GET",         UpdateTargetId = "ShowBookDiv" }))
                                           { 
                                             <input type="hidden" id="bookId" value="5" />
                                             <input type="submit" id="sBtn" value="Details"  />
                                           }

// Controller

 [HttpGet]
        public ActionResult Detail(string bookId)
        {                               
            if (Request.IsAjaxRequest())    
            {
                var a = Request["bookId"].ToString();
               // some code to get details
                return PartialView("ShowBooks", details);
            }

... When I trace the code in Controller bookId is null!

link|improve this question

80% accept rate
look at the generated html ... how do you see the form? – Max Zerbini Sep 28 '11 at 7:23
feedback

2 Answers

up vote 0 down vote accepted

I've added the "name" property to hidden field and it works !!! really strange!

 <input type="hidden" name="bookId" id="bookId" value="5" />
link|improve this answer
its not strange at all. Attribute Name is what ModelBinder uses to bind form inputs to your model – Dmitry Mar 27 at 0:12
feedback

Ajax.BeginForm is a pain, IMO.

I would Use $.ajax from JQuery Ajax API :

http://api.jquery.com/jQuery.ajax

here is a good example for you to see how it works :

http://www.tugberkugurlu.com/archive/working-with-jquery-ajax-api-on-asp-net-mvc-3-0-power-of-json-jquery-and-asp-net-mvc-partial-views

Posting the whole form requires a little bit of work (in terms of validation, etc.) but you will have complete control over the action if you are good with JavaScript.

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.