thebensonfactor
Technical User
When I go to some site there is a ? after the file like article.html?xref=12045 how does that work and how can I utilize it?
-Benson
-Benson
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.
<%
strSubmission = request.querystring("submission")
if trim(strSubmission) <> "" then
response.write "You submitted: " & strSubmission & "<br>"
else
response.write "You didn't submit a submission ;(<br>"
end if
response.write "<form action=default.asp method=get><input name=submission></form>"
%>