Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hii,
I'm creating an online examination website. I want to display the question and ans as radio button options inside a panel. Also, I want to get next question from database on 'Next' button click and previous question on 'Previous' button click.. I'm unable to do so... plz help me by providing code for it...
any suggestion will be appreciated.
Posted
Updated 28-Jul-15 0:34am
v2
Comments
F-ES Sitecore 28-Jul-15 6:36am    
People wanting us to write their "online exam" homework is probably the most commonly asked question. If you do a search for "Online quiz asp.net" I'm sure all of your questions have been asked and answered thousands of times, it's a very common project to do, however we are not here to do your homework for you.

We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!

If you meet a specific problem, then please ask about that and we will do our best to help. But we aren't going to do it all for you!
 
Share this answer
 
hey please try this:
You can use session to store data.

fetch data from database and store it in a data table and save it using session, now also put a variable x initialize with 0, on each button click, add "1" to x and again store it into session and store data table from session and using row property you can fetch next row on each click.


datatable dt=new datatable();
da.fill(dt);
session["data"]=dt;


and on each button click use like this..

dt.rows[x][columnfield].tostring();


thanx
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900