asp 注册后刷新页面,内容不变

来源:百度知道 编辑:UC知道 时间:2024/06/21 08:41:06
如何让注册后的页面在刷新后,页面内容不在变更
就像注册qq好后出现的页面后在刷新依然是不变
详细点

把数据提交给本页,然后在服务器端给表单重新赋值

页面刷新后,本页面表单的已经填的数据不丢失

<html>
<head>
<title>saveHistory行为应用</title>
<meta name="save" content="history">
</head>
<body>
用了saveHistory 行为的表单项:<br>
<INPUT style="behavior:url(#default#savehistory)"><br>
一般表单项:<br>
<input>
</body>
</html>

注意:<meta name="save" content="history"> 这行代码为必需。