I want to send the information in page1 to display in page2
code in page1 is:__________________________
<html>
<head>
<title>Holiday page</title>
</head>
<body>
<form action="holidayresponse.aspx" method="post" runat="server">
<h1>Feiertag Holidays</h1>
Please enter your details here.
<br><br>
Name:<asp:textbox id="FullName" runat="server"/>
<br><br>
Address:<asp:textbox id="address" rows="5" textmode="multiline" runat="server"/>
<br><br>
************-
<asp:radiobuttonlist id="************" runat="server">
<asp:listitem value="Male"/>
<asp:listitem value="Female"/>
</asp:radiobuttonlist>
Please select the destination you would like details on:
<asp:dropdownlist id="destination" runat="server">
<asp:listitem value="Madrid"/>
<asp:listitem value="Barcelona"/>
<asp:listitem value="Lisbon"/>
<asp:listitem value="Oslo"/>
<asp:listitem value="Prague"/>
</asp:dropdownlist>
<br><br>
<input type="Submit"><input type="Reset">
</form>
</body>
</html>
and code in page2 to receive the data is:______________________
<script runat="server" language="
vb">
sub page_load()
response.write("<b>Name:</b>"+Request.Form("FullName")+"<br>")
response.write("<b>Address:</b>"+Request.Form("Address")+"<br>")
response.write("<b>************:</b>"+Request.Form("************")+"<br>")
response.write("<b>Destination:</b>"+Request.Form("Destination"+"<br>"))
end sub
</script>
<html>
<head><title>Holiday page</title></head>
<body>
<br><br>
These details have been entered into our database,you should receive a confirmation email from us shortly.
<br><br>
</body>
</html>
why doesn't it work? i followed the exmaple exactly in the book "Beginning ASP.NET using
VB.NET"