asp.Netにおけるエンティティクラスオブジェクトのフォームへの付与の実装コード

2086 ワード

一つ質問があります.フォーム名とオブジェクトの属性名(私は属性付与でフィールドを使うこともできます)は同じで、少し安全ではありませんが、バックグラウンドで使うのはいいです.フォームデータのバックグラウンドに記入するのは多いと言っています.
 
  
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Collections.Specialized;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
///
///
///

namespace Com.Fun
{
public static class SetFormToModel
{
///
///
///

///
///
public static void GetValue(T t, NameValueCollection form)
{
Type type = t.GetType();
PropertyInfo[] pi = type.GetProperties();
foreach (PropertyInfo p in pi)
{
if (form[p.Name] != null)
{
p.SetValue(t, Convert.ChangeType(form[p.Name], p.PropertyType), null);
}
}
}

///
///
///

///
///
public static void SetValue(T t,Page page)
{
Type type = t.GetType();
PropertyInfo[] pi = type.GetProperties();
foreach (PropertyInfo p in pi)
{
System.Web.UI.HtmlControls.HtmlInputText text = page.FindControl(p.Name) as System.Web.UI.HtmlControls.HtmlInputText;
if (text != null)
{
text.Value = p.GetValue(t, null).ToString();
}
}

}
}
}


//
MHouseReco mh = new DHouseReco().GetModel(id);
Com.Fun.SetFormToModel.SetValue(mh,this.Page);

MHouseReco mh = new MHouseReco();
Com.Fun.SetFormToModel.GetValue(mh, this.Request.Form);