MVC4下拉少数名族
List<SelectListItem> nationlist = new List<SelectListItem>()
{
new SelectListItem(){Value="汉族",Text="汉族"},
new SelectListItem(){Value="土家族",Text="土家族"},
new SelectListItem(){Value="蒙古族",Text="蒙古族"},
new SelectListItem(){Value="回族",Text="回族"},
new SelectListItem(){Value="苗族",Text="苗族"},
new SelectListItem(){Value="傣族",Text="傣族"},
new SelectListItem(){Value="僳僳族",Text="僳僳族"},
new SelectListItem(){Value="藏族",Text="藏族"},
new SelectListItem(){Value="壮族",Text="壮族"},
new SelectListItem(){Value="朝鲜族",Text="朝鲜族"},
new SelectListItem(){Value="高山族",Text="高山族"},
new SelectListItem(){Value="纳西族",Text="纳西族"},
new SelectListItem(){Value="布朗族",Text="布朗族"},
new SelectListItem(){Value="阿昌族",Text="阿昌族"},
new SelectListItem(){Value="怒族",Text="怒族"},
new SelectListItem(){Value="鄂温克族",Text="鄂温克族"},
new SelectListItem(){Value="鄂伦春族",Text="鄂伦春族"},
new SelectListItem(){Value="赫哲族",Text="赫哲族"},
new SelectListItem(){Value="门巴族",Text="门巴族"},
new SelectListItem(){Value="白族",Text="白族"},
new SelectListItem(){Value="保安族",Text="保安族"},
new SelectListItem(){Value="布依族",Text="布依族"},
new SelectListItem(){Value="达斡尔族",Text="达斡尔族"},
new SelectListItem(){Value="德昂族",Text="德昂族"},
new SelectListItem(){Value="东乡族",Text="东乡族"},
new SelectListItem(){Value="侗族",Text="侗族"},
new SelectListItem(){Value="独龙族",Text="独龙族"},
new SelectListItem(){Value="俄罗斯族",Text="俄罗斯族"},
new SelectListItem(){Value="哈尼族",Text="哈尼族"},
new SelectListItem(){Value="哈萨克族",Text="哈萨克族"},
new SelectListItem(){Value="基诺族",Text="基诺族"},
new SelectListItem(){Value="京族",Text="京族"},
new SelectListItem(){Value="景颇族",Text="景颇族"},
new SelectListItem(){Value="柯尔克孜族",Text="柯尔克孜族"},
new SelectListItem(){Value="拉祜族",Text="拉祜族"},
new SelectListItem(){Value="黎族",Text="黎族"},
new SelectListItem(){Value="畲族",Text="畲族"},
new SelectListItem(){Value="珞巴族",Text="珞巴族"},
new SelectListItem(){Value="满族",Text="满族"},
new SelectListItem(){Value="毛南族",Text="毛南族"},
new SelectListItem(){Value="仫佬族",Text="仫佬族"},
new SelectListItem(){Value="普米族",Text="普米族"},
new SelectListItem(){Value="羌族",Text="羌族"},
new SelectListItem(){Value="撒拉族",Text="撒拉族"},
new SelectListItem(){Value="水族",Text="水族"},
new SelectListItem(){Value="塔吉克族",Text="塔吉克族"},
new SelectListItem(){Value="塔塔尔族",Text="塔塔尔族"},
new SelectListItem(){Value="仡佬族",Text="仡佬族"},
new SelectListItem(){Value="土族",Text="土族"},
new SelectListItem(){Value="佤族",Text="佤族"},
new SelectListItem(){Value="维吾尔族",Text="维吾尔族"},
new SelectListItem(){Value="乌孜别克族",Text="乌孜别克族"},
new SelectListItem(){Value="锡伯族",Text="锡伯族"},
new SelectListItem(){Value="瑶族",Text="瑶族"},
new SelectListItem(){Value="裕固族",Text="裕固族"},
new SelectListItem(){Value="彝族",Text="彝族"}
};
ViewBag.NationName = new SelectList(nationlist, "Value", "Text", entity.NationName);
ViewBag.NationName = new SelectList(nationlist, "Value", "Text");
@Html.DropDownList("NationName", null, new { @class = "txtselect" })
MVC4下拉少数名族的更多相关文章
- DevExpress:下拉框绑定数据源 (ComboBoxEdit,LookUpEdit)
DevExpress:下拉框绑定数据源 (ComboBoxEdit,LookUpEdit) DevExpress:下拉框绑定数据源 (ComboBoxEdit,LookUpEdit) // 设置下拉框 ...
- asp.net MVC4 表单 - 下拉框
1.下拉框代码方式 控制器内构建下拉项目: List<SelectListItem> list = new List<SelectListItem>(); list.Add(n ...
- 基于jQuery的input输入框下拉提示层(自动邮箱后缀名)
基于jQuery的input输入框下拉提示层,方便用户输入邮箱时的提示信息,需要的朋友可以参考下 效果图 // JavaScript Document (function($){ $.fn ...
- EF5+MVC4系列(7) 后台SelectListItem传值给前台显示Select下拉框;后台Action接收浏览器传值的4种方式; 后台Action向前台View视图传递数据的四种方式(ViewDate,TempDate,ViewBag,Model (实际是ViewDate.Model传值))
一:后台使用SelectListItem 传值给前台显示Select下拉框 我们先来看数据库的订单表,里面有3条订单,他们的用户id对应了 UserInfo用户表的数据,现在我们要做的是添加一个Ord ...
- MVC4 绑定下拉框方法,解决编辑时不绑定值
方法一 Controller 部分代码: public ActionResult Modify(int id) { //3.1.1 检查id //3.1.2根据id查询数据 Models.Stude ...
- smarty模板做人员表信息删除,修改 里面的性别单选按钮民族下拉,另外登录进去可以显示姓名
首先登录进去可以显示姓名 smarty模板做人员表信息删除,删除的时候有提示框确定删除吗. 修改 里面的性别单选按钮,要修改谁有默认选中,用了变量调节器 民族位置做下拉,用<{foreach}& ...
- Jquery制作--美化下拉框
平常我们用的原生select下拉框,大部分样式没办法修改,导致在不同的浏览器里面会跟设计图的风格大相径庭.所以为了能让它美化起来,就用JQ模拟了一个下拉框,可以随意定义样式.原生的下拉框也保留在div ...
- Android开发学习之路-下拉刷新怎么做?
因为最近的开发涉及到了网络读取数据,那么自然少不了的就是下拉刷新的功能,搜索的方法一般是自己去自定义ListView或者RecyclerView来重写OnTouch或者OnScroll方法来实现手势的 ...
- jQuery打造智能提示插件二(可编辑下拉框)
在上一篇 jQuery打造智能提示插件 上改进,增加下拉按钮,修复点击下拉区域外不隐藏BUG 效果 下拉按钮素材: js封装,注意红色部分为BUG修复,然后传入boxwidth不带px: /* /// ...
随机推荐
- yaf性能测试(wamp环境)
1实现mvc 出现helloword,成功 2.controller重定向 $get = $this->getRequest()->getQuery("get", &q ...
- C/C++链表操作(面试)
1.为了反转这个单链表,我们先让头结点的next域指向结点2,再让结点1的next域指向结点3,最后将结点2的next域指向结点1,就完成了第一次交换,顺序就变成了Header-结点2-结点1-结点3 ...
- 集合类(Objective-C & Swift)
内容提要: 本文前两部分讲了Cocoa的集合类和Swift的集合类,其中Cocoa提供的集合类包括NSArray.NSMutableArray.NSDictionary.NSMutableDictio ...
- ArcGIS API for Silverlight 实现修改地图上的工程点位置
原文:ArcGIS API for Silverlight 实现修改地图上的工程点位置 #region 处理工程点点击编辑相关事件 public Graphic editgraphics = null ...
- Android笔记:百度地图与高德地图坐标转换问题
安卓项目使用了百度地图的定位SDK,web端使用的也是百度地图, 后来发现界面显示百度地图不如高德效果好,web改用高德地图,原本的百度地图坐标是可以直接使用的,由于高德和百度地图的坐标系不一致 要如 ...
- JQuery 可见性过滤选择器
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...
- Selenium2学习-029-WebUI自动化实战实例-027-判断元素是否存在
非常简单的源码,敬请各位小主参阅.若有不足之处,敬请大神指正,不胜感激! /** * Verify the element exist or not * * @author Aaron.ffp * @ ...
- JS-007-富文本域操作
在日常 web 编写过程中,富文本域几乎成为了一个网站不可页面元素,同时,其也有着各种各样的实现方式,网络上也存在着各种各样的集成插件可供引用.此文以 js 获取.修改 163 邮箱写邮件时的邮件内容 ...
- office-001-Outlook邮件配置图文详解
本节以 Windows 7 操作系统下 Microsoft Outlook 配置电子邮件的方法,配以图文进行详解.敬请各位亲们参阅,若有不足之处,敬请指正,不胜感激! 闲话少数,话归正题.默认用户已经 ...
- 将一个UIView对象的内容保存为UIImage
+ (UIImage*)imageFromView:(UIView*)view{ UIGraphicsBeginImageContextWithOptions(view.bounds.size, YE ...