Making the cursor to blink more visibly...

  • Thread starter Thread starter smith Smith
  • Start date Start date
S

smith Smith

How to make the cursor visibility more in the text box ? I have developed
the application which has more text boxes to enter the data, its hard for
the user to locate where the cursor is when working with the application.
-smith
 
How to make the cursor visibility more in the text box ? I have developed
the application which has more text boxes to enter the data, its hard for
the user to locate where the cursor is when working with the application.
-smith
Since ASP, or asp.net apps are only HTML documents in the end, there
is not much you can do with the cursor. It's controlled by the
browser. However, you can easily do something with the textbox it is
in. Take a look at the onfocus and onblur events and consider using
the textbox background color to signify which is "current".
 
Back
Top