Wednesday, May 07, 2025

Breaking News
>> Securing and encrypt View State and Cookies values  >> Page has one or more controls that do not correspond with   >> “The Controls collection cannot be modified because the control contains code blocks”  >> How to fix "Validation(): Element 'xxxx' is not supported  >> How to create a new session in ASP.NET programmatically  >> MySQL Database Backup using mysqldump command    

Editors Picks

Monday, June 18, 2012

Tab is not working after textbox's textchanged event fired?


<script type="text/javascript">
  function KeyDown(e)
 {
    var e = e || event;
    var currKey = e.keyCode || e.which || e.charCode;
   if (currKey == 9)
   {
   document.getElementById("<%=Txtbox4.ClientID %>").focus();
   }
}
script>
<asp:TextBox ID="Txtbox1" runat="server"
  onkeydown="KeyDown();" >asp:TextBox>
<asp:TextBox ID="Txtbox2" runat="server">asp:TextBox>
<asp:TextBox ID="Txtbox4" runat="server">asp:TextBox>

No comments :

Post a Comment

Contact Us

Name

Email *

Message *