代碼:
<!DOCTYPE html><html>
<body>
<form runat="server">
<table>
<tr>
<td>
<table bgcolor="#b0c4de" cellspacing="10">
<tr>
<td align="right">Name:</td>
<td><asp:TextBox id="txt_name" runat="server"/></td>
<td>
<asp:RequiredFieldValidator
ControlToValidate="txt_name"
ErrorMessage="Name"
Text="*"
runat="server"/>
</td>
</tr>
<tr>
<td align="right">Card Type:</td>
<td>
<asp:RadioButtonList id="rlist_type"
RepeatLayout="Flow"
runat="server">
<asp:ListItem>Diners</asp:ListItem>
<asp:ListItem>MasterCard</asp:ListItem>
<asp:ListItem>Visa</asp:ListItem>
</asp:RadioButtonList>
</td>
<td>
<asp:RequiredFieldValidator
ControlToValidate="rlist_type"
ErrorMessage="Card Type"
InitialValue=""
Text="*"
runat="server"/>
</td>
</tr>
<tr>
<td></td>
<td><asp:Button id="b1" Text="Submit" runat="server"/></td>
<td></td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<asp:ValidationSummary
HeaderText="You must enter a value in the following fields:"
DisplayMode="BulletList"
EnableClientScript="true"
runat="server"/>
</form>
</body>
</html>
結(jié)果:
- ASP.NET Web Pages 文件夾
- ASP.NET Web Pages 文件
- ASP.NET Web Pages – 發(fā)布
- ASP.NET Web 的 C# 和 VB 實(shí)例
- ASP.NET Razor VB 邏輯
- ASP.NET 實(shí)例
- ASP.NET ListBox 控件
- WebSecurity IsCurrentUser 方法
- HTML Inputbutton
- HTML InputHidden
- ASP.NET HTML 控件 Hashtable DropDownList
- ASP.NET Calendar CellSpacing 屬性
- ASP.NET Font 屬性
- ASP.NET TabIndex 屬性
- ASP.NET Panel BackImageUrl 屬性
- ASP.NET Panel Direction 屬性
- ASP.NET BulletedList DisplayMode 屬性
- ASP.NET TableCell HorizontalAlign 屬性
- ASP.NET TableCell Wrap 屬性
- comparevalidator