Hope this helps ... Here is the code on the book with some minor changes:
Code:
<%@ Page Language="c#" %>
<html>
<head>
<title>Holiday Page2</title>
</head>
<body>
<form id="form1" runat="server" method="post">
<h1>Hinojoza's 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 />
<asp:Button PostBackUrl="holidayresponse.aspx" runat="server" Text="Submit" />
</form>
</body>
</html>