Click here to Skip to main content
15,867,686 members
Articles / Web Development / CSS
Tip/Trick

ASP.NET Menu Control Issue in Chrome and Safari

Rate me:
Please Sign up or sign in to vote.
4.94/5 (11 votes)
26 Jul 2012CPOL1 min read 90.1K   171   5   25
ASP.NET menu control not shown properly in Chrome and Safari

Introduction

While using ASP.NET menu control at that time, Safari as well as Chrome did not render that control properly. That’s the reason why mouse over does not work properly in Chrome and Safari with ASP.NET menu control as shown in the below images.

Safari

Chrome

While it's working perfectly with Mozilla Firefox and Internet Explorer.

IE9

Mozilla Firefox

Solutions

As you can see, the look and feel of the main menu is different. Submenu does not show up. So what is the solution for this? I searched Google and found that these 3 solutions work perfectly.

Method 1

  1. Go to Solution Explorer in Visual Studio and add “ASP.NET Folder” named “APP_Broswers”.
  2. Add new item “Browser File” to this special folder and name it “safari.browser” for both browser Chrome as well as Safari.
  3. Now delete all per-added data from safari.browser file.
  4. Now add the following tags to that browser file:
    XML
    <browsers> 
        <browser refID="safari1plus"> 
            <controlAdapters> 
              <adapter controlType="System.Web.UI.WebControls.Menu" 
              adapterType="" /> 
            </controlAdapters> 
        </browser> 
    </browsers>
  5. Now, the only thing is that you need to save that file.

Steps

Method 2

The other solution is using Server side code. For fixing bug, we need to write these two lines of code to each and every Page's Page_PreInit event, or if MasterPage file is used, then there is no need to add these lines to each and every page, just copy and paste these lines to only MasterPage's Page_PreInit event. This code works for both Safari as well as Chrome.

C#
protected void Page_PreInit(object sender, EventArgs e)
{
    if(Request.ServerVariables["http_user_agent"].IndexOf
    ("Safari",StringComparison.CurrentCultureIgnoreCase) != -1)
    {
        Page.ClientTarget = "uplevel";
    }
}

OR Use this alternate code

C#
protected void Page_PreInit(object sender, EventArgs e)
{
  if (Request.UserAgent.Contains("AppleWebKit")) 
     Request.Browser.Adapters.Clear();
}

After applying any of these changes, ASP.NET menu works properly in all browsers like Mozilla Firefox, Internet Explorer, Safari and Chrome.

Chrome

Safari

Enjoy the trick!!!

License

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


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionthrown error.. Pin
ravi teja .k18-Dec-12 4:38
ravi teja .k18-Dec-12 4:38 
AnswerRe: thrown error.. Pin
Tejas Vaishnav18-Dec-12 22:24
professionalTejas Vaishnav18-Dec-12 22:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.