Help structuring questionnaire

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jmgro

    #1

    Help structuring questionnaire

    I need help in structuring a 200 question survey. Each question has three
    responses, and I want all 200 questions displayed at the same time with the
    user using the scrollbar to go down. What is the best approach?
  • Nick Malik [Microsoft]

    #2
    Re: Help structuring questionnaire

    sounds a LOT like homework.

    Assuming your data is in a database, query the db, get the data into a
    dataset with linked tables using a stored proc. Then loop through the
    records in the question table and display the question and related answers
    by writing the correct HTML to Response.Write. Make sure to set your
    post-back values in a unique manner, so that when the user posts back the
    form, you can tell which answer they picked.

    Hope this helps without spoiling the assignment.

    --
    --- Nick Malik [Microsoft]
    MCSD, CFPS, Certified Scrummaster
    http://blogs.msdn.com/nickmalik

    Disclaimer: Opinions expressed in this forum are my own, and not
    representative of my employer.
    I do not answer questions on behalf of my employer. I'm just a
    programmer helping programmers.
    --
    "jmgro" <jmgro@discussi ons.microsoft.c om> wrote in message
    news:20462DC7-5CD7-4360-863F-41D34BC72265@mi crosoft.com...[color=blue]
    >I need help in structuring a 200 question survey. Each question has three
    > responses, and I want all 200 questions displayed at the same time with
    > the
    > user using the scrollbar to go down. What is the best approach?[/color]


    Comment

    Working...