📄 studyradiobutton.aspx
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -