コード例 #1
0
 /// <summary>
 /// Get Request of Create action
 /// Returns a Create view
 /// </summary>
 /// <returns></returns>
 public ActionResult Create()
 {
     ViewBag.StateId = new SelectList(cityMgr.GetAllState(), "StateId", "StateName");
     return(View());
 }