Ruft den ausgewählten Wert einer DropDownList ab. Asp.NET MVC

Ich versuche, eine DropDownList auszufüllen und den ausgewählten Wert zu erhalten, wenn ich das Formular abschicke:

Hier ist mein Modell:

public class Book
{
    public Book()
    {
        this.Clients = new List<Client>();
    }

    public int Id { get; set; }
    public string JId { get; set; }
    public string Name { get; set; }
    public string CompanyId { get; set; }
    public virtual Company Company { get; set; }
    public virtual ICollection<Client> Clients { get; set; }
}

Meine Controller:

    [Authorize]
    public ActionResult Action()
    {
        var books = GetBooks();
        ViewBag.Books = new SelectList(books);
        return View();
    }

    [Authorize]
    [HttpPost]
    public ActionResult Action(Book book)
    {
        if (ValidateFields()
        {
            var data = GetDatasAboutBookSelected(book);
            ViewBag.Data = data;
            return View();
        }
        return View();
    }

Mein Formular:

@using (Html.BeginForm("Journaux","Company"))
{
<table>
    <tr>
        <td>
            @Html.DropDownList("book", (SelectList)ViewBag.Books)
        </td>
    </tr>
    <tr>
        <td>
            <input type="submit" value="Search">
        </td>
    </tr>
</table>
}

Wenn ich auf klicke, ist der Parameter 'book' in der Aktion immer null. Was mache ich falsch?

Antworten auf die Frage(2)

Ihre Antwort auf die Frage