Posted on: 12/23/2014 10:30:17 PM | Views : 556

I wrote a test application to handle social security numbers (few other items too).  In the SSN section I want the shift/tab to move the cursor to the previous screen.  Using IE8, the shift keyup moves the cursor from the first SSN box to the second, and then if pressed again to the third.  It will not continue to move to the other controls from the third ssn box.
I want the shif-tab combination to function normally: to move cursor to the previous control.  I don't want the shift keyup to move the cursor back to the next control (which is what it is doing now).
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Numbers.aspx.vb" Inherits="WebApplication1.Numbers" %> <!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&qu ...

Go to the complete details ...