| User Comments For Story |
<%
Dim myid, myname, mycomment, myerror
myid = clng(form("id"))
myname = form("name")
mycomment = form("comment")
SET rs = Server.CreateObject("ADODB.Recordset")
command = "SELECT * FROM GWWNews WHERE id = " & myid
rs.Open command, conn, adOpenForwardOnly, adLockReadOnly
if rs.EOF then
response.write("" & rs("title") & "" & rs("info") & "") rs.MoveNext loop rs.close set rs = nothing %> |
|