Skip to content

Instantly share code, notes, and snippets.

@pragyanshukukreti
Created May 4, 2017 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pragyanshukukreti/a3ab933e88431cb23a3642e70bb80cf3 to your computer and use it in GitHub Desktop.
Save pragyanshukukreti/a3ab933e88431cb23a3642e70bb80cf3 to your computer and use it in GitHub Desktop.
Thank you page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
body {
margin: 50px;
color: #555;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
}
</style>
%%[
var @q5_overallHow5, @q6_didOur6, @q8_wouldYou8, @q10_whatAspect10, @q11_whatAspect, @q12_pleaseExplain, @EmailAddress
set @q5_overallHow5 = RequestParameter('q5_overallHow5')
set @q6_didOur6 = RequestParameter('q6_didOur6')
set @q8_wouldYou8 = RequestParameter('q8_wouldYou8')
set @q10_whatAspect10 = RequestParameter('q10_whatAspect10')
set @q11_whatAspect = RequestParameter('q11_whatAspect')
set @q12_pleaseExplain = RequestParameter('q12_pleaseExplain')
set @EmailAddress = RequestParameter('EmailAddress')
InsertData("SurveyResults",
"q5_overallHow5",@q5_overallHow5,
"q6_didOur6",@q6_didOur6,
"q8_wouldYou8",@q8_wouldYou8,
"q10_whatAspect10",@q10_whatAspect10,
"q11_whatAspect",@q11_whatAspect,
"q12_pleaseExplain",@q12_pleaseExplain,
"EmailAddress",@EmailAddress
)
]%%
</head>
<body align = "center">
<h2>Thank you</h2>
<p>Thank you for completing the survey.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment