string str_namespace="DataEntity";//命名空间
string str_classname="DataEntity.BA_EMPLOYEEEty";//类名
System.Reflection.Assembly assembly=System.Reflection.Assembly.Load(str_namespace);
Type t=assembly.GetType(str_classname);
SysCommon.EntityBase.BaseDataSet ds=(SysCommon.EntityBase.BaseDataSet)System.Activator.CreateInstance(t);
foreach(SysCommon.EntityBase.ColumnProperty cp in ds.ColumnPropertyList)
{
this.Response.Write(cp.Column);
}