ASP.NET – Enable disabled buttons in Firefox and Chrome

Disabled buttons are enabled in Firefox and Chrome. I opened the same page in ie, firefox, and chrome, this is the output:

alt text http://i48.tinypic.com/2f0a81t.jpg

“DashBoard” and “Calendar” are disabled
“Proxy Information” is enabled.

In Here, I use regular asp buttons with CSS.
What should I do?

You can add css to the disabled button. It’s like

input[disabled="disabled"] {/* disabled styles */ }

Disabled buttons are enabled in Firefox and Chrome . I opened the same page in ie, firefox, chrome, this is the output:

alt text http://i48.tinypic.com/2f0a81t.jpg

“DashBoard” and “Calendar” are disabled
“Proxy Information” is enabled.

Here, I use regular asp buttons with CSS.
What should I do?

You can add css for the disabled button. It’s like

input[disabled= "disabled"] {/* disabled styles */ }

Leave a Comment

Your email address will not be published.