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.
<%
'... other ASP stuff in here ...
sSQL = "Select * From MyTable "
IF (Len(Request.QueryString("sortby")) > 0) THEN
sSQL = sSQL & "Order By " & Request.QueryString("sortby")
END IF
'... other ASP stuff in here ...
%>
<!-- other HTML stuff here ... -->
<tr>
<td>
<a href="page.asp?sortby=Col1">Column 1</a>
</td>
<td>
<a href="page.asp?sortby=Col2">Column 2</a>
</td>
<td>
<a href="page.asp?sortby=Col3">Column 3</a>
</td>
</tr>
<!-- other HTML stuff here ... -->