日期:2014-05-17 浏览次数:20433 次
using System.Reflection;
using StyleSoft.Common4;
using System.Collections.Generic;
public partial class View : StyleSoft.UI.WebForm.Views.BasePage {
protected override void OnPreInit(System.EventArgs e) {
base.OnPreInit(e);
string _assName = AppConst.企业库名称;
string _className = MyHelper.ToString(RouteData.Values[AppConst.ViewName]);
_className = AppConst.命名空间 + _className;
Assembly.Load(_assName).CreateInstance(_className);
} //end func
}//end class