Examination System for SrikanthTechnologies.com

This is the examination application that is part of SrikanthTechnologies.com. In the process of upgarding website - www.srikanthtechnologies.com, this project is the replacement of the current examination system.

This is a project developed using ASP.NET 2.0.

Technologies and Products used

File Structure

The following is the directory structure of this application.
exam
 |- App_Code
 |    |-DBUtil.cs
 |    |-Examination.cs
 |    |-Question.cs
 |- App_Themes
 |    |-all
 |    |  |-all.css
 |    |  |-all.skin
 |    |-dark
 |       |-all.css
 |- all
 |    |- forgotpassword.aspx
 |    |- newuser.aspx
 |    |- all.master
 |
 |- login.aspx
 |- changepassword.aspx
 |- examination.aspx
 |- takeexam.aspx
 |- main.master
 |- previousexams.aspx
 |- reviewquestions.aspx
 |- default.aspx
 |- showresult.aspx
 |- tables.sql
 |- Web.config

Operations and related files

The following table lists operations and associated objects and files.

Operation Files
Login login.aspx
Master page main.master
Master page for annonymous user all.master
Home Page default.aspx
change password changepassword.aspx
Exams History previousexams.aspx
Select subject takeexam.aspx
Examination examination.aspx
Showing results showresult.aspx
Review of questions reviewquestions.aspx
Forgot password forgotpassword.aspx
Registration of new user newuser.aspx

The following are the steps to related to be taken to run the existing part of the application :

  1. Download exam.zip and unzip it into any directory in your system. (For example if you extract to d:\ then it will create a directory exam in d:\ . li>Connect to SQL Server and create EXAM database as follows:
    CREATE DATABASE EXAM
  2. Make EXAM the current database by giving the following command
    USE EXAM
  3. Create required tables using TABLES.TXT file and also insert appropriate data into tables.
  4. Open Visual Web Developer 2005 Express Edition.
  5. Open the project from the directory into which you extracted project.For example, d:\exam.
  6. Goto Solution Explorer and make login.aspx the startup page.
  7. Run project from VWD 2005 EE.
  8. You should see login.aspx page.