摘要: Webservice常用接口大全 天气预报Web服务,数据来源于中国气象局 Endpoint :http://www.webxml.com.cn/WebServices/WeatherWebService.asmx Disco :http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?disco WSDL :h... 阅读全文
posted @ 2019-03-29 18:41 雨殇丶 阅读(1996) 评论(0) 推荐(0)
摘要: 验证数字:^[0-9]*$ 验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$ 验证m-n位的数字:^\d{m,n}$ 验证零和非零开头的数字:^(0|[1-9][0-9]*)$ 验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$ 验证有1-3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$ 验证整数和一位小数:^[0-9]+(.[1-9]... 阅读全文
posted @ 2019-03-29 18:38 雨殇丶 阅读(177) 评论(0) 推荐(0)
摘要: 1、复制下列代码,拷贝到控制器中。 #region 生成验证码图片 // [OutputCache(Location = OutputCacheLocation.None, Duration = 0, NoStore = false)] public ActionResult SecurityCode() { str... 阅读全文
posted @ 2019-03-29 18:36 雨殇丶 阅读(733) 评论(0) 推荐(1)