Click here to Skip to main content
15,923,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i apply rounded corner effect by ajax to all textbox in asp.net, i don't want to write each extender for every textbox.

I want the solution for IE 8.
Posted
Updated 4-May-13 0:57am
v2

Refer to this link.It should work in IE8 also.

JQuery for rounded corners[^]
 
Share this answer
 
v3
Comments
footballpardeep 4-May-13 7:02am    
Soory question was incomlete, i want the solution for IE 8 , and i am using ajax to solve the problem
Thanks7872 4-May-13 7:15am    
Have a look at the updated answer
Just apply CSS style border-radius. Include the css at app level so that it gets applied to all.
Sample:
CSS
input.example1 {
    border: 1px solid #DDD;
    border-radius: 5px;
    width: 165px;
    outline: none;
}

For CSS: http://sharp-coders.com/web-development/css/5-best-textbox-styles-using-css3[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900