Yes i am using a Redirect to the French page.
Here is my code but since our servers got change to Windows Server 2003, i am getting this problem. Could it be a configuration in IIS?
CODE
Private Sub Button_Language_Change_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button_Language_Change.Click
'Could be more than 1 page passing here
Dim redirectURL As String = Request.UrlReferrer.AbsoluteUri.Replace("/EN", "/FR")
Response.Redirect(redirectURL)
End Sub
When redirecting, in the address bar i saw the HTTPS but the UrlReferrer.AbsoluteUri eliminates it by putting HTTP on the french page.
QUOTE(jayman9 @ 15 Feb, 2008 - 01:26 PM)

Post the code that is relevant to when you change languages.
Are you using a Redirect to change to the French page?
Without showing your code it is difficult to say exactly why are having this issue.