Users Pricing

forum

Home Forums How to i get my textbox to only allow numbers 1-14? – MindStick

How to i get my textbox to only allow numbers 1-14?

Lillian Martin 2009 25 Nov 2014

This is what i have so far, but I am obviously getting an error

try
{
    dblNights = Convert.ToDouble(txtNights.Text);
 
    if (dblNights > 1 && 14)
    {
    }
    else
    {
        string script = "alert(\"Number of Nights Must be between 1 and 14!\");";
        ScriptManager.RegisterStartupScript(this, GetType(), "ServerControlScript", script, true);
        txtNights.Focus();
    }
}//End Try
 
catch
{
    string script = "alert(\"Number of Nights Must be an Integer!\");";
    ScriptManager.RegisterStartupScript(this, GetType(), "ServerControlScript", script, true);
 
    txtNights.Focus();
}//End Catch

I am not quite sure what to do to make show an error box if numbers besides 1-14 are entered. Everything else is working, just not that. What am I doing wrong

Thank you.


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md