I'm attempting to add SSL certification to one of my web pages. This web uses an asp page to grab the client's IP address, and then is later written to a database. If I call this web page using a https link I'm asked if I want to display the non-secure items. If I answer no, I get the padlock but I don't get the results from the asp. If I answer yes, I get the results from the asp but the padlock isn't displayed. Some how I need to add the https code to the asp, Can anyone help.
The page that calls the asp contains the following code.
<script>
document.buffer.location.href="</script>
ip.asp contains the following code
<%
LOGIN_IP=request.servervariables("remote_addr"
response.write login_ip
%>
<script>
parent.document.form1.T_LOGIN_IP.value="<% = login_ip %>"
// parent.document.frames.buffer.location.href=
</script>
Thanks
The page that calls the asp contains the following code.
<script>
document.buffer.location.href="</script>
ip.asp contains the following code
<%
LOGIN_IP=request.servervariables("remote_addr"
response.write login_ip
%>
<script>
parent.document.form1.T_LOGIN_IP.value="<% = login_ip %>"
// parent.document.frames.buffer.location.href=
</script>
Thanks