当前位置:编程学习 > C#/ASP.NET >>

急求此题的程序代码:要求用户输入5个大写字母,如果用户输入的信息不满足要求,提示帮助信息并要求重新输入.

用Asp.net解答 --------------------编程问答--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="TextBox1" runat="server" onkeypress="validateInput(this)"></asp:TextBox>
    </div>
    </form>
    <script type="text/javascript">
    function validateInput(oSrc){
        var sTxt=oSrc.value;
        if(sTxt.length>3){
            var ptn=/^[A-Z]{4}/;
            if(!ptn.exec(sTxt))
                alert("重新输入");
            else alert("可以");
        }
    }
    </script>
</body>
</html>
--------------------编程问答-------------------- 经测试。楼上可以的。
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,