HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/EBos/ellen-paragnost.nl/wwwroot/modules/module3.asp
<%
' This is a sample form that can be included in any QuickerSite page (using the Application Path variable)
' The most important field here is 'sCode'. It refers to the field 'sCode' of a page in QuickerSite.
' By using the sCode-field, you can make sure the page with the corresponding sCode-value is loaded 
' after your visitor has submitted a form. You can also use the sCode-parameter in a querystring.
%>
<form action="default.asp" method="post">
<input type="hidden" value="FORM" name="sCode">
<table>
	<tr>
		<td>Your name:</td>
		<td><input type="text" name="field" value="<%=server.HTMLEncode (Request.Form ("field"))%>"></td>
	</tr>
	<tr>
		<td>&nbsp;</td>
		<td><input type="submit" value="Submit"></td>		
	</tr>
</table>
</form>
<%
if Request.Form ("field")<>"" then
%>
<p>Your name is <%=server.HTMLEncode (Request.Form ("field"))%>.</p>
<%
end if
%>