Search

You searched for the word(s): userid:892728

Matching Posts

  • Re: Chrome only renders menu first time

    BTW, if you want to be more accurate and prevent possible Adapter problems of other controls, you can add a code block inside the IF, to search for the specific asp:Menu adapter, and kill it.
  • Re: Chrome only renders menu first time

    Hi! I had the same problem, and there's a simple fix, which I took from here: http://dotnetslackers.com/Community/blogs/kaushalparik/archive/2009/02/13/asp-menu-server-control-cross-browser-compatibility-safari-chrome.aspx add this: if (Request.UserAgent.IndexOf("AppleWebKit") > 0) { Request.Browser.Adapters.Clear(); } to your Page_Init or Page_Load event (in master page if you want), and this will fix all the problems: the CSS rendering problem, the "rendering only first time"
Page 1 of 1 (2 items)