protected static string path = ConfigurationManager.AppSettings["WebDAL"];       
     public static TUserIDAL CreateTUserIDAL()
       {
           string classname = path + ".TUser" + daltype;
           TUserIDAL A = (TUserIDAL)Assembly.Load(path).CreateInstance(classname);
           return A;
       }
return 的值A一直为空,查了很长时间,但返回值一直为“null”,请大家帮帮忙path和className和daltype的值也都取的到,classname得到的是:SqlServerDAL.TUsersInfoSqlServerDAL是对的 ,但return 的值A一直为空,请问怎么解决呢?