Comments
<% PageNo = request("page")
If PageNo="" then
%>
Leave a comment
">Back to Referring Page
<%
PageNo=1
ElseIf PageNo=1 then
%>
Leave a comment
<%
Else
%>
Leave a comment
<%
End If
set conn = server.createobject("adodb.connection")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
' set the actual path to the guestbook below - this example
' assumes that the guestbook is in the web server root
DSNtemp="Guestbook"
conn.Open DSNtemp
sqlstmt = "SELECT * from Guestbook where Approved = 'y' ORDER BY PostDate DESC "
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sqlstmt, conn, 3, 3
TotalRecs = rs.recordcount
rs.Pagesize=10
TotalPages = cInt(rs.pagecount)
rs.absolutepage=PageNo
If PageNo = 1 then
response.write " There are " & TotalRecs & " entries in " & TotalPages & " pages"
End If
If rs.eof then
response.write "
There are no entries in the guestbook."
response.write " Leave a comment"
response.end
End If
x = 0
For x = 1 to 10
If rs.eof then
Exit For
Else
When = rs("PostDate")
Name = rs("Name")
Name = Replace(Name,"''","'")
City = rs("City")
State = rs("State")
Country = rs("Country")
Email = rs("Email")
URL = rs("URL")
If IsEmpty(URL) or URL = "" then
Link = "no URL given"
Else
Link = "" & URL & ""
End If
Comments = rs("Comments")
Comments = replace(Comments, "''", "'")
Start = rs("PostDate")
%>
| <%= When %> |
|
<%= Comments %> |
|
<%
If IsEmpty(Email) or Email="" then
response.write(Name)
Else
response.write "" & Name & ""
End If
%>
|
<%= City %>
<%= State %> <%= Country %> |
<%= Link %> |
<%
rs.MoveNext
End If
Next
response.write ""
response.write "| "
If PageNo > 1 then
response.write ""
Else
response.write " "
End If
response.write " | "
If NOT rs.eof then
response.write ""
Else
response.write " "
End If
response.write " | "
conn.close
set conn = nothing
%>
|