在一般处理程序中,把Form Post过来的表单集合转换成对象 ,仿 MVC post,反射原理

2020-12-13 04:44

阅读:489

标签:style   blog   class   code   c   java   

soscw.com,搜素材
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Reflection;
using System.Web;
using WebSite.Models;

namespace testWebuploader.Scripts.Plugin.webuploader_v0._1._2
{
    /// 
    /// webUploader 的摘要说明
    /// 
    public class webUploader : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            HttpFileCollection files = context.Request.Files;
            ImgUploadModel imguploadmodel = FormToClass(context.Request.Form);
            context.Response.ContentType = "text/plain";
            context.Response.Write("Hello World");
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
        /// 
        /// 把Form Post过来的表单集合转换成对象 ,仿 MVC post
        /// 
        /// 
        /// 
        /// 
        public T FormToClass(NameValueCollection collection)
        {
            T t = Activator.CreateInstance();
            PropertyInfo[] properties = t.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);
            foreach (PropertyInfo _target in properties)
            {
                if (_target.CanWrite)
                {
                    _target.SetValue(t, Convert.ChangeType(collection[_target.Name], _target.PropertyType));
                }
            }
            return t;
        }
    }
}
soscw.com,搜素材

 

在一般处理程序中,把Form Post过来的表单集合转换成对象 ,仿 MVC post,反射原理,搜素材,soscw.com

在一般处理程序中,把Form Post过来的表单集合转换成对象 ,仿 MVC post,反射原理

标签:style   blog   class   code   c   java   

原文地址:http://www.cnblogs.com/shanhe/p/3733644.html


评论


亲,登录后才可以留言!