首页 > 代码库 > 第一个net-mvc程序

第一个net-mvc程序

结构

 

技术分享

 

视图层

技术分享

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server">    <title>ViewPage1</title></head><body>    <div>    <%: ViewData["Message"] %>  <!-----------相当于php-mvc里的模板标签----------->    </div></body></html>

 

控制层

技术分享

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace MvcApplication3.Controllers{    [HandleError]    public class HomeController : Controller    {        public ActionResult Index()        {            ViewData["Message"] = "欢迎使用 ASP.NET MVC!";            return View();        }        public ActionResult About()        {            return View();        }        public ActionResult ViewPage1()        {            ViewData["Message"] = "欢迎使用 ASP.NET MVC!";            return View();        }    }}

 

第一个net-mvc程序