Possible Duplicate:
Difference between these WebKit ASP:Menu fixes
I am currently working on a project when I ran into a problem with my menu control. The menu control works fine in IE and Firefox but it did not work properly in Chrome (the dropdown list wouldn’t appear). I looked for a fix or a workaround and found the following bit of code.
if (Request.UserAgent.IndexOf("AppleWebKit") > 0)
{
Request.Browser.Adapters.Clear();
}
This fix I found worked fine for me, but I would like to know what is actually going on rather than just throwing it in my code and not understanding why.