當(dāng)前位置: 首頁IT技術(shù) → ASP程序和JS腳本代碼分享

ASP程序和JS腳本代碼分享

更多

這篇文章主要提供了幾組實(shí)用的ASP程序和JS腳本代碼給大家分享,希望能夠幫助到大家。

ASP與access數(shù)據(jù)庫連接:

<%@ language=VBscript%>
<%
dim conn,mdbfile
mdbfile=server.mappath("數(shù)據(jù)庫名稱.mdb")
set conn=server.createobject("adodb.connection")
conn.open "driver={ microsoft access driver (*.mdb) };uid=admin;pwd=數(shù)據(jù)庫密碼;dbq="&mdbfile
%>

基本的分頁代碼:

<%
Response.write "<b>>> 全部 - "
Response.write "共</font> " & "<font color=#FF0000>" & Cstr(Rs.RecordCount) & "</font>" & " 條信息</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
Response.write "<b>第&nbsp;" & "<font color=#FF0000>" & Cstr(CurrentPage) & "</font>" & "/" & Cstr(rs.pagecount) & "</b>&nbsp;&nbsp;&nbsp;&nbsp;"
If currentpage > 1 Then
response.write "<b><a href='?&page="+cstr(1)+"'>首頁</a></b>&nbsp;&nbsp;"
Response.write "<b><a href="/?page="+Cstr(currentpage-1)+"'>上一頁</a></b>&nbsp;&nbsp;"
Else
Response.write "<b>上一頁</b>&nbsp;&nbsp;"
End if
If currentpage < Rs.PageCount Then
Response.write "<b><a href="/?page="+Cstr(currentPage+1)+"'>下一頁</a>&nbsp;&nbsp;"
Response.write "<a href="/?page="+Cstr(Rs.PageCount)+"'>尾頁</a></b>&nbsp;&nbsp;"
Else
Response.write ""
Response.write "<b>下一頁</b>&nbsp;&nbsp;"
End if
%>

簡單的ASP程序密碼鎖,即瀏覽需身份驗(yàn)證的頁面:

使用ASP程序來給網(wǎng)頁進(jìn)行加密,一般來說利用程序來進(jìn)行密碼驗(yàn)證的方法比較通用,現(xiàn)在大多數(shù)網(wǎng)站都使用ASP程序,它對(duì)Web服務(wù)器沒有具體要求,而其加密就是借助數(shù)據(jù)庫及ASP程序進(jìn)行設(shè)計(jì),來實(shí)現(xiàn)一種通用網(wǎng)頁加密。

1. 打開 Microsoft Access,建立一個(gè)"用戶名及密碼"的數(shù)據(jù)表,假設(shè)將這個(gè)表取名為User,數(shù)據(jù)庫名為db.mdb

數(shù)據(jù)表的結(jié)構(gòu)如下:

字段說明 字段名稱 數(shù)據(jù)類型 數(shù)據(jù)長度

用戶名稱   ID    文本   15

用戶密碼   PWD   文本   15

2. 編輯一個(gè) Pass.asp 的驗(yàn)證文件,源代碼如下:

  <%
  Function Check( ID, Pwd )
  Dim conn, par, rs
  Set conn = Server.createObject("ADODB.Connection")
  par = "driver={ Microsoft Access Driver (*.mdb) } "
  conn.Open par && ";dbq=" && Server.MapPath("db.mdb ")
  sql = "select ? From users where ID='" && ID && "' And Pwd = '" && Pwd &&"'"
  Set rs = conn.Execute( sql )
  If rs.EOF Then
  Check= False
  Else
  Check= True
  End If
  End Function
  %>

  <%
  If IsEmpty(Session("Passed")) Then Session("Passed") = False
  Head = "請(qǐng)輸入用戶名和密碼"
  ID = Request("ID")
  Pwd = Request("Pwd")
  If ID = "" Or Pwd = "" Then
  Head = "請(qǐng)輸入用戶名和密碼"
  Else If Not Check( ID, Pwd ) Then
  Head = "用戶名稱或密碼有錯(cuò)"
  Else
  Session("Passed") = True
  End If
  If Not Session("Passed") Then
  %>
  <html>
  <head>
<title></title>
</head>
  <body BGCOLOR="#FFFFFF">
  <h2 ALIGN="CENTER"><%=Head%></h2>
  <hr WIDTH="100%">
  <form Action="<%=Request.ServerVariables("PATH_INFO")%>" Method="POST">
  <table BORDER="1" CELLSPACING="0">
  <tr>
  <td ALIGN="RIGHT">用戶名稱:</td>
  <td><input Type="Text" Name="ID" Size="12" Value="<%=ID%>"></td>
  </tr>
  <tr> <td ALIGN="RIGHT">密碼:</td>
  <td><input Type="Password" Name="Pwd" Size="12" Value="<%=Pwd%>"></td></tr>
  </table>
  <p><input Type="Submit" Value="確定"></p></form>
  <hr WIDTH="100%" align="center">
  </body>
</html>
  <%Response.End
  End If %>

