ComboBox |
The professional replacement for the classic ASP.NET DropDownList component. |
DataGrid |
The server control to display data in a tabular format with options of choice, sorting and editing entries. |
Include |
The server control to include a HTML files into your ASP.NET pages as Server Side Includes (SSI). |
Menu |
The server control to display both statically and dynamically created menus on your Web pages. |
Rating |
The server control to easily provide feedback on an article, blog item, product description, etc. |
TreeView |
The ASP.NET server control to display hierarchical data in a tree structure. |
|
|
I'm using ATLAS and have noticed that whenever the ATLAS updates part of the web page my menu loses style.
Atlas uses an Ajax for refreshing the entire body and damages the <style> is placed in the body. By default menu spits out the style into the body, but registered version is compatible with XHTML and allows using the style in the head section.
To resolve this issue you should use menu style in separate CSS file, which is linked in the <head> section. To use an external style you should:
- Take your menu's CSS Style file and put it into the folder "Styles", which is created in the folder where an ASPX page with menu is located.
- Set the CSSSource property value to Page.
- Add the instruction in the section of your web page:
<link rel="stylesheet" href="./Styles/CSSFile.CSS" type="text/css" />
APNSoft FAQ Manager 1.0 (38) © 2003-2024 APNSoft. All rights reserved. |
|