页面定时刷新标签
//页面定时刷新 <meta http-equiv="Refresh" content="12">
Input标记各种特殊用法
<%--禁止鼠标选择内容--%> <input id="Text1" name="" type="text" onselectstart="return false;" /> <%--禁止浏览器记录文本框缓存--%> <input id="Text2" name="" type="text" autocomplete="off" /> <%--禁止文本框邮件--%> <input id="Text3" name="" type="text" oncontextmenu='return false;' /> <%--禁止粘贴--%> <input id="Text4" name="" type="text" onpaste="return false;" /> <%--禁止复制--%> <input id="Text5" name="" type="text" oncopy="return false;" /> <%--禁止剪切--%> <input id="Text6" name="" type="text" oncut="return false;" />