%@ language="VBSCRIPT" %>
<% Option Explicit %>
<%
' *************************************************************************************
' Quilt Show Entry Form
' steps
' 1. User Inputs values and hits submit
' 2. Sub-Routine checks to see if all required values are entered
' 3. If a required value is missing the error flag is raised
' 4. If error flag, redisplay form with persistent data and list of missing fields
' 5. If no error flags, send email and take user to thank you page
' 6. On thank you page, give user the option to enter another quilt
' 7. If user choses to enter another quilt, clear fields
' *************************************************************************************
%>
<%
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = now()-2
%>