I have a IQueryable object q of questions.
DataClasses1DataContext dc = new DataClasses1DataContext();
var q = from a in dc.GetTable<Questions>()
select a ;
In question i have questionId and question.

How can i loop through IQueryable data sequentially based on the next button click event so that i have the first question text as Lebel.Text and in my DropDown answers based on questionId, then after click next question i go to second question from IQueryable and continue like this until finish al questions?