Asp.Net4.5 mvc4 页面创建与讲解

一、Contorl

通过目录结构我们可以看到contorllers类的命名方式

命名规则:前缀+Controller.

在看看contorller中的action方法

复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace shuangFirstMvc.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewBag.Message = "修改此模板以快速启动你的 ASP.NET MVC 应用程序。";

            return View();
        }

        public ActionResult About()
        {
            ViewBag.Message = "你的应用程序说明页。";

            return View();
        }

        public ActionResult Contact()
        {
            ViewBag.Message = "你的联系方式页。";

            return View();
        }
    }
}
复制代码

每个方法都会通过“return view()”返回一个视图,我们理解为每一个方法名就代表一个视图页面

所以前台访问的路径为:http://域名/contorller前缀/action方法名,如http://http://localhost:40893/Account/Login

二、新建一个页面看看效果

效果:打开http://localhost:40893/Demo/demo,显示:这是我的第一个页面

首先在controllers中创建contorller,命名为DemoController

右击添加-控制器

然后在代码上写上

复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace shuangFirstMvc.Controllers
{
    public class DemoController : Controller
    {
        //
        // GET: /Demo/

        public ActionResult Index()
        {
            return View();
        }
        public ActionResult demo()
        {
            return Content("这是我的第一个页面");
        }
    }
}
复制代码

如果页面需要修饰,我们可以创建一个视图

新建文件夹Demo,然后在Demo下面创建demo.cshtml视图

复制代码
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>demo</title>
</head>
<body>
    <div>
        这是我的第一个页面
    </div>
</body>
</html>
复制代码

创建视图的时候首先创建文件夹,名字和contorller前缀一致,具体的页面名称要和action的方法名字一致,否则访问不成功

原文地址:http://www.cnblogs.com/shuang121/p/4018860.html


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值