Friday 24 July 2009

asp:Menu does not render correctly in Chrome fix

Just add this to your master page:

Protected Overloads Overrides Sub AddedControl(ByVal control As Control, ByVal index As Integer)
If Request.ServerVariables("http_user_agent").IndexOf("Safari", StringComparison.CurrentCultureIgnoreCase) <> -1 Then
Me
.Page.ClientTarget = "uplevel"
End If
MyBase
.AddedControl(control, index)
End Sub




Technorati Tags: ,

No comments: