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

mvc 扩展htmlhelper

时间:2016-03-02 13:08:17      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

using System.Web.Mvc;

namespace System.Web.Mvc
{
    public static class HtmlExtend
    {
        public static string IsDelete(this HtmlHelper helper, int? txt)
        {
            switch (txt)
            {
                case 0: { return "可用"; }
                case 1: { return "不可用"; }
                default:
                    return "未知";
            }
        }
    }
}

mvc 扩展htmlhelper

标签:

原文地址:http://www.cnblogs.com/jinhaoObject/p/5234209.html

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