⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demo-switchyesno2.aspx

📁 asp.net1.1入门经典C#.2003
💻 ASPX
字号:
<%@ Page Language="C#" %>
<script runat="server">

void page_Load()
{
    if(Page.IsPostBack)
    {
        switch (txtIn.Text)
        {
        case "yes":
        case "YES":
        case "Yes":
        case "Y":
        lblOut.Text= "Details will be sent.";
        break;
        case "no":
        case "NO":
        case "No":
        case "N":
        lblOut.Text= "We will not contact you.";
        break;
        default:
        lblOut.Text= "Your answer " + txtIn.Text + " is not recognized.";
        break;
        }   //end switch (txtIn.Text)
    }   //end if(Page.IsPostBack)

}   //end page_Load()

</script>
<html>
    <head>
    </head>
    <body>
        <form runat="server">
    Please type yes or no: 
    <asp:TextBox runat="server" ID="txtIn"/><br/>
    <asp:Button runat="server" Text="Submit"/><br/>
    <asp:Label runat="server" ID="lblOut"/><br/>
        </form>
    </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -