資源簡介
MVC簡單例子C#,簡單易懂 MVC簡單例子C#,簡單易懂 MVC簡單例子C#,簡單易懂

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Web.Mvc;
using?System.Web.Routing;
namespace?FirstMvc
{
????//?注意:?有關啟用?IIS6?或?IIS7?經典模式的說明,
????//?請訪問?http://go.microsoft.com/?linkId=9394801
????public?class?MvcApplication?:?System.Web.HttpApplication
????{
????????public?static?void?RegisterRoutes(RouteCollection?routes)
????????{
????????????routes.IgnoreRoute(“{resource}.axd/{*pathInfo}“);
????????????routes.MapRoute(
????????????????“Default“?//?路由名稱
????????????????“{controller}/{action}/{id}“?//?帶有參數的?URL
????????????????//new?{?controller?=?“Home“?action?=?“Index“?id?=?UrlParameter.Optional?}?//?參數默認值
????????????????new?{?controller?=?“Member“?action?=?“Index“?id?=?UrlParameter.Optional?}//自定義路由規則
????????????);
????????}
????????protected?void?Application_Start()
????????{
????????????AreaRegistration.RegisterAllAreas();
????????????RegisterRoutes(RouteTable.Routes);
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????9728??2012-03-30?22:48??Mvc\FirstMvc\bin\FirstMvc.dll
?????文件??????24064??2012-03-30?22:48??Mvc\FirstMvc\bin\FirstMvc.pdb
?????文件????????435??2012-03-30?22:07??Mvc\FirstMvc\Content\Site.css
?????文件???????2789??2012-03-30?22:38??Mvc\FirstMvc\Controllers\MemberController.cs
?????文件???????5971??2012-03-30?22:48??Mvc\FirstMvc\FirstMvc.csproj
?????文件???????1087??2012-03-30?22:48??Mvc\FirstMvc\FirstMvc.csproj.user
?????文件????????100??2012-03-30?22:07??Mvc\FirstMvc\Global.asax
?????文件???????1084??2012-03-30?22:38??Mvc\FirstMvc\Global.asax.cs
?????文件???????1725??2012-03-30?22:31??Mvc\FirstMvc\Models\Member.cs
?????文件???????8683??2012-03-31?00:05??Mvc\FirstMvc\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
?????文件????????411??2012-03-30?22:39??Mvc\FirstMvc\obj\Debug\FirstMvc.csproj.FileListAbsolute.txt
?????文件???????9728??2012-03-30?22:48??Mvc\FirstMvc\obj\Debug\FirstMvc.dll
?????文件??????24064??2012-03-30?22:48??Mvc\FirstMvc\obj\Debug\FirstMvc.pdb
?????文件???????9244??2012-03-31?00:03??Mvc\FirstMvc\obj\Debug\ResolveAssemblyReference.cache
?????文件???????1342??2012-03-30?22:07??Mvc\FirstMvc\Properties\AssemblyInfo.cs
?????文件?????246993??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件?????169873??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????78930??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????50562??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????46080??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????33425??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件?????323644??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件?????108247??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????22460??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????13034??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????44766??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件??????20629??2012-03-30?22:07??Mvc\FirstMvc\sc
?????文件???????2953??2012-03-30?23:22??Mvc\FirstMvc\Views\Member\Index.aspx
?????文件???????1537??2012-03-30?22:07??Mvc\FirstMvc\Views\Web.config
?????文件???????1816??2012-03-30?22:31??Mvc\FirstMvc\Web.config
............此處省略23個文件信息
評論
共有 條評論