首页 > 其他 > 详细

反射=>模型获取表单

时间:2016-01-07 01:09:49      阅读:255      评论:0      收藏:0      [点我收藏+]

效果图:

技术分享

视图代码:

技术分享
<form action="form.aspx" method="post">
    <input type="text" name="card" /><p />
    <input type="text" name="pwd" /><p />
    <input type="text" name="status" /><p />
    <input type="submit" value="input" />
</form>
View Code

功能代码:

技术分享
        protected void Page_Load(object sender, EventArgs e)
        {
            admin a = new admin();
            GetFormToM<admin>(ref a, Request.Form); //获取表单的值
            OutT<admin>(a);                         //输出表单的值
        }
        private class admin
        {
            public string card { set; get; }
            public string pwd { set; get; }
            public int status { set; get; }
        }  //模型
        static void GetFormToM<T>(ref T m,NameValueCollection form)
        {
            Type t = m.GetType();
            PropertyInfo[] pi = t.GetProperties();
            foreach(PropertyInfo p in pi)
            {
                if(form[p.Name] != null )
                {
                    p.SetValue(m, Convert.ChangeType(form[p.Name], p.PropertyType), null);
                }
            }
        } //获得表单
        static void OutT<T>(T m)
        {
            Type t = m.GetType();
            PropertyInfo[] pi = t.GetProperties();
            foreach(var p in pi)
            {
                HttpContext.Current.Response.Write(p.Name + " = " + p.GetValue(m)+"<p/>");
            }
        }  //输出模型
View Code

 

反射=>模型获取表单

原文:http://www.cnblogs.com/0to9/p/5107915.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!