摘要:
HttpWebRequest req; string strGet = "http://localhost:2980/Service1.asmx/HelloWorld?name="; strGet = strGet + this.TextBox1.Text; //请求的Web service的所在地址 req = ... 阅读全文
2008年8月20日 #
摘要:
public string CheckUrl() { Uri ComeUrl = HttpContext.Current.Request.UrlReferrer; string cUrl = string.Empty; HttpContext context = HttpContext.Current; ... 阅读全文
摘要:
function isTel(str) { var reg=/^[0-9,]+$/; return reg.test(str); } 阅读全文