You mean "Use form (GET) instead of history.back()"
May be it also 1 possibility. But when I use Cache . The value of text1 must be within. I want to use Cache.
It cache is not useable. I will use GET or POST
Regards,
Erdene
for example : test1.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="get" action="test2.html">
<p>
<input type="text" name="textfield">
</p>
<p>
<input type="submit" name="Submit" value="Abschicken">
<input type="reset" name="Submit2" value="Zurücksetzen">
</p>
</form>
</body>
</html>
test2.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
<input type="button" name="Submit" value="Schaltfläche" onClick="javascript:history.back()">
</form>
</body>
</html>