devxlogo

Focus Your Users Using ASP And JavaScript

Focus Your Users Using ASP And JavaScript

Many sites don’t do a very good job focusing their users attention on the form controls that they have to fill out. It’s easy to jump from one form control to the next using the Tab key once the cursor is already inside the form, but getting it there sometimes can be tricky. To help users with that, you can place the following small piece of JavaScript code somewhere after your form’s closing tag:

 

Furthermore, if you do server-side validation of certain form elements, then you can focus users on the controls that they missed or filled with bad data using a similar approach. When rejecting a submitted form, your server-side script can redirect the user back to the form’s page adding to the URL’s query string the name of the form control that must be re-entered. For example, the following code in the validating script:

 <%Dim strBadControlName, strUserPrompt'Validate the formIf Trim(Request.Form("FIRSTNAME")) = "" Then   strBadControlName = "FIRSTNAME"   strUserPrompt = "Please enter your first name!"ElseIf Trim(Request.Form("LASTNAME")) = "" Then   strBadControlName = "LASTNAME"   strUserPrompt = "Please enter your last name!"ElseIf Not IsNumeric(Request.Form("AGE")) Then   strBadControlName = "AGE"   strUserPrompt = "Please enter your age!"End If'Redirect back to the form if one of the required elements is missing or incorrectIf strBadControlName <> "" And strUserPrompt <> "" Then _  Response.Redirect "FormPage.asp?CONTROL=" +  strBadControlName + "&MSG=" + Server.URLEncode(strUserPrompt)%>

will cause the form page to load with the cursor already conveniently placed in the control in question, provided that the page has the following code in it:

 

Again, this JavaScript code needs to be placed somewhere after the form itself.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist