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.
<%
strConn = "your connection string here"
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open strConn
strSQL = "SELECT field1, field2 FROM mytable WHERE id='" & Request.QueryString("id") & "'"
[red]Response.Write strSQL
Response.End[/red]
Set objRS = objConn.Execute(strSQL)
%>