ASP實現隱藏網頁代碼的一種方法

來源:互聯網
上載者:User
網頁

  思路:

  在html.asp中用<script src="js.asp"></script>方式來顯示內容,在html.asp代碼中,設定一個session,在js.asp進行判斷,如果是設定的值就顯示正常內容,如果不是,就隱藏或顯示其它內容,在js.asp的結尾把session值改變,在html.asp和js.asp中都加一段代碼,使得遊覽器不快取頁面面只能做到簡單的隱藏,使用工具軟體可以看到源檔案,範例程式碼:

  html.asp程式碼:

<%
Response.Expires = 0
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看代碼 - www.51windows.Net</title>
<style>
<!--
td { font-family: Tahoma; font-size: 8pt; color: #000080; line-height: 150%;
border: 1 solid #666666; padding: 4 }
-->
</style>
</head>
<body>
<%
session("haiwa") = "hw"
%>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="480">
<tr>
<td id="tmp"><SCRIPT LANGUAGE="JavaScript" src="js.asp" id="js"></SCRIPT></td>
</tr>
</table>
</center>
</div>
</body>
</html>

js.asp程式碼:

<%
Response.Expires = 0
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
if session("haiwa") <> "hw" then
response.write "//歡迎查看源檔案"
response.end
end if
%>
//高,這你都能看得出來。我沒有招了。。哈哈
document.write ("  先做後想,先想後做,邊想邊做;只想不做,只做不想,不想不做。------世界是幾乎都被這六種人涵蓋了,如果作為個人能清楚的分析並看出自己屬於哪一類人,至少證明你自己是個聰明人。")
<%
session("haiwa") = ""
%>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.