|
Home About Performance Certifications SVEK News Page tips and tricks Tip of the day Summary of Skills SQL Server Tips Some interesting sites Interesting sites Guest Book Contact Information Software Development Services CompanyHistory
| |
This is a public guest book, feel free to add your comments about the site
here.
<%OpenDB con, "GuestBook"%>
<%
SQL = "SELECT * FROM tblGuestbook ORDER BY fldAuto DESC"
Set rs = con.Execute(SQL)
%>
Post A Message Now
<%
on error resume next
While Not rs.EOF
varName = Trim(rs("fldName"))
varEmail = Trim(rs("fldEmail"))
varHomePage = Trim(rs("fldHomePage"))
varCity = Trim(rs("fldCity"))
varState = Trim(rs("fldState"))
varCountry = Trim(rs("fldCountry"))
varMessage = Trim(rs("fldMessage"))
varTime = rs("fldTime")
varDate = rs("fldDate")
%>
<%=Replace(varMessage,vbCrLf," ")%>
<%If varHomePage = "http://" OR varHomePage = "" Then%>
<%=varName%>
<%Else%>
<%=varName%>
<%End if%>
<%=varEmail%>
<%=varCity%>, <%if not varState="" Then%><%=varState%> <%end If%><%If not varCountry="" Then%><%=varCountry%> - <%End if%><%=varDate%> at <%=varTime%>
|
<%
rs.MoveNext
Wend
rs.Close
%>
Copyright © 1999 by SVEK Computing Ltd. All rights reserved.
Revised: 31 Jul 2003 12:47:23 +0100
.
|