2012年6月6日
摘要: 不废话贴代码这是配置文件的类 获取在webconfig里面存储的信息 很容易看懂View Code 1 public class APIConfig 2 { 3 public static string GetValueFromConfig(string key) 4 { 5 string value = String.Empty; 6 return ConfigurationManager.AppSettings[key]; 7 } 8 public static st... 阅读全文
posted @ 2012-06-06 16:11 56851240 阅读(121) 评论(0) 推荐(0) 编辑