Click here to Skip to main content
15,906,329 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have this code, I dont know why this button is not work?
XML
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <h1>JavaScript Can Validate Input</h1>

<p>Please input a number between 1 and 10:</p>

<input id="numb" type="text"/>

<button type="button" onclick="myFunction">Submit</button>

<p id="demo"></p>

<script>
    function myFunction() {
        var x, text;

        // Get the value of the input field with id="numb"
        x = document.getElementById("numb").value;

        // If x is Not a Number or less than one or greater than 10
        if (isNaN(x) || x < 1 || x > 10) {
            text = "Input not valid";
        } else {
            text = "Input OK";
        }
        document.getElementById("demo").innerHTML = text;
    }
</script>

    </div>
    </form>
</body>
</html>
Posted

1 solution

C#
<button type="button" onclick="myFunction()">Submit</button>



you missed the parentheses
 
Share this answer
 
v3
Comments
maysam_p82 3-Apr-15 14:58pm    
than you, it worked
Sergey Alexandrovich Kryukov 3-Apr-15 16:10pm    
Ha-ha, a 5.
—SA
ZurdoDev 3-Apr-15 16:11pm    
Parentheses actually.

+5.
King Fisher 3-Apr-15 18:43pm    
Sorry ;)
Sergey Alexandrovich Kryukov 3-Apr-15 19:41pm    
Better edit it... :-)
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900