What you want to see on DotNetFunda.com ?
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 7042 |  Welcome, Guest!   Register  Login
 Home > Forums > C# > how to create online exam paper ...
Deepakji

how to create online exam paper

Replies: 2 | Posted by: Deepakji on 4/25/2012 | Category: C# Forums | Views: 1360 | Status: [Member] | Points: 10  


hi, i want to create online exam paper for the students where they can write the exam and system will generate the answer previously i was able to generate in word doc which later can be printed now i need online so please let me know how can it be done or any code which can be used its urgent.


Reply | Reply with attachment | Alert Moderator

 Responses below this adGet hundreds of .NET Tips and Tricks videos

 Replies

Siva524
Siva524  
Posted on: 5/7/2012 7:39:13 AM
Level: Starter | Status: [Member] | Points: 25

first select asp.net empty web site template from the available templates
and decide how many questions you want to include in online test.
suppose 5 questi ons .so take 6 web fo rms .each webpage contains one question.
i took one extra form because to show result of the online test after clicking submit button in webpage 5.
for each question have multiple choices so take 4 choi ces and take the choices as radiobut ton
because one option must be answer.


after that use cookie or query string or session to hold the option selected by the user.
if the selected option is correct then increment "counter" variable.
otherwise no change .
take right answer as "yes" and wrong answer as "no"
add all these values to string
like below
string s="";

for(int i=0;i<noofquestions;i++)
{
string result+=q+" i"+":"+ session["r1"];
}
result+="<BR>"+counter

Deepakji, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Prabhakar
Prabhakar  
Posted on: 5/8/2012 4:49:32 AM
Level: Starter | Status: [Member] [MVP] | Points: 25

Hi , Deepakji


Go with this link .. it's help us u.. for make online Exam

http://www.codeproject.com/Articles/105285/Online-Exam-in-C-ASP-NET

Best Regard's
Prabhakar

Deepakji, if this helps please login to Mark As Answer. | Reply | Alert Moderator 

Reply - Please login to reply


Click here to login & reply

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/21/2013 10:26:40 PM