i am having a server control (Asp:Label) and i want to apply the css class dynamically
but it is applying to the label in all browsers except in IE7
in all browsers the dynamic css classes are applying but in IE7 it is not applying
can u give any solution or any alternate solution
Thanks and Regards开发者_StackOverflow, Vara Prasad.M
When the html is rendered in IE7, does it properly show
<span class="liforrent" id="lblPrice"></span>
or something similar?
If so, what does your css look like? Are you using something like css hacks which can get misinterpreted by IE7?
Edit: I suggest you download and install Internet Explorer Developer Toolbar to see what styles are put over the span tag in IE7 and resolve it that way.
精彩评论