How to use ASP & Access Display Multiple Column and Paging/Pagination This is tutorial asp developers how to using ASP list data from ms access table and display result of multiple column and showing data in pagination.
ShotDev Focus:
- ASP & Microsoft Access list data , multiple column and pagination.
Example
asp_access_column_pagination.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim Conn,strSQL,objRec,intRows Set Conn = Server.Createobject("ADODB.Connection") Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("db/mydatabase.mdb"),"" , "" strSQL = "SELECT * FROM gallery " Set objRec = Server.CreateObject("ADODB.Recordset") objRec.Open strSQL, Conn, 1,3 If objRec.EOF Then Response.write (" Not found record.") Else Dim PageLen,PageNo,TotalRecord,TotalPage,No,intID PageLen = 4 PageNo = Request.QueryString("Page") if PageNo = "" Then PageNo = 1 TotalRecord = objRec.RecordCount objRec.PageSize = PageLen TotalPage = objRec.PageCount objRec.AbsolutePage = PageNo Response.Write("<table border='0' cellspacing='1' cellpadding='1'><tr>") No=1 Do While Not objRec.EOF and No <= PageLen Response.Write("<td>") %> <center> <img src="shotdev/<%=objRec.Fields("Picture").Value%>"><br> <%=objRec.Fields("GalleryName").Value%> <br> </center> <% Response.Write("</td>") If No Mod 2 = 0 Then Response.Write("</tr>") End If No = No + 1 objRec.MoveNext Loop Response.Write("</tr></table>") End If objRec.Close() Conn.Close() Set objRec = Nothing Set Conn = Nothing %> <br> Total : <%=TotalRecord%> Records. Page <%=PageNo%> (All Page <%=TotalPage%>) <% IF Cint(PageNo) > 1 then %> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Page=1"><< First</a> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Page=<%=PageNo-1%>">< Back</a> <% End IF%> <% IF Cint(PageNo) < TotalPage Then %> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Page=<%=PageNo+1%>">Next ></a> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Page=<%=TotalPage%>">Last >></a> <% End IF%> <br> Go to <% For intID = 1 To TotalPage%> <% if intID = Cint(PageNo) Then%> <b><%=intID%></b> <%Else%> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Page=<%=intID%>"><%=intID%></a> <%End IF%> <%Next%> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_access_column_pagination.asp
Screenshot
3desired…
…