2012年11月6日 星期二

第一個jQuery Mobile範例–使用ASP.NET MVC 4 行動裝置範本

以下說明如何使用Visual Studio 2012 ,ASP.NET MVC 4 行動裝置範本設計第一個jQuery Mobile範例

1.Create Web AP

image

2.

image

3.在Models 目錄下加一個Employee  Class:

image

4.Employee  Class:

namespace MvcApplication6.Models {
  public class Employee {
    public int ID { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
  }
}

5.在Controllers目錄下加一個EmployeeController:

image

6.在EmployeeController使用GET的Create action 建立Create View:

image

 

image

7.修改有標示HttpPost的Create action:

[HttpPost]
public ActionResult Create( Employee model ) {
  try {
    // TODO: Add insert logic here

    return View( "Result" , model );
  } catch {
    return View();
  }
}

8.在上述步驟程式上方,按右鍵,建立Result View

image

9.按F5執行,URL輸入Employee/Create:

10.執行畫面:

image

按Create效果

image

 

11.在模擬器上效果。

image

image

沒有留言:

總網頁瀏覽量