漫游的备忘录
不太常用但必须要知道的一些ASP语句
2011-10-19 漫游
清空缓存

Response.AddHeader "Pragma", "no-cache"

Response.AddHeader "cache-ctrol", "no-cache"

Response.CacheControl = "no-cache"

Response.Flush



产生随机数种子

randomize timer()



纯ASP页面声明GB2312编码

<%@ CODEPAGE=936 %>

<% Response.CodePage=936 %>

<% Response.Charset="gb2312" %>



纯ASP页面声明UTF-8编码

<%@ CODEPAGE=65001 %>

<% Response.CodePage=65001 %>

<% Response.Charset="UTF-8" %>