|

While you have multiple options for getting
your art files to us, this is the easiest way. Please fill out
the information requested and then press the upload button.
PLEASE NOTE: This operation may take a while of large files (for
56K dial-up, the average upload time for a 1 Megabyte (MB) file
is about 3 minutes).
<%
Dim diagnostics
if Request.ServerVariables("REQUEST_METHOD") <> "POST" then
diagnostics = TestEnvironment()
if diagnostics <> "" then
response.write ""
response.write diagnostics
response.write " After you correct this problem, reload the page."
response.write " "
else
UserForm()
end if
else
If Request("userData") = "1" Then
Session("userName") = Request("userName")
Session("userEmail") = Request("userEmail")
Session("userProject") = Request("userProject")
OutputForm()
Else
If Trim(Session("userName")) = "" OR Trim(Session("userEmail")) = "" OR Trim(Session("userProject")) = "" Then
response.redirect "upload.asp?error=" & Server.URLEncode("Your session has expired. Please resubmit name, email and project name")
End If
OutputForm()
response.write SaveFiles()
SendMail Session("userName"), Session("userEmail"), Session("userProject"), Session("userImage")
End If
end if
%>
|