Forum Moderators: open
Maybe I'm a little foggy today, but I just can't seem to get a dynamic url to show.
What I am doing is using MS's little include script to activate SSL for specific pages
<%
If Request.ServerVariables("SERVER_PORT")=80 then
Dim strSecureURL
strSecureURL = "https://"
strSecureURL = strSecureURL & Request.ServerVariables("SERVER_NAME")
strSecureURL = strSecureURL & Request.ServerVariables("URL")
Response.Redirect strSecureURL
End If
%>
But I want it to include the querystring variables as well in my dynamic pages.
Thanks for anything you folks can help me with.
This is what I have on my site with the redirect. I have also done the same on a test site, but substituted the response.redirect with a response.write. The write gives the exact URL with the querystrings included. When I try to nav to the page with the redirect as an include, it just goes to the base url without including the querystrings