Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 85517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:06:07+00:00 2026-05-10T22:06:07+00:00

The site I’m working on is using a Databound asp:Menu control. When sending 1

  • 0

The site I’m working on is using a Databound asp:Menu control. When sending 1 menu item it renders HTML that is absolutely correct in Firefox (and IE), but really messed up code in Safari and Chrome. Below is the code that was sent to each browser. I’ve tested it a few browsers, and they are all pretty similarly rendered, so I am only posting the two variations on the rendering source.

My question is: How do I get ASP.NET to send the same html and javascript to Chrome and Safari as it does to Firefox and IE?

<!-- This is how the menu control is defined --> <asp:Menu ID='menu' runat='server' BackColor='#cccccc'     DynamicHorizontalOffset='2' Font-Names='Verdana' StaticSubMenuIndent='10px' StaticDisplayLevels='1'     CssClass='left_menuTxt1' Font-Bold='true' ForeColor='#0066CC'>     <DataBindings>         <asp:MenuItemBinding DataMember='MenuItem' NavigateUrlField='NavigateUrl' TextField='Text'             ToolTipField='ToolTip' />     </DataBindings>     <StaticSelectedStyle BackColor='#0066CC' HorizontalPadding='5px' VerticalPadding='2px'         Font-Names='Verdama' CssClass='left_menuTxt1' Font-Bold='true' />     <StaticMenuItemStyle HorizontalPadding='5px' VerticalPadding='8px' />     <DynamicMenuStyle BackColor='#fbfbfb' BorderColor='#989595' BorderStyle='Inset' BorderWidth='1'         Width='80px' VerticalPadding='1' />     <DynamicMenuItemStyle HorizontalPadding='5px' VerticalPadding='2px' Font-Name='Verdama'         ForeColor='#c6c4c4' CssClass='left_menuTxt1' Font-Bold='true' />     <DynamicSelectedStyle BackColor='#cccccc' HorizontalPadding='5px' VerticalPadding='2px'         Font-Names='Verdama' CssClass='left_menuTxt1' Font-Bold='true' /> </asp:Menu> <!-- From Safari View Page Source (Chrome source very similar) --> <span title='Order' class='ctl00_leftNav_menu_4'> <a class='ctl00_leftNav_menu_1 ctl00_leftNav_menu_3'    href='javascript:__doPostBack('ctl00$leftNav$menu','oMy Order')'> My Order <img src='/WWW/WebResource.axd?d=glUTEfEv7p9OrdeaMxkMzhqz2JugrMr8aE43O2XGHAA1&amp;t=633590571537099818'  alt='Expand My Order'  align='absmiddle'  style='border-width:0px;' /></a></span><br />   <!-- From Firefox View Page Source (IE View page similar) --> <table> <tr onmouseover='Menu_HoverStatic(this)'      onmouseout='Menu_Unhover(this)'      onkeyup='Menu_Key(event)'      title='Order'      id='ctl00_leftNav_menun0'>   <td>     <table class='ctl00_leftNav_menu_4' cellpadding='0' cellspacing='0' border='0' width='100%'>      <tr>        <td style='white-space:nowrap;width:100%;'>           <a class='ctl00_leftNav_menu_1 ctl00_leftNav_menu_3'               href='../Order/OrderList.aspx'> My Order           </a>        </td>        <td style='width:0;'>            <img src='/WWW/WebResource.axd?d=glUTEfEv7p9OrdeaMxkMzhqz2JugrMr8aE43O2XGHAA1&amp;t=633590571537099818'                  alt='Expand My Order' style='border-style:none;vertical-align:middle;' />        </td>      </tr>   </table>  </td> </tr> </table> 

Update: My solution post is correct.. but i can’t mark my own as correct… so if anyone wants to copy it so I can close this. 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:06:07+00:00Added an answer on May 10, 2026 at 10:06 pm

    I found this solution from a comment on weblogs.asp.net. It might be a hack, but it does work.

    This cross browser compatibility struggle is getting upsetting.

     if (Request.UserAgent.IndexOf('AppleWebKit') > 0)     {          Request.Browser.Adapters.Clear();      } 

    If anyone has a better solution that’s not so much a hack, I would be grateful if you posted it. And from my extensive web searches, it looks like I’m not alone with this problem with the menu control, so some good references would help out others in the same situation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 103k
  • Answers 104k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You could load the data from the CAD system in… May 11, 2026 at 8:29 pm
  • Editorial Team
    Editorial Team added an answer If you know the revision numbers of the two builds… May 11, 2026 at 8:29 pm
  • Editorial Team
    Editorial Team added an answer To import CSV data into MySQL you can use a… May 11, 2026 at 8:29 pm

Related Questions

Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
The site I'm working on is using a Databound asp:Menu control. When sending 1
The site I'm working on is running Windows Server 2003 and SQL Server 8
The Zend Framework based site I have been working on is now being migrated

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.