Hallo again,
today I've got a problem with a multilingual switch on my MasterPage.
The switch between 3 Languages works fine, but only if I click the Button 2 times. Here is the example
global.asax
Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
If Not Request.Cookies("Language") Is Nothing Then
Dim lang As String = Server.HtmlEncode(Request.Cookies("Language").Value)
Thread.CurrentThread.CurrentUICulture = New CultureInfo(lang)
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang)
End If
End Sub
Go to the complete details ...