| |
Sent Reports Click to View Orders<%
'---------------------------------------------------------------------------
' The SQL below selects all the records from the Table Sent
'---------------------------------------------------------------------------
msql = "SELECT * FROM Sent"
Set RS=Conn.Execute(msql)
%>
| SentID |
SentDate | <%Do While Not RS.EOF%>
| "> <%=RS("SentID")%> |
<%=RS("SentDate")%> | <%
RS.MoveNext
Loop
RS.Close
Conn.Close
Set RS = Nothing
Set Conn = Nothing
%>
|
|
|