Performance problem with multiple choice questions

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

    Performance problem with multiple choice questions

    I'm working with a website that presents a series of multiple choice
    questions to users.

    The problem at hand is that the pages with the questions take some time load
    and the users are under a time limit to answer the questions.

    Would you know if there is a way to "download" the question bitmaps to the
    user's PC to some type of cache before the timer starts for the user?


  • Michael Nemtsev [MVP]

    #2
    Re: Performance problem with multiple choice questions

    Hello Night,

    It depends on what your timer is?
    Is it possible to start timer for each page, (after page load) and stop it
    when user press next?

    If not than I read your data into asp.net Cache and build it, but the building
    can takes some time.

    I'd rely on timer stop/start after page is loaded and deduct this time from
    overal time allowed to user to answer on all questions

    ---
    WBR,
    Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour

    "The greatest danger for most of us is not that our aim is too high and we
    miss it, but that it is too low and we reach it" (c) Michelangelo


    NAI'm working with a website that presents a series of multiple choice
    NAquestions to users.
    NA>
    NAThe problem at hand is that the pages with the questions take some
    NAtime load and the users are under a time limit to answer the
    NAquestions.
    NA>
    NAWould you know if there is a way to "download" the question bitmaps
    NAto the user's PC to some type of cache before the timer starts for
    NAthe user?
    NA>


    Comment

    Working...