This system function enables administration of the reading passages and questions to be used in the assessment through the tables stored in the database. Specifically, the administrator can add, edit, or delete passages and questions. The administrator also can drop and create the tables in the database.
This is the root administration page and allows the administrator to access passages.asp to manage the information about the passages in the database, questions.asp to manage the questions in the database, drop_tables.asp to destroy (drop) all of the tables in the database, and create_tables_process.asp to create the tables in the database.
This page displays all information about all passages in the database and allows the administrator to add, edit, or delete information about a specific passage by directing the administrator to the passage_add.asp, passage_edit.asp, or passage_delete.asp pages respectively.
This page allows the administrator to select a passage in the database, then it displays all of the questions and answers for that passage and allows the administrator to add, edit, or delete a question and its associated answers by directing the administrator to the question_add.asp, question_edit.asp, or question_delete.asp pages respectively.
This page gives a short warning to the administrator about losing all information contained in the tables and allows the administrator to select a button that brings up the drop_tables_process.asp page, which drops the tables.
This page creates all of the tables in the database used by the software.
This page allows the administrator to fill in all of the information for a new passage and insert it into the database by posting the information to the passage_add_process.asp page.
This page shows the current information about the selected passage and allows the administrator to change it and insert the new information into the database by posting the information to the passage_edit_process.asp page.
This page asks the administrator whether to delete the passage and upon affirmation, brings up the passage_delete_process.asp page, which deletes the passage information from the database.
This page allows the administrator to create a new question and its answer choices and to specify which answer is correct. The data is inserted into the database by posting the information to the question_add_process.asp page.
This page shows the selected question and its answer choices and allows the administrator to make changes and insert the new information into the database by posting the information to the question_edit_process.asp page.
This page asks the administrator whether to delete the question and upon affirmation, brings up the question_delete_process.asp page, which deletes the question and its answer choices from the database.
This page drops all of the tables used by the software from the database.
This page adds the information posted to it from passage_add.asp about a passage to the database.
This page changes the information in the database about a passage to the posted values from passage_edit.asp.
This page deletes the information from the database that pertains to the passage specified in the post from passage_delete.asp.
This page adds the question and the choices posted to it from question_add.asp to the database.
This page changes the question and its answers in the database to the posted values from question_edit.asp.
This page deletes the question from the database that is specified in the post from question_delete.asp.
This system manages a user's session and allows the user to login and logoff. The login functionality is provided by guest_login.asp and guest_login_process.asp. The logout is carried out by abandon_session.asp
This page profiles the user for information that will be used in assessing their reading abilities and posts the data to guest_login_process.asp.
This page logs the user in, stores the user's data, and redirects the user back to the main page (index.asp).
This page logs the user out and returns them to the main page (index.asp).
This system administers the reading assessment test to the user. The start.asp page gives instructions, reading.asp presents the passage and times the user, questions.asp asks the user questions and records the user's answer, and results.asp calculates the results of the test and displays them to the user.
This page gives the user some instructions then redirects them to reading.asp to read the first passage once they are ready to begin.
This page presents the first passage when the user presses the start button and times the uses until the user presses the stop button, whereupon the passage disappears. When the user presses the take quiz button the time is posted to and the user is redirected to questions.asp to answer the first question about the passage.
This page places the reading passage time in a session variable and presents the first question. It stores the answer to the question in a session variable and then cycles to the next until there are no remaining questions in the database. Then it redirects the user to results.asp.
This page finds the results of the test and displays them to the user.