摘要:
不废话贴代码这是配置文件的类 获取在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... 阅读全文