Hello Sal,
Please keep the below code in top of all pages , it will redirect from http to https.
Code:
IF Request.ServerVariables("HTTPS")="off" THEN
IF LEN(Request.ServerVariables("QUERY_STRING"))>0 THEN
Response.Redirect "https://" + Request.ServerVariables("SERVER_NAME")+ Request.ServerVariables("URL")+"?"+Request.ServerVariables("QUERY_STRING")
ELSE
Response.Redirect "https://" + Request.ServerVariables("SERVER_NAME")+ Request.ServerVariables("URL")
END IF
END IF
Thank you,
Ganges.