程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> Asp.net Mvc Framework 三 (Controller與View)

Asp.net Mvc Framework 三 (Controller與View)

編輯:關於ASP.NET

這節我們讓Asp.net MVC真正的跑起來

我們自己新建一個新的Controller

開始行動:

在Controllers中新建一個MVC Controller Class,個人宣傳一下.就叫EiceController

附注一下,這裡是個純廣告,無興趣可略過此行:www.eice.com.cn為您建立Web2.0社交網站

默認生成的代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication2.Controllers
{
  /**//// <summary>
  /// 記不記得前面講過的,所有Controller都要繼承於
  /// Controller類
  /// </summary>
  public class EiceController : Controller
  {
    public void Index(string id) {
    }
  }
}

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