2012年8月11日
摘要: /// <summary> /// 函数结构体 /// </summary>public class Xmlcontrol { public string nodename; public Xmlcontrol xc; public Xmlcontrol(string nodename, Xmlcontrol childrenname) { this.nodename = nodename; xc = childrenname; } public Xmlcont... 阅读全文
posted @ 2012-08-11 09:30 56851240 阅读(155) 评论(0) 推荐(0) 编辑
  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) 编辑