i have following HTML
<Html>
<head>
</head>
<body>
<form action="Page2.html" method="get"/>
    <h1>Hello</h1>
    <input name="fname"/>
    <input type="submit" value="submit" />
</body>
</html>
when i click submit button page is redirect to Page2.html  with querystring of fname
now how to retrieve the querystring value in page2.html page ???
and if i use POST method , how to retrieve post data method ??
Thanks..