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.
<html>
<%
if request("submit")<>"" then
if isDate(Request.Form("txt1")) then
response.redirect("output.asp")
end if
end if
%>
<body>
<form method=post id="webForm" action="[red]output[/red].asp">
<input type="text" value="" id="txt1" />
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
<%
response.write request.form("txt1")
%>
<html>
<%
if request("submit")<>"" then
if isDate(Request.Form("txt1")) then
response.redirect("output.asp")
else
response.write "sorry thats not a date"
end if
end if
%>
<body>
<form method=post id="webForm" action="">
<input type="text" value="" name="txt1"id="txt1" />
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
<%
response.write request.form("txt1")
%>
<html>
<%
if request("submit")<>"" then
if isDate(Request.Form("txt1")) then
response.redirect("output.asp?txt1="&request.form("txt1"))
else
response.write "sorry thats not a date"
end if
end if
%>
<body>
<form method=post id="webForm" action="">
<input type="text" name="txt1" id="txt1" />
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
<%
response.write request.querystring("txt1")
%>