Waiting Form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • studentGrammer
    New Member
    • Mar 2007
    • 5

    Waiting Form

    working on some pageant scoring program and ran into big problem.
    there are three events in the pageant and after the second, the top3 contestants (finalists) are chosen. the thing is i need all the scores from all 3 judges before i can determine the finalists. so far, only the 3rd (last) judge to enter his scores can view the top3 contestants. i know i'ld use a waiting form to stall the first two until the last judge is done, but have know idea how to do that. help, anyone! im using microsoft access to store the information and oleDB
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    You could store the number of answered scores in an application-level variable:
    Code:
    if request("score") <> "" then
       application("scoresDone") = application("scoresDone") + 1
    end if
    
    if application("scoresDone") < 3 then %>
       <!-- make page refresh using HTML or javascript code according to your preference -->
    <%
    else
       response.redirect "finalResults.asp"
    end if
    %>
    Let me know if this helps.

    Jared

    Comment

    • studentGrammer
      New Member
      • Mar 2007
      • 5

      #3
      thanks so much for the help, but my schools webmaster helped me out by using Page.ClientScri pt.IsClientScri ptBlockRegister ed("RefreshPare nt"). not exactly sure how it works but it does. sorry for the bother

      Comment

      Working...