ASP.NET MVC 控制器
asp.net mvc - 控制器
為了學(xué)習(xí) asp.net mvc,我們將構(gòu)建一個(gè) internet 應(yīng)用程序。
第 4 部分:添加控制器。
controllers 文件夾
controllers 文件夾包含負(fù)責(zé)處理用戶輸入和響應(yīng)的控制類。
mvc 要求所有控制器文件的名稱以 "controller" 結(jié)尾。
在我們的實(shí)例中,visual web developer 已經(jīng)創(chuàng)建好了以下文件:homecontroller.cs(用于 home 頁面和 about 頁面)和accountcontroller.cs (用于登錄頁面):
web 服務(wù)器通常會(huì)將進(jìn)入的 url 請(qǐng)求直接映射到服務(wù)器上的磁盤文件。例如:url 請(qǐng)求 "http:///index.php" 將直接映射到服務(wù)器根目錄上的文件 "index.php"。
mvc 框架的映射方式有所不同。mvc 將 url 映射到方法。這些方法在類中被稱為"控制器"。
控制器負(fù)責(zé)處理進(jìn)入的請(qǐng)求,處理輸入,保存數(shù)據(jù),并把響應(yīng)發(fā)送回客戶端。
home 控制器
在我們應(yīng)用程序中的控制器文件homecontroller.cs,定義了兩個(gè)控件 index 和 about。
把 homecontroller.cs 文件的內(nèi)容替換成:
using system;
using system.collections.generic;
using system.linq;
using system.web;
using system.web.mvc;
namespace mvcdemo.controllers
{
public class homecontroller : controller
{
public actionresult index()
{return view();}
public actionresult about()
{return view();}
}
}
using system.collections.generic;
using system.linq;
using system.web;
using system.web.mvc;
namespace mvcdemo.controllers
{
public class homecontroller : controller
{
public actionresult index()
{return view();}
public actionresult about()
{return view();}
}
}
controller 視圖
views 文件夾中的文件 index.cshtml 和 about.cshtml 定義了控制器中的 actionresult 視圖 index() 和 about()。
相關(guān)文章
- ASP.NET Web Pages Razor
- ASP.NET Web Pages 布局
- ASP.NET Web Pages 對(duì)象
- ASP.NET Web Pages PHP
- ASP.NET Web 的 C# 和 VB 實(shí)例
- ASP.NET Web Pages WebSecurity 參考手冊(cè)
- ASP.NET Web Pages WebMail 參考手冊(cè)
- ASP.NET Razor C# 循環(huán)和數(shù)組
- ASP.NET Razor VB 變量
- ASP.NET MVC Web 應(yīng)用程序
- ASP.NET MVC 頁面和布局
- ASP.NET MVC 控制器
- ASP.NET MVC 安全
- ASP.NET Web Forms 教程
- ASP.NET 服務(wù)器控件
- ASP.NET 事件句柄
- ASP.NET Web 表單
- ASP.NET Button 控件
- ASP.NET ArrayList
- ASP.NET HTML 服務(wù)器控件