Click here to Skip to main content
15,893,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello All
I'm Using ASP.net Menu Using Sitemap DataSource.
the menu is displaying correctly in IE But when it comes to Mozilla firefox & Opera The ASP.net Menu Shows only First Subnode in The mENU.
pLEASE help me finding proper solution for the above problem?
Posted

1 solution

I had this problem once. You can do try one of the following:

In the page load event:
C#
if (Request.UserAgent.IndexOf("AppleWebKit") > 0)
{
    Request.Browser.Adapters.Clear();
}


If the above doesn't fix the issue for you, you can also try the following link:
http://weblogs.asp.net/dannychen/archive/2005/12/16/433332.aspx
 
Share this answer
 
Comments
Dalek Dave 27-Jan-11 4:12am    
Good Call.
Ryan Zahra 27-Jan-11 4:16am    
Thanks ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900