Hello,
I am basically a fresher in ASP.NET. I am building a website that has large contents of text data. The site also has a quiz based on some articles. I have two questions:
1) Which is the best way to store large amounts of text data? Is it good in a text file or should I use a database? If I use a database which is the best datatype to use?
2) The quiz has two tables at the moment - quiz and quizcontent. The quiz table has two columns atleast like quizid and quiztitle. The quizcontent table has columns like questionid, question, answer1, answer2, answer3, answer4, correctanswer, quizid and some other columns. I want the user to click on a quiz title. Based on the title I am planning to retrieve the quizid and then based on the quizid i plan to take all the questions of that particular quizid. My problem is this, I dont want to display all the questions at once, I want to display them one by one. So where do i store these retrieved questions and answers temporarily? If I use a temporary table on the server, suppose another user clicks on a quiz title after the first user, then the temporary table will be overwritten by the data from the latest request. so how can I store the data separately for each client.
Hopefully the reader is able to understand my question. Somebody pls help me with ideas. Your help is so much appreciated.
Thank you...