亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP.NET實現(xiàn)License Key輸入功能的小例子

 更新時間:2013年03月16日 14:38:31   作者:  
當(dāng)我們安裝微軟的軟件,多數(shù)軟件是需要輸入license key。它有五個文本框,輸入完第一個文本框之后,光標(biāo)自動跳至下一個文本框。 Insus.NET今天也使用asp.net來模仿一個。呵呵。

 

這個演示,在輸入時,是不需要與服務(wù)端交互,只有全部輸入完畢之后,用戶點銨鈕才進行驗證。因此在這里,寫Javascript來實現(xiàn)即可。

js:

復(fù)制代碼 代碼如下:

<script type="text/javascript">
        function JumpToNextTextBox(currentTxtBox, nextTextBoxID) {
            if (currentTxtBox.value.length >= 5) {
                document.getElementById(nextTextBoxID).focus();
            }
        }
    </script>


Html code:

復(fù)制代碼 代碼如下:

  License Key:
            <asp:TextBox ID="Number1" runat="server" onkeyup="JumpToNextTextBox(this, 'Number2')" Width="65"></asp:TextBox>
            -
        <asp:TextBox ID="Number2" runat="server" onkeyup="JumpToNextTextBox(this, 'Number3')" Width="65"></asp:TextBox>
            -
        <asp:TextBox ID="Number3" runat="server" onkeyup="JumpToNextTextBox(this, 'Number4')" Width="65"></asp:TextBox>
            -
        <asp:TextBox ID="Number4" runat="server" onkeyup="JumpToNextTextBox(this, 'Number5')" Width="65"></asp:TextBox>
            -
        <asp:TextBox ID="Number5" runat="server" MaxLength ="5" Width="65"></asp:TextBox>

相關(guān)文章

最新評論