studyradiobutton.aspx
来自「该文件包括了WEB标单控件应用的所有实例代码」· ASPX 代码 · 共 26 行
ASPX
26 行
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="studyRadioButton.aspx.vb" Inherits="studyRadioButton" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>The RadioButton Controls</title>
</head>
<body>
<center>
<form method="post" runat="server">
<h4>select your favorite music:</h4>
<asp:RadioButton ID="Radio1" Text="PoP" Checked="true" GroupName="RadioGroup1" runat="server" />
<br />
<asp:RadioButton ID="Radio2" Text="Jazz" GroupName="RadioGroup1" runat="server" />
<br />
<asp:RadioButton ID="Radio3" Text="Classic" GroupName="RadioGroup1" runat="server" />
<br />
<asp:Button ID="Button1" Text="select" OnClick="SubmitBtn_Clicked" runat="server" />
<br /><br />
<span id="Message1" runat="server"></span>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?