在html里面用submit方式提交表单后,在另一个页面怎么将值取出来

在html里面用submit方式提交表单后,在另一个页面如何将值取出来
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
$(function(){
 $("div").click(function(){
$(this).addClass("select");
    });
})
//获得当前时间,刻度为一千分一秒
var initializationTime=(new Date()).getTime();
function showLeftTime()
{
var now=new Date();
var year=now.getFullYear();
var month=now.getMonth() + 1;
var day=now.getDate();
document.all.show.innerHTML=""+year+"年"+month +"月"+day+"日 ";
//一秒刷新一次显示时间
var timeID=setTimeout(showLeftTime,1000);
}
</script>

<style>
<!--
body{
background-image:url(wood-bg2.jpg);
}

.exlist{
background-color:#F9EE70;
margin:30px auto;
padding:5px;
width:680px;
min-height:200px;
height:auto;
font-family:"微软雅黑";
-webkit-box-shadow:4px 4px 5px #333;/*webkit*/ 
-moz-box-shadow:4px 4px 5px #333;/*firefox*/     
box-shadow:4px 4px 5px #333;/*opera或ie9*/ 
}

#title{
width:380px;
margin:20px auto;
}

#title legend{
font-size:26px;
}

div.exlist_title{
background-color:#F9EE70;
width:680px;
height:20px;
}

div.exlist_title img{
float:right;
margin:-15px 10px;
}

/*-----------form-----------*/

fieldset{
width:90%;
border:1px dashed #666;
margin:40px auto;
}
 
legend{
background-color:#F9EE70;
height:110px;
height:20px;
color:#630;
font-weight:bolder;
font-size:20px;
line-height:20px;
margin:-15px 10px 10px;
padding:0 10px;
}
div.row{
margin:8px;
padding:3px;
}
 
div.row label{
height:15px;
font-size:12px;
line-height:15px;
margin:0 8px;
}
 
input.txt{
background-color:#F9EE70;
color:#333;
width:120px;
height:15px;
margin:0 8px;
font-size:12px;
line-height:15px;
border:none;
border-bottom:1px solid #565656;
}
 
input.txt:focus{
color:#333;
background-color: #FF0;
border-bottom:1px solid #F00;
}
 
select{
width:100px;
}

option{
text-align:center;
}

input.btn{
width:40px;
height:15px;
color:#000008B;
background-color: transparent;
border:0;
padding:0;
}

-->
</style>
</head>

<body onload="showLeftTime()">
<div class="exlist">
<form method="post" action="index2.html" name="form1">
<div id="title" align="center"><legend>宝山区蔬菜散户现场检查表</legend></div>
    <div class="exlist_title" align="center"><legend>上海罗新园艺场</legend></div>
     <fieldset>
        <legend>基本信息</legend>
         <div class="row">
             <label>负责人:</label>
                <input style="width:150px" class="txt" type="text"/>
                <label>检查时间:</label>
                <label id ="show">显示时间的位置</label>
            </div>
            <div class="row">
                <label>被检户:</label>
                <input style="width:150px" class="txt" type="text" id=""/>
                <label>联系方式:</label>
                <input style="width:150px" class="txt" type="text"/>
            </div>
            <div class="row">
                <label>地&nbsp;&nbsp;&nbsp;址:</label>
                <input style="width:413px" class="txt" type="text"/>
            </div>
        </fieldset>
        <fieldset>