Language Basics ASP.Net

<%@ Page Language="C#" %>

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


    
    
    
        
            Please type yes or no: