ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码

源代码在线查看: product.cs

软件大小: 7271 K
上传用户: m472333662
关键词: ASP net 网站 新闻
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				using System.Reflection;
				using System.Configuration;
				using System.Security.Policy;
				
				namespace BookShop.DALFactory {
				
					/// 
					/// Factory implementaion for the Product DAL object
					/// 
					public class Product {
				
						public static BookShop.IDAL.IProduct Create() {
							
							/// Look up the DAL implementation we should be using
							string path = System.Configuration.ConfigurationSettings.AppSettings["WebDAL"];
							string className = path + ".Product";
				
							// Using the evidence given in the config file load the appropriate assembly and class
							return (BookShop.IDAL.IProduct)Assembly.Load(path).CreateInstance(className);
						}
					}
				}
							

相关资源