firstwebform.aspx
来自「这是《ASP.NET编程实作教程》一书中的源文件 如果有此书的朋友不防下载过来参」· ASPX 代码 · 共 39 行
ASPX
39 行
<%@ Page Language="C#"%>
<html>
<script language="C#" runat="server">
void OKBtn_Click(Object Src, EventArgs E) {
if (AvailableSports.SelectedIndex != -1) {
SelectedSports.Items.Add(new ListItem(AvailableSports.SelectedItem.Value));
AvailableSports.Items.Remove(AvailableSports.SelectedItem.Value);
}
}
</script>
<body>
<center>
<form action="firstWebForm.aspx" method="post" runat=server>
<h3> Name: <asp:textbox id="favoritSite" runat="server"/>
您最常上的网站:<asp:dropdownlist id="WEBSITE" runat=server>
<asp:listitem>清华</asp:listitem>
<asp:listitem>北大</asp:listitem>
<asp:listitem>人大</asp:listitem>
</asp:dropdownlist>
<asp:button text="确认" OnClick="OKBtn_Click" runat="server"/>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?