holidaypage.aspx:
<html>
<head>
<title>Holiday Page</title>
</head>
<body>
<form action="holidayresponse.aspx" method="post">
<h1>Felertag Holidays</h1>
<br/><br/>
Please enter your details here.
<br/><br/>
Name:<asp:textbox id="name" runat="server"/>
<br/><br/>
Address:<asp:textbox id="address" textmode="multiline" rows="3" 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="destinaion" runat="server">
<asp:listitem value="Beijing"/>
<asp:listitem value="Shanghai"/>
<asp:listitem value="Hongkong"/>
</asp:dropdownlist>
<br/><br/>
<input type="submit">
<input type="reset">
</form>
</body>
</html>
holidayresponse.aspx:
<script language="
vb" runat="server">
sub Page_Load()
response.write("<b>Name:</b>"+request.form("name")+"<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, and you will receive a confirmation email from us shortly.
</body>
</html>