How can i make asp.net control cross browser compatible?
it is compatible with IE only.
Let me know the best steps to do this.
views:
58answers:
3
A:
Use firebug to see which properties of the control behave differently in Firefox, and update them to standards.
RA
2009-12-10 08:14:46
+2
A:
If you cannot change the source code for the control you can still change it's rendering by implementing a ControlAdapter
derived class.
A ControlAdapter
allows you to override how a control is rendered, making it compatible with more browsers or more suitable for css styling. For ASP.Net 2.0 Microsoft released a package of CSS Friendly Control Adapters that you may want to look at.
Rune Grimstad
2009-12-10 08:22:30
A:
I think ASP.NET controls are cross browser compatible. The issue occurs when control are placed on page & page is rendered. This can be fixed either by modifying inline style or by using css files.
Manoj
2009-12-10 09:14:07