/// /// 是否外部数据提交 /// /// True是外部数据库 false 本站数据 public static bool CheckOutWebString() { string server_v1 = HttpContext.Current.Request.ServerVariables["HTTP_REFERER"]; //获取... Read More
posted @ 2008-09-11 13:45 liangwei389 Views(203) Comments(0) Diggs(0) Edit
string strPath = System.Web.HttpContext.Current.Server.MapPath("~/App_Data/Interface.xml"); System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument(); //定义XmlDocument对象 xmlDoc.... Read More
posted @ 2008-09-11 12:55 liangwei389 Views(393) Comments(0) Diggs(0) Edit
public string GetIPByDomain(string url){ if (url.Trim() == string.Empty) return ""; try { System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(url); return host.Addr... Read More
posted @ 2008-09-11 12:34 liangwei389 Views(395) Comments(0) Diggs(0) Edit