I think i am missing something in https...
Currently i am using this to redirect the desired page from http to https
If Not Request.IsSecureConnection Then
Dim serverName As String = HttpUtility.UrlEncode(Request.ServerVariables("SERVER_NAME"))
Dim filePath As String = Request.FilePath
Response.Redirect(("https://" & serverName) + filePath)
End If
Should i declare somewhere in the web.config the absolut links for https?
p.s. My links are relative