首页 > 建站教程 > ASP教程 >  ASP常用源代码的总结(下)_应用技巧正文

ASP常用源代码的总结(下)_应用技巧

ASP是Active Server Page的缩写,意为“动态服务器页面”。ASP是微软公司开发的代替CGI脚本程序的一种应用,它可以与数据库和其它程序进行交互,是一种简单、方便的编程工具。

11.ACCESS数据库连接:

01<% 
02option explicit 
03dim startime,endtime,conn,connstr,db 
04startime=timer() 
05'更改数据库名字 
06db="data/dvBBS5.mdb" 
07Set conn = Server.CreateObject("ADODB.Connection") 
08connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(db) 
09'如果你的服务器采用较老版本Access驱动,请用下面连接方法 
10'connstr="driver={Microsoft Access Driver (*.mdb)};dbq=" & Server.MapPath(db) 
11conn.Open connstr 
12function CloseDatabase 
13Conn.close 
14Set conn = Nothing 
15End Function 
16%>

12.SQL数据库连接:

01<% 
02option explicit 
03dim startime,endtime,conn,connstr,db 
04startime=timer() 
05connstr="driver={SQL Server};server=HUDENQ-N11T33NB;uid=sa;pwd=xsfeihu;database=dvbbs" 
06Set conn = Server.CreateObject("ADODB.Connection"
07conn.Open connstr 
08function CloseDatabase 
09Conn.close 
10Set conn = Nothing 
11End Function 
12%>

13.用键盘打开网页代码: 

1<script language="javascript"
2function ctlent(eventobject) 
3
4if((event.ctrlKey && window.event.keyCode==13)||(event.altKey && window.event.keyCode==83)) 
5
6window.open('网址','',''
7
8
9</script>

这里是Ctrl+Enter和Alt+S的代码 自己查下键盘的ASCII码再换就行

14.让层不被控件复盖代码:

1<div z-Index:2><object xxx></object></div> # 前面 
2<div z-Index:1><object xxx></object></div> # 后面 
3<div id="Layer2" style="position:absolute; top:40;width:400px; height:95px;z-index:2">
4<table height=100% width=100% bgcolor="#ff0000"><tr>
5<td height=100% width=100%></td></tr></table><iframe width=0 height=0></iframe></div
6<div id="Layer1" style="position:absolute; top:50;width:200px; height:115px;z-index:1">
7<iframe height=100% width=100%></iframe></div>

15.动网FLASH广告代码:

1<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
2codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0
3 width="468" height="60">
4<param name=movie value="images/yj16d.swf">
5<param name=quality value=high>
6<embed src="images/dvbanner.swf" quality=high
7pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash;
8;;;;;;;;;;; type="application/x-shockwave-flash" width="468" height="60"></embed></object>

16.VBS弹出窗口小代码:

1<script language=vbscript> 
2msgbox"你还没有注册或登陆论坛","0","精品论坛" 
3location.href = "login.asp" 
4</script>

17.使用FSO修改文件特定内容的函数:

01function FSOchange(filename,Target,String) 
02Dim objFSO,objCountFile,FiletempData 
03Set objFSO = Server.CreateObject("Scripting.FileSystemObject"
04Set objCountFile = objFSO.OpenTextFile(Server.MapPath(filename),1,True) 
05FiletempData = objCountFile.ReadAll 
06objCountFile.Close 
07FiletempData=Replace(FiletempData,Target,String) 
08Set objCountFile=objFSO.CreateTextFile(Server.MapPath(filename),True) 
09objCountFile.Write FiletempData 
10objCountFile.Close 
11Set objCountFile=Nothing 
12Set objFSO = Nothing 
13End Function

18.使用FSO读取文件内容的函数:

1function FSOFileRead(filename) 
2Dim objFSO,objCountFile,FiletempData 
3Set objFSO = Server.CreateObject("Scripting.FileSystemObject"
4Set objCountFile = objFSO.OpenTextFile(Server.MapPath(filename),1,True) 
5FSOFileRead = objCountFile.ReadAll 
6objCountFile.Close 
7Set objCountFile=Nothing 
8Set objFSO = Nothing 
9End Function

19.使用FSO读取文件某一行的函数:

01function FSOlinedit(filename,lineNum) 
02if linenum < 1 then exit function 
03dim fso,f,temparray,tempcnt 
04set fso = server.CreateObject("scripting.filesystemobject"
05if not fso.fileExists(server.mappath(filename)) then exit function 
06set f = fso.opentextfile(server.mappath(filename),1) 
07if not f.AtEndofStream then 
08tempcnt = f.readall 
09f.close 
10set f = nothing 
11temparray = split(tempcnt,chr(13)&chr(10)) 
12if lineNum>ubound(temparray)+1 then 
13exit function 
14else 
15FSOlinedit = temparray(lineNum-1) 
16end if 
17end if 
18end function

20.使用FSO修改文件特定内容的函数:

01function FSOchange(filename,Target,String) 
02Dim objFSO,objCountFile,FiletempData 
03Set objFSO = Server.CreateObject("Scripting.FileSystemObject"
04Set objCountFile = objFSO.OpenTextFile(Server.MapPath(filename),1,True) 
05FiletempData = objCountFile.ReadAll 
06objCountFile.Close 
07FiletempData=Replace(FiletempData,Target,String) 
08Set objCountFile=objFSO.CreateTextFile(Server.MapPath(filename),True) 
09objCountFile.Write FiletempData 
10objCountFile.Close 
11Set objCountFile=Nothing 
12Set objFSO = Nothing 
13End Function

21.使用FSO读取文件内容的函数

1function FSOFileRead(filename) 
2Dim objFSO,objCountFile,FiletempData 
3Set objFSO = Server.CreateObject("Scripting.FileSystemObject"
4Set objCountFile = objFSO.OpenTextFile(Server.MapPath(filename),1,True) 
5FSOFileRead = objCountFile.ReadAll 
6objCountFile.Close 
7Set objCountFile=Nothing 
8Set objFSO = Nothing 
9End Function

22.使用FSO读取文件某一行的函数:

01function FSOlinedit(filename,lineNum) 
02if linenum < 1 then exit function 
03dim fso,f,temparray,tempcnt 
04set fso = server.CreateObject("scripting.filesystemobject"
05if not fso.fileExists(server.mappath(filename)) then exit function 
06set f = fso.opentextfile(server.mappath(filename),1) 
07if not f.AtEndofStream then 
08tempcnt = f.readall 
09f.close 
10set f = nothing 
11temparray = split(tempcnt,chr(13)&chr(10)) 
12if lineNum>ubound(temparray)+1 then 
13exit function 
14else 
15FSOlinedit = temparray(lineNum-1) 
16end if 
17end if 
18end function

到此,关于ASP常用代码的总结篇,就为大家介绍完了,希望对大家有帮助。