webguy22
01-24-2007, 10:24 AM
when building a form using ASP you can display information once the page is submit such like data that has been entered names, phone, email, ect...like so
<% response.write(request.form("firstname")) %>
Now my question would be, is it possible to let's say your form is a survey, on submit the result for each question would display in percentage, to let others see how the survey result has capture.
example:
Form Page:
name your work location:
[city1]
[city2]
[city3]
Result Page:
150 user have fill out this survey so far
name your work location:
City1: 51%
City2: 40%
City3: 25%
Is it possible? kinda like building a vote but for a form survey.
<% response.write(request.form("firstname")) %>
Now my question would be, is it possible to let's say your form is a survey, on submit the result for each question would display in percentage, to let others see how the survey result has capture.
example:
Form Page:
name your work location:
[city1]
[city2]
[city3]
Result Page:
150 user have fill out this survey so far
name your work location:
City1: 51%
City2: 40%
City3: 25%
Is it possible? kinda like building a vote but for a form survey.