vote up 1 vote down star

How can I remove the dotted border around an asp: Image button. The dotted border shows when I click on the image button. Thanks

flag
You're going to have to be much, much more specific if you want help. – Welbog Mar 17 at 18:35

4 Answers

vote up 3 vote down check

That's the focusing border added by the browser. For usability purposes, it's usually a bad idea to remove it unless you are doing something specific. It's very difficult to select controls using the keyboard without it.

If for some reason you REALLY need to remove it, I believe the other answers here may provide you with a solution. But as someone often concerned with usability, I would advise you to reconsider.

link|flag
vote up 1 vote down

It looks like you are talking about the focusing border added by the browser. There's a trick to do this with Javascript. Add the following to your image tag:

onfocus="this.blur();"
link|flag
vote up 1 vote down

Adding the following attribute/value to the imagebutton should produce the result you are looking for.

OnClientClick="this.blur();"
link|flag
+1 I prefer this way as opposed to the onfocus version. This will allow the usability on the keyboard, and only remove the dotted border when the user clicks. – Chris Sep 4 at 15:41
vote up 0 vote down

sound. onfocus="this.blur();" does the trick.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.