I have a VB.NET application that has a site.master with a navigation menu in landscape format.
In my default.aspx I have a multiview component. When I select the second view in my multiview the navigation menu momentarily changes to portrait format and then back to landscape format.
Ideally, I would like my navigation menu to remain in landscape orientation, or even supress the refresh of the site.master page. I don't know what is causing the component to perform the orientation change at run time so if any one knows what could be causing this, I would appreciate a reply.

Recommended Answers

All 2 Replies

To supress the refresh, try with an UpdatePanel once.. so that the required part updates, and the width size will not change

I beleive that I had a similar experience two occassion. Both times with menus. On one occassion it was with a horizontal menu and the other with a vertical menu.

If I understand you correctly, when the page refreshes, it appears that there is a delay in applying appropriate style. I assume that your navigation menu is created using an unordered list. You may be using an asp.net control, but the HTML renders as <ul>. Take a look at this thread that I submitted on this site:

http://www.daniweb.com/web-development/web-design-html-and-css/threads/435062/portion-of-css-slow-to-apply-on-page

I think the problem has to do with the delay in fetching the required CSS/JavaScript back from the web server via the webResource.axd.

here is an article I found that describes the function of this resource file. http://scottonwriting.net/sowblog/archive/2010/10/28/just-where-is-webresource-axd.aspx

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.