ASP. NET MVC int[] and string[] Custom array bindings

Source: Internet
Author: User

New class, int[] array model binding

Using system;using system.collections.generic;using system.linq;using system.web;using System.Web.Mvc;namespace koukou.admin.modelbinder{public    class Intarraymodelbinder:defaultmodelbinder    {public        override object Bindmodel (ControllerContext controllercontext, Modelbindingcontext BindingContext)        {            var value = BindingContext.ValueProvider.GetValue (bindingcontext.modelname);            if (value = = NULL | | string. IsNullOrEmpty (value. Attemptedvalue))            {                return null;            }            return value                . Attemptedvalue                . Split (', ')                . Select (int. Parse)                . ToArray ();}}}    

String[] Array Model binding

Using system;using system.collections.generic;using system.linq;using system.web;using System.Web.Mvc;namespace koukou.admin.modelbinder{public    class Stringarraymodelbinder:defaultmodelbinder    {public        override Object Bindmodel (ControllerContext controllercontext, Modelbindingcontext BindingContext)        {            var value = BindingContext.ValueProvider.GetValue (bindingcontext.modelname);            if (value = = NULL | | string. IsNullOrEmpty (value. Attemptedvalue))            {                return null;            }            return value                . Attemptedvalue                . Split (new string[] {",", Environment.NewLine}, stringsplitoptions.removeemptyentries);            Comma "," and line break as Delimited}}}    

Register at Global.asax's Application_Start

protected void Application_Start ()        {            arearegistration.registerallareas ();            Registerglobalfilters (globalfilters.filters);            RegisterRoutes (routetable.routes);//Custom Model binding            ModelBinders.Binders.Add (typeof (Int[]), new Modelbinder.intarraymodelbinder ());            ModelBinders.Binders.Add (typeof (String[]), new Modelbinder.stringarraymodelbinder ());        

  

  

ASP. NET MVC int[] and string[] Custom array bindings

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.