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.
<%
dim cn
dim rs
Set cn = Server.Createobject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
With cn
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Connectionstring = "Path to Microsoft Access MDB"
.open
end with
rs.open "Select * from TABLE",cn,3,3
%>
<Table>
<%
do until rs.eof = true
%>
<tr>
<td><%=rs("Field")%></td>
<td><img src="<%=rs("PictureField")%>></td>
</tr>
<%
rs.movenext
loop
%>