求助:请帮忙纠正一下错误,谢谢!
expt 2005-03-05 10:27:07 小弟是新手,还请各位大虾帮帮忙,谢谢~ ^_^
源码如下:
<html>
<head>
<title>Holiday page</title>
</head>
<body>
<form action="holidayresponse.aspx" method="post" >
<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/>
Sex-
<asp:RadioButtonList ID="Sex" 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="Osol"/>
<asp:ListItem Value="Prague"/>
</asp:DropDownList>
<br/><br/>
<input type="submit">
<input type="reset">
</form>
</body>
</html>