程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> Asp.Net Mvc: Model Binding to Simple Types, Complex Types,……

Asp.Net Mvc: Model Binding to Simple Types, Complex Types,……

編輯:關於ASP.NET

Asp.Net Mvc: Model Binding to Simple Types, Complex Types, Collections, Dictionaries, Etc

環境:

Windows 2008, VS 2008 SP1, Asp.Net Mvc RC1

1. 簡單類型

這裡,我們將下面這個Book類稱為簡單類型:

public class Book

    {

        public int BookId { get; set; }

        public string BookName { get; set; }

        public string Author { get; set; }

        public DateTime PublishedDate { get; set; }

    }

假設現在需要實現添加Book的功能,那麼在BookController中,會定義如下的Action:

[AcceptVerbs(HttpVerbs.Post)]

        public ActionResult Create(Book book) {

            //TO DO

            //Insert book into Database

            return RedirectToAction("Index");

        }

現在的問題便是,在View中如何命名TextBox來達到自動綁定,如下:

<div>

        <%using (Html.BeginForm("Create", "Book")) { %>

        <div>

            Book Name: <%=Html.TextBox("BookName")%>

        </div>

        <div>

            Author: <%=Html.TextBox("Author")%>

        </div>

        <div>

            Published Date: <%=Html.TextBox("PublishedDate")%>

        </div>

        <div>

            <input type="submit" id="submit" name="submit" value="submit" />

        </div>

        <%} %>

    </div>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved