<% If Not IsEmpty(Request.Form) Then error="false" If request.form("first") = "" then Response.Write("Error: Please fill in your First Name.
") error = "true" end if If request.form("last") = "" then Response.Write("Error: Please fill in your Last Name.
") error = "true" end if If request.form("address") = "" then Response.Write("Error: Please fill in your Address.
") error = "true" end if If request.form("city") = "" then Response.Write("Error: Please fill in your City.
") error = "true" end if If request.form("state") = "" then Response.Write("Error: Please fill in your State.
") error = "true" end if If request.form("zip") = "" then Response.Write("Error: Please fill in your Zip.
") error = "true" end if If request.form("degree") = "" then Response.Write("Error: Please select your Degree.
") error = "true" end if If request.form("amount") = "" then Response.Write("Error: Please select the Pledge Amount.
") error = "true" end if if request.Form("amount") = "other" then if request.form("amount_other") = "" then Response.Write("Error: Please enter a Pledge Amount.
") error = "true" end if end if if request.Form("schedule") = "" then response.Write("Error: Please choose a Payment Schedule.
") end if if request.Form("payment") = "" then Response.Write("Error: Please enter a Payment Amount.
") end if if request.form("gift_designation") = "Other" then if request.form("gift_other") = "" then Response.Write("Error: Please tell us where you want your gift to go.
") error = "true" end if end if if error = "true" then Response.Write("

Please use the back button on your web browser to go back and correct.

") end if if error = "false" then SendMail() End If Else MailForm() End If %> <% Sub MailForm 'Draws the form %>

ACSM/ISPLS Student Chapter
Land Surveying Engineering
School of Civil Engineering
Purdue University

Clothing Order Form

Credit card gifts
Please click here to make an online credit card gift. In Step #1 be certain to choose School of Management (Krannert) as where you would like your gift to go.
Gifts by phone
If you would rather make an investment over the phone, call 800 319-2199. Make certain to tell the University Development Office to designate your gift to Krannert.

 

Mail Gift

If you would like to mail your check right away, you may mail it to:

Development and Alumni Relations
Krannert Office of Development
Purdue University
MGMT, KRAN
403 West State Street
West Lafayette, IN 47907-2056
  1. Make check payable to Purdue Foundation.
  2. Be sure to write in the memo section which Krannert fund you wish to allocate your gift.

On-line pledge

  1. Fill out the form below.
  2. Click the "Submit" button to register your pledge.
  3. Krannert will then send you a postage paid envelope in which you can send us your check.
Please notice all fields in red are required fields.
First Name:
Middle Initial
Last Name:
Maiden Name:
Home Street Address:
City:
State:
Zip Code:
Country:
Home Phone Number:
Home E-mail
Degree:
Graduation Year:
Pledge Amount



Payment Schedule
Payment Amount

I designate my gift for:




Comments


Include in our gift acknowledgement.
Spouse   Family Member Other
Purdue Degree   Year

Please include my/our names in the Krannert Annual Report.   Yes No


Thank you for making an investment in Krannert!

<% End Sub 'MailForm %> <% sub SendMail 'Send the e-mail %>
First Name: <% = request("first") %>
Middle Initial: <% = request("middle") %>
Last Name: <% = request("last") %>
Maiden Name: <% = request("maiden") %>
Home street address: <% = request("address") %>
City: <% = request("city") %>
State: <% = request("state") %>
Zip code: <% = request("zip") %>
Country: <% =request("country") %>
Home Phone Number: <% = request("phone") %>
E-mail: <% = request("email") %>
Degree: <% = request("degree") %>
Graduation Year: <% = request("year") %>
Pledge amount: <% = request("amount") %>   <% = request("amount_other") %>
Payment schedule: <% = request("schedule") %>
Payment Amount <% = request("payment")%>
<% Bodyend = Bodyend & "Gift for: " & Request.Form("gift_designation") & chr(13) response.Write("Gift for: " & request.Form("gift_designation") & "
") if (Request.form("gift_designation") ="Other") then response.Write("Designated toward: " & request.Form("gift_other") & "
") Bodyend = Bodyend & "Designated toward: " & Request.Form("gift_other") & chr(13) end if if Request.form("comments") <> "" then response.Write("Comments: " & request.Form("comments") & "
") Bodyend = Bodyend & "Comments: " & request.form("comments") & chr(13) end if if request.form("include_name") <> "" then response.write (request.form("include_name") & " will be included in the gift acknowledgement." & "
") bodyend = bodyend & request.form("include_name") & " will be included in the gift acknowledgement. " & chr(13) end if if Request.Form("include_spouse") = "checked" then response.write (request.form("include_name") & " was a spouse." & "
") bodyend = bodyend & request.form("include_name") & " was a spouse." & chr(13) end if if Request.Form("include_family") = "checked" then response.write (request.form("include_name") & " was a family member." & "
") bodyend = bodyend & request.form("include_name") & " was a family member." & chr(13) end if if Request.Form("include_other") = "checked" then response.write (request.form("include_name") & " was a " & request.form("include_relation") & ".
") bodyend = bodyend & request.form("include_name") & " was a " & request.form("include_relation") & "." & chr(13) end if if Request.Form("include_degree") <> "" then response.Write(request.Form("include_name") & " received a " & request.Form("include_degree") & " from Purdue in " & request.Form("include_year") & ".
") bodyend = bodyend & request.form("include_name") & " received a " & request.Form("include_degree") & " from Purdue in " & request.Form("include_year") & "." & chr(13) end if if Request.Form("annual_report") = "yes" then response.write "I/We want to be included in the Krannert Annual Report.
" bodyend = bodyend & chr(13) & "I/We want to be included in the Krannert Annual Report." & chr(13) else response.write "I/We do NOT want to be included in the Krannert Annual Report.
" bodyend = bodyend & chr(13) & "I/We do NOT want to be included in the Krannert Annual Report." & chr(13) end if Body = "Pledge Donation Information " & chr(13) & chr(13) Body = Body & "Name: " & Request.Form("first") & " " & Request.Form("middle") & " " & Request.Form("last") & " (" & Request.Form("maiden") & ")" & chr(13) Body = Body & "Address: " & Request.Form("address") & " " & Request.Form("city") & " " & Request.Form("state")& " " & Request.Form("zip")& " " & Request.Form("country") & chr(13) Body = Body & "Phone: " & Request.Form("phone") & chr(13) Body = Body & "Email: " & Request.Form("email") & chr(13) Body = Body & "Degree: " & Request.Form("degree") & " " & Request.Form("year") & chr(13) Body = Body & "Gift Amount Pledged: " & Request.Form("amount") & " " & Request.Form("amount_other") & chr(13) Body = Body & "Payment Schedule: " & Request.Form("schedule") & chr(13) Body = Body & chr(13) & bodyend Set objNewMail = CreateObject("CDONTS.NewMail") objNewMail.From = "Online_Donation@krannert.purdue.edu" objNewMail.To = "hanigosk@purdue.edu" objNewMail.Subject = "On-Line Pledge to Krannert" objNewMail.Body = Body objNewMail.Send Set objNewMail = Nothing %>

Thank You, Your gifts enable Krannert to continue exceptional management and economics education. We will send you a receipt as soon as we receive your check. We appreciate your commitment to Krannert.

<% End Sub ' Sendmail %>