码迷,mamicode.com
首页 > 其他好文 > 详细

关于区域的使用

时间:2020-02-12 18:35:55      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:name   event   主程   dex   option   pen   add   nal   lin   

技术图片

1.  员工1作为区域的代码     添加一个UserOnePAreaRegistration的区域类

2.区域类的代码:

  

技术图片
using System.Web.Mvc;

namespace 员工1.Areas.UserOneP //程序集  区域块  区域  
{
    public class UserOnePAreaRegistration : AreaRegistration
    {
        public override string AreaName
        {
            get
            {
                return "UserOneP";
            }
        }

        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "UserOneP_default",
                "UserOneP/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional },
                new string[1] { "员工1.Controllers" }  // 添加区域控制器命名空间
            );
        }
    }
}
区域类代码

3.区域控制器的控制器代码:

  

技术图片
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace 员工1.Controllers
{
    public class UserOneController : Controller
    {
        //
        // GET: /UserOne/

        public ActionResult Index()
        {
            return View();
        }

    }
}
View Code

4.技术图片

5.主程序中添加区域控制文件夹 如上图

6.主程序Areas中添加区域的视图      

  技术图片

7.主程序添加区域的程序集引用

8.测试 http://localhost:26765/UserOneP/UserOne/Index

 

关于区域的使用

标签:name   event   主程   dex   option   pen   add   nal   lin   

原文地址:https://www.cnblogs.com/xiaoyangshu/p/12299755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!