按钮不会回发

Her*_*ren 3 asp.net-mvc postback webforms

为什么我的按钮拒绝在我的超小型学习ASP.Net MVC应用程序中进行回发?

〜/博客/ Post.aspx

<h2>Post</h2>
<fieldset>
<legend>Blog message</legend>
<%using (Html.BeginForm())
  { %>
    <p>
        <label for="EntryTitle">Title:</label><br />
        <%= Html.TextBox("EntryTitle") %>
    </p>
    <p>
        <label for="EntryMessage">Message:</label><br />
        <%= Html.TextArea("EntryMessage") %>
    </p>
    <p>
        <input type="button" value="Post!" />
    </p>        
<%} %>
</fieldset>
Run Code Online (Sandbox Code Playgroud)

〜/控制器/ BlogController.cs

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Post(FormCollection collection)
    {            
        return View();
    }
Run Code Online (Sandbox Code Playgroud)

我不明白,我错过了什么?:○

Ray*_*gus 8

更改type="button"type="submit".