|
|
|
|

<%
set conntemp=server.CreateObject("adodb.connection")
conntemp.open "disco"
set rstemp=conntemp.execute("SELECT * FROM lebodyx")
if rstemp.eof then %>
<%else%>
<%end if%>
<%do while not rstemp.eof%>
|
|
|
<%=rstemp.fields("date1").value%>
|
<%=rstemp.fields("theme").value%>
|
|
 |
|
<%=rstemp.fields("comm1").value%>
|
|
<%=rstemp.fields("comm2").value%>
|
|
|
 |
|
|
|
| |
<%rstemp.movenext
loop
conntemp.close
Set conntemp = nothing%>
|
|