Please note: In an effort to better serve you, we are in the process of restructuring DevCenter. In the process, we have moved many items that you may be used to finding in DevCenter over to the Main Site. If you are having trouble locating something, please try looking at the following places:
There is a limitation in Internet Explorer where style tags after the first 30 on a web page are not applied. Subsequently, some controls on a web page, NetAdvantage or not, can lose their formatting and style information. The way to work around this limitation is to use CSS to style the page.
An MSDN article containing more information regarding this limitation can be found using the following link:http://support.microsoft.com/kb/q262161Please note that the above article is neither authored nor maintained by Infragistics.You can work around this style tag limitation by using a CSS class to store the style information for the entire page. Using a CSS class will also reduce the amount of HTML that is generated and will normally result in a small performance increase in the rendering process.
The following steps will show you how to create a simple CSS style sheet and apply it to a page which contains an UltraWebTab control.1. Create a new CSS style sheet.2. Add the following code to the CSS style sheet; save it as WebTab.css.In CSS:
3. Include the newly created CSS style sheet in the web page we wish to use it in (between the <Head></Head> tags):In HTML:
4. Assign the CSS style sheet to the main control in the Properties window:UltraWebTab.CssClass = WebTab.css5. For each group assigned in the CSS sheet assign the relevant class to each style on the control, in the Properties window:SelectTabStyle.CssClass = SelectedTabStyleRepeat this for the remaining groups: DefaultTabStyle, SelectedTabStyle, HoverTabStyleReview:This article steps through the process of working around the style tag limitation in Internet Explorer by using CSS to style NetAdvantage controls. It also covers the basics of creating and using a CSS style sheet.