第一个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();
        }
    }
}
原文地址:https://www.cnblogs.com/hellowzd/p/4271545.html