禁止页面加入缓存的代码实例:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
</head>
<body>
<input type=text name="txt1" value="this is test!">
<input type=button value="转换文本" onClick="javascript:changeCase(txt1)">
</body>
</html>