zoukankan      html  css  js  c++  java
  • MVC利用MvcHtmlString在后台生成HTML

    后台:

    /// <summary>
            /// 生成分类下拉-列表框,选中指定的项
            /// </summary>
            /// <param name="html"></param>
            /// <param name="selectedValue"></param>
            /// <returns></returns>
            public static MvcHtmlString SelectList_Category(this HtmlHelper html, long selectedValue)
            {
                Data.IRepository _iRepository = new Data.DataRepository();
                StringBuilder sb = new StringBuilder();
                sb.Append("<select name='Category' id='Category'>");
                foreach (var i in _iRepository.GetModel<Category>())
                {
                    if (i.ID == selectedValue && selectedValue != 0)
                        sb.AppendFormat("<option value='{0}' selected='selected'>{1}</option>", i.ID, i.Name);
                    else
                        sb.AppendFormat("<option value='{0}'>{1}</option>", i.ID, i.Name);
                }
                sb.Append("</select>");
                return MvcHtmlString.Create(sb.ToString());
            }
            /// <summary>
            /// 生成分类下拉列表框
            /// </summary>
            /// <param name="html"></param>
            /// <returns></returns>
            public static MvcHtmlString SelectList_Category(this HtmlHelper html)
            {
                return SelectList_Category(html, 0);
            }

    前台调用:

    @Html.SelectList_Category()
    

    我们从代码中可以看到,这个扩展方法其实是对ViewPage页面类上的HtmlHelper对象进行的扩展,它的对象名称是Html,所以在继承了ViewPage或者ViewUserControl的页面中,都可以使用SelectList_Category这个扩展方法

    原文:http://www.cnblogs.com/lori/archive/2012/03/05/2381196.html

  • 相关阅读:
    Springboot使用ehcache缓存
    Tomcat启用HTTPS协议配置过程
    细说document.ready和window.onload
    科技创新
    SpringBoot的ApplicationRunner
    禁用Chrome的“请停用以开发者模式运行的扩展程序”提示
    论文排版问题
    mathType换行等号对齐
    内部类调用外部类的成员,同名时怎么调用?
    Tomcat的manager app管理web项目
  • 原文地址:https://www.cnblogs.com/zhangs1986/p/4048364.html
Copyright © 2011-2022 走看看