In VB 6.0 I could use the following to move the cursor to the next text box if the user hit the Enter key.VB Code:
Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then Keyascii = 0 Text2.SetFocus End If End Sub
Is there a VB way to use this in .Net for a web page or do you have to use Java or HTML?
Some examples would be greatly apreciated.
Thanks!




Reply With Quote