Hi My first language is German so bear with my English
Hi i am new learner to Asp.net and programming
i am making on-line test system. I have to display one question per page and its option
i have dataset which contain all the questions.
now i want to display it on page one by one
in my page there is one label "LabelMsg" and Next Button i want to display question and when user click next button it should display next question
now please tell me how do i do this?
My code in page load it
DataSet ds = new Dataset();
sqlQuery = "SELECT * FROM Question_Table WHERE TestId ='8' ";
ds = ReturnDataSet(sqlQuery, "tblQuestion");// this function just return dataset tblQuestion is name of Table for dataset
// ds contain all the questions now i want to display it one by one
please h ...
Go to the complete details ...