Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<% Response.ContentType = "application/vnd.ms-excel" %>
<%
'create an HTML table
Response.Write("<table border='1'>")
'loop through the field names to get the column headings (field names)
Response.write("<tr>")
j=2 'row counter
for i = 0 to oRSstickers.Fields.Count -1
Response.write("<td><b>" & oRSstickers(i).Name & "</b></td>")
Next
Response.Write("</tr>")
'here comes the data!
Do while NOT oRSstickers.EOF
Response.Write("<tr>")
Response.Write("<td>" & oRSstickers("id") & "</td>")
Response.Write("<td>" & oRSstickers("date") & "</td>")
Response.Write("<td>" & oRSstickers("name") & "</td>")
Response.Write("<td>" & oRSstickers("email") & "</td>")
Response.Write("<td>" & oRSstickers("telephone") & "</td>")
Response.Write("</tr>")
oRSstickers.MoveNext
Loop
Response.Write("</table>")
%>