如何判斷某個頁面是否在「傳統」ASP中處於SSL狀態?無法使用JavaScript,因爲我輸出的是「noscript」標籤的結果。 :D如何判斷某個頁面是否爲ASP中的SSL?
無法在IIS中進行更改或修改 - 必須位於腳本文件本身中。
例如 https://foobar/something.asp - >應該說是 http://foobar/something.asp - >應該說NO
如何判斷某個頁面是否在「傳統」ASP中處於SSL狀態?無法使用JavaScript,因爲我輸出的是「noscript」標籤的結果。 :D如何判斷某個頁面是否爲ASP中的SSL?
無法在IIS中進行更改或修改 - 必須位於腳本文件本身中。
例如 https://foobar/something.asp - >應該說是 http://foobar/something.asp - >應該說NO
我用這個來改變圖像鏈接到https避免怪異的IE消息:
<%
dim socket
If Request.ServerVariables("HTTPS") = "on" then
socket = "https"
else
socket = "http"
End if
%>
然後
<img src="<%response.write(socket)%>://website.com/images/logo.png" class="logo" alt="logo" />
這就是我需要的,謝謝! – 2009-04-10 15:42:36