摘要: JQuery Validate使用总结:一、导入js库<script src="../js/jquery.js" type="text/javascript"></script><script src="../js/jquery.validate.js" type="text/javascript" 阅读全文
posted @ 2019-06-18 13:56 咖啡无眠 阅读(2122) 评论(0) 推荐(0) 编辑
摘要: 方法一: HttpContext.Current.Request.RequestType == "POST" //当前请求为:POST 方法二: if(Request.ServerVariables["REQUEST_METHOD"] =="POST") 阅读全文
posted @ 2019-06-15 08:55 咖啡无眠 阅读(1885) 评论(0) 推荐(0) 编辑
摘要: 1:打开web.config文件,在system.web节点里,添加<httpRuntime requestValidationMode="2.0" /> 2:在aspx页面 <%@ Page指令配置里 添加 ValidateRequest="false" 阅读全文
posted @ 2019-05-22 16:50 咖啡无眠 阅读(248) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将UBB编码转成标准的HTML代码 /// </summary> /// <param name="argString"></param> /// <returns></returns> public static string HtmlDecode(string 阅读全文
posted @ 2019-05-22 14:41 咖啡无眠 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 一、配置文件概述: 应用程序配置文件是标准的 XML 文件,XML 标记和属性是区分大小写的。它是可以按需要更改的,开发人员可以使用配置文件来更改设置,而不必重编译应用程序。配置文件的根节点是configuration。我们经常访问的是appSettings,它是由.Net预定义的配置节。我们经常使 阅读全文
posted @ 2019-05-19 15:50 咖啡无眠 阅读(1485) 评论(0) 推荐(0) 编辑
摘要: global.asax文件中写 void Application_BeginRequest(object sender, EventArgs e) { if (Request.RawUrl.Contains("images/")) { if (Request.UrlReferrer == null 阅读全文
posted @ 2019-05-09 16:19 咖啡无眠 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 父页面: <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></tit 阅读全文
posted @ 2019-04-30 10:05 咖啡无眠 阅读(676) 评论(0) 推荐(0) 编辑
摘要: List<CityData> listData =new List<CityData>(); //把一个集合自定转成json字符串。 foreach (var city in ctiyTable) { listData.Add(new CityData() { CityId = city.CityI 阅读全文
posted @ 2019-04-28 15:36 咖啡无眠 阅读(911) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Text; namespace WebDemo.Common{ public class LaomaPager { /// <summary> /// /// </summary> /// <param name="pageSize">一页多少条< 阅读全文
posted @ 2019-04-18 13:45 咖啡无眠 阅读(367) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.IO;using S 阅读全文
posted @ 2019-04-16 16:05 咖啡无眠 阅读(1061) 评论(0) 推荐(0) 编辑