3. 在需要加密網(wǎng)頁的HTML代碼最前面加上 <! --#i nclude file="pass.asp"--> 就可以了。由于這個(gè)驗(yàn)證合法性的頁面具有通用性,所以非常方便使用。

禁止復(fù)制和右鍵菜單的腳本及代碼:

1、<body oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>

2、<body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false">

3、<script type="text/java script">
document.body.oncut=function(){ return false; };
document.body.onselectstart=function(){ return false; };
var printBody=document.getElementById("printBody");
if (printBody!=undefined){
printBody.oncopy=function(){ return false; };
}
</script>

4、<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false" onMouseOver="window.status='狀態(tài)欄';return true">

5、<body oncontextmenu="return false" onselectstart ="return false">

最簡單的是第五種,最原始的代碼就是:oncontextmenu="return false" 禁右鍵,onselectstart ="return false" 禁選中,用在<body>屬性里,以前一直很管用,包括現(xiàn)在放IE里瀏覽也很靈,但隨著第三方功能強(qiáng)大的瀏覽器的出現(xiàn),及各種實(shí)用插件的發(fā)明,象EnableRightClick這個(gè)插件就把禁選中和鼠標(biāo)的鎖右鍵輕松破解了,歸根結(jié)底是防菜鳥和懶人的,真的要破除限制,即使沒有插件幫忙,一樣能搞定。其它的幾個(gè)增加了一些額外的參數(shù),如第4個(gè)加入了狀態(tài)欄信息。 第3個(gè)不同于其它四個(gè)(算是嵌入HTML代碼),是加入的腳本,還有以前那些擊右鍵就彈出收藏夾或是"禁止復(fù)制"的提示,現(xiàn)在來看都是弱智型的了。

浮動(dòng)的圖片層,位置固定的:

<SCRIPT>
var sgImg="圖片URL"
var sgWidth=63
var sgHeight=300
var sgLink="鏈接URL"
var sgNS=(document.layers)?true:false
if(sgNS){ document.write('<LAYER ID="Corner" WIDTH='+sgWidth+' HEIGHT='+sgHeight+'><A href="'+sgLink+'" target=_blank><IMG src="'+sgImg+'" BORDER=0 WIDTH="'+sgWidth+'" HEIGHT="'+sgHeight+'"></A></LAYER>'); }else{ document.write('<DIV ID="Corner" STYLE="position:absolute; width:'+sgWidth+'; height:'+sgHeight+'; z-index:9; filter: Alpha(Opacity=70)"><A href="'+sgLink+'" target=_blank><IMG src="'+sgImg+'" BORDER=0 WIDTH="'+sgWidth+'" HEIGHT="'+sgHeight+'"></A></DIV>'); }
function StayCorner(){ var sgTop;var sgLeft
if(sgNS){ sgTop = pageYOffset+window.innerHeight-document.Corner.document.height-10;sgLeft = pageXOffset+window.innerWidth-document.Corner.document.width-10;document.Corner.top = sgTop;document.Corner.left = sgLeft; }else{
sgTop = document.body.scrollTop+document.body.clientHeight-document.all.Corner.offsetHeight-30;sgLeft = document.body.scrollLeft+document.body.clientWidth-document.all.Corner.offsetWidth-5;Corner.style.top = sgTop;Corner.style.left = sgLeft; }
setTimeout('StayCorner()', 50) }
sgDump = StayCorner()
</SCRIPT>

返回上一步

以下兩種都可以:

<a href="/java script:history.back"()>返回</a>

<a href="/java script:history.go"(-1)>返回</a>

額外參數(shù)(ASP):返回上一步時(shí)強(qiáng)制瀏覽器重新訪問服務(wù)器下載頁面,非從緩存讀取頁面,實(shí)際上等于返回到上一步再刷新一次,以確保頁面信息的時(shí)效性:

<%
Response.Buffer = True
Response.Expires = 1000
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>

去掉點(diǎn)擊圖片鏈接后圖片周圍的虛線:

1、調(diào)用方式:

<public:attach event="onfocus" onevent="example()" />
<script language="java script">
function example(){
this.blur();
}
</script>

//將以上代碼存為以.htc為擴(kuò)展名的文件,然后再編寫一個(gè)普通的HTML頁。

<html>
<head>
<style>
A { behavior:url(HTC文件所在的路徑地址,完整URL) }
</style>
<body>網(wǎng)頁內(nèi)容……
</body>
</html>

2、單獨(dú)的圖片文件:

圖片屬性里的語法為:onFocus="this.blur()" ,比如:

<a href="#" onFocus="this.blur()"><img src="圖片URL" border=0></a>

禁止提示腳本的錯(cuò)誤信息的小腳本:

<SCRIPT LANGUAGE="java script">
<!-- Hide
function killErrors() {
return true;
}
window.onerror = killErrors;
// -->
</SCRIPT>

頁面上腳本語法搞錯(cuò),有錯(cuò)誤提示,卻又搞不定,而頁面功能無礙的情況下,可以這樣偷個(gè)懶,把錯(cuò)誤提示隱藏掉

熱門評(píng)論
最新評(píng)論
發(fā)表評(píng)論 查看所有評(píng)論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過審核才能顯示)