码迷,mamicode.com
首页 > Web开发 > 详细

MVC页面使用扩展HtmlHelper案例1

时间:2019-01-15 00:49:26      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:raw   rhel   ice   ext   turn   返回   stat   技术分享   head   

1.新建一个UserHelper 和  tb_User 类

public static class UserHelper
    {
        public static string UserShow(this HtmlHelper<tb_User> helper)
        {
            var user = helper.ViewData.Model;
            if (user.UserName == "dzw")
            {
                return string.Format("<div>我是{0}</div>", user.UserName);
            }
            else
            {
                return "<div>找不到</div>";
            }

        }
    }

2.controller返回视图

        public ActionResult IndexTwo()
        {

            return View(new tb_User { UserName = "dzw"});
        }

3.页面引用UserHelper相同的命名空间

@model MvcModelApp.Models.tb_User
@using MvcModelApp.Helper
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>IndexTwo</title>
</head>
<body>
    <div> 
        @Html.Raw(Html.UserShow())
    </div>
</body>
</html>

运行显示结果如下:

 技术分享图片

 

MVC页面使用扩展HtmlHelper案例1

标签:raw   rhel   ice   ext   turn   返回   stat   技术分享   head   

原文地址:https://www.cnblogs.com/dzw159/p/10269459.html

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