文章詳情頁
ASP.NET MVC擴展帶驗證的單選按鈕
瀏覽:17日期:2022-06-08 18:56:00
在ASP.NET MVC4中,HtmlHelper為我們提供了Html.RadioButton()方法用來顯示Radio Button單選按鈕。如果想顯示一組單選按鈕,通常的做法是遍歷一個集合把每個單選按鈕顯示出來。本篇嘗試寫一個擴展方法用來展示一組帶驗證的單選按鈕。
首先來擴展HtmlHelper,擴展方法中接收一個SelectListItem的集合,遍歷這個集合把每個單選按鈕顯示出來,并且讓這些單選按鈕具有不同的id屬性值。
using System.Collections.Generic;using System.Linq.Expressions;using System.Text;using System.Web.Mvc.Html;namespace System.Web.Mvc{ public static class HtmlExtensions {public static MvcHtmlString RadioButtonListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> list){ //獲取元數據 var metaData = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData); var sb = new StringBuilder(); if (list != null) {foreach (var item in list) { //把屬性名和集合元素的Value值拼接作為元素的id var id = string.Format("{0}_{1}", metaData.PropertyName, item.Value); //創建單選按鈕 var label = htmlHelper.Label(id, HttpUtility.HtmlEncode(item.Text)); var radio = htmlHelper.RadioButtonFor(expression, item.Value, new {id = id}).ToHtmlString(); sb.AppendFormat("<div class=\"RadioButton\">{0}{1}</div>", radio, label); } } return MvcHtmlString.Create(sb.ToString());} }}
假設,現在有一個View Model,其中的一個屬性要求必須。
using System.ComponentModel.DataAnnotations;namespace MvcApplication1.Models{ public class Vm {[Required(ErrorMessage = "必填")]public int CityId { get; set; } }}
以下City類的集合將作為所有Radio Button的數據源。
namespace MvcApplication1.Models{ public class City {public int Id { get; set; }public string Name { get; set; } }}
在HomeController中,提供一個Action方法啊,把City的集合轉換成SelectListItem集合傳遞給視圖。
using System.Collections.Generic;using System.Linq;using System.Web.Mvc;using MvcApplication1.Models;namespace MvcApplication1.Controllers{ public class HomeController : Controller {public ActionResult Index(){ List<City> cities = new List<City>() {new City(){Id = 1, Name = "青島"},new City(){Id = 2, Name = "濟南"},new City(){Id = 3, Name = "平度"} }; ViewData["c"] = from c in citiesselect new SelectListItem() {Text = c.Name, Value = c.Id.ToString()}; return View(new Vm());}[HttpPost]public ActionResult Index(Vm vm){ if (ModelState.IsValid) {return Content(vm.CityId.ToString()); } else {return View(vm); }} }}
在_Layout.csthml中,必須具備客戶端驗證js。
<head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/jquery") @Scripts.Render("~/bundles/jqueryval")</head><body> @RenderBody() @RenderSection("scripts", required: false)</body>
在Home/Index.chtml中,使用擴展方法顯示Radio Button組。
@model MvcApplication1.Models.Vm@{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Layout.cshtml";}<style type="text/css"> .RadioButton { float:left; }</style>@using (Html.BeginForm("Index", "Home", FormMethod.Post, new {id = "addForm"})){ @Html.RadioButtonListFor(v => v.CityId, ViewData["c"] as IEnumerable<SelectListItem>) @Html.ValidationMessageFor(v => v.CityId) <input type="submit" value="提交"/>}
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對的支持。如果你想了解更多相關內容請查看下面相關鏈接
標簽:
ASP.NET
相關文章:
1. ASP.NET MVC通過勾選checkbox更改select的內容2. ASP.NET MVC使用異步Action的方法3. ASP.NET MVC視圖頁使用jQuery傳遞異步數據的幾種方式詳解4. ASP.NET MVC限制同一個IP地址單位時間間隔內的請求次數5. ASP.NET MVC遍歷驗證ModelState的錯誤信息6. ASP.NET MVC實現樹形導航菜單7. ASP.NET MVC實現城市或車型三級聯動8. ASP.NET MVC實現橫向展示購物車9. ASP.NET MVC實現下拉框多選10. ASP.NET MVC使用Boostrap實現產品展示、查詢、排序、分頁
排行榜