How can I use jQuery UI buttons style for my ASP.NET buttons? How can I do it in my Skin or some other way?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Can you not try to use the
CssClassproperty of the button and set it the relevant Jquery CSS class for that button?This possibly might work – you can verify what the correct Jquery classes are and update
Edit:
Just thought of this now, but since the Asp button results in and if you are targeting all submit buttons on a page
you could use some Jquery which selects all the inputs where the type equals submit and apply the Jquery CSS classes in one swoop.
I think it will be like this (syntax not verified)