ASP快速开发方法之数据操作(2)_ASP教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
推荐:ASP实例:即时显示当前页面浏览人数ASP实现即时显示当前页面浏览人数 online.asp文件 以下为引用的内容: <!--#include file="dbconn.asp" --> <% onlineTimeout=10
那我再改进下:
把conn.asp文件改成:
以下为引用的内容: <% Dim Conn Dim Rs Sub CloseDatabase Conn.close Set Conn = Nothing End Sub Sub OpenDatabase Dim StrServer,StrUid,StrSaPwd,StrDbName StrServer="192.168.1.1" '数据库服务器名 StrUid="sa" '您的登录帐号 StrSaPwd="" '您的登录密码 StrDbName="cnbruce.mdb" '您的数据库名称 Set Conn = Server.CreateObject("ADODB.Connection") '用于连接ACCESS Conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath(StrDbName) '用于连接MSSQL 'Conn.ConnectionString = "Driver={sql server};driver={SQL server};server="&StrServer&";uid="&StrUid&";pwd="&StrSaPwd&";database= "&StrDbName set rs=server.CreateObject("ADODB.RecordSet") conn.open if Err Then err.Clear Set Conn = Nothing GBL_CHK_TempStr = GBL_CHK_TempStr & "数据库连接错误!" Response.Write GBL_CHK_TempStr Response.End End If End Sub %> |
现在我们的showit.asp可以这样写:
showit.asp
以下为引用的内容: <!--#include file="conn.asp" --> <% sql = "Select * from cnarticle" opendatabase rs.Open sql,conn,1,1 If not Rs.eof then Do Until rs.EOF response.write("文章标题是:"& rs("cn_title")) response.write("<br>文章作者是:"& rs("cn_author")) response.write("<br>文章加入时间是:"& rs("cn_time")) response.write("<br>文章内容是:"& rs("cn_content")) response.write("<hr>") rs.MoveNext Loop else response.write ("暂时还没有文章") end if Closedatabase %> |
嗯,我们又少写了一些东西,这样是最简单的吗?当然不是!还可以更简单。
使用GetRows把查询出来的数据传给一个变量,使用ubound方法取得数据记录条数。
不明白?没关系,让我们继续往下看:
再建个文件:sql.asp
sql.asp
以下为引用的内容: <% Class DataTable public Function SelectData(sql) If sql<>"" then opendatabase Rs.open sql,conn,1,1 If not Rs.eof then Thedata=Rs.GetRows(-1) Closedatabase Else Closedatabase End If End If SelectData=Thedata End Function End Class %> |
嗯,复制它就可以了,现在我们的showit.asp可以简单地这样写:
showit.asp
以下为引用的内容: <!--#include file="conn.asp" --> <!--#include file="sql.asp" --> <% sql = "Select * from cnarticle" set loadData=new DataTable Thedata=loadData.SelectData(sql) If isarray(Thedata) then Num=ubound(Thedata,2) for i=0 to Num response.write("文章标题是:"& Thedata(1,i)) response.write("<br>文章作者是:"& Thedata(2,i)) response.write("<br>文章加入时间是:"& Thedata(3,i)) response.write("<br>文章内容是:"& Thedata(4,i)) response.write("<hr>") next else response.write("暂时还没有文章") End If %> |
分享:ASP教程:解决ASP脚本运行超时的方法最近在学习服务器知识。有时候遇到asp脚本运行超时的错误,真是麻烦。找了相关资料,其中有一些解决方法。 IIS默认的脚本超时时间是90秒 这样的话如果你是上传软件或者传送数据大于90秒的时
相关ASP教程:
- 相关链接:
- 教程说明:
ASP教程-ASP快速开发方法之数据操作(2)。