這節我們讓ASP.NET MVC真正的跑起來
一、新建Controller
首先我們自己新建一 個新的Controller在Controllers上點右鍵,添加,Controller選項
之後出現一個對話框:
這裡我們將 之起名為EiceController
附注一下,這裡是個純廣告,無興趣可略過此行:www.eice.com.cn 為您建立Web2.0社交網站
默認生成的代碼如下:
//記不記得前面講過的,所有 Controller都要繼承於Controller類
public class EiceController : Controller
{
public ActionResult Index()
{
return View();
}
}