Click here to Skip to main content
15,891,662 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
protected void Page_Init(object sender, EventArgs e)
    {
       
        BindItemsList(dtlQuiz);
    }

This is my function that calling again and again ,this function i use to fill the datalist control for creating quiz application with next,previous button but when i click on next or previous again it will change the sequence of question and answeer again as i implemented random quiz.
So i dont want to call this function again using c#
Posted
Updated 19-Jan-12 21:33pm
v2
Comments
Anuja Pawar Indore 20-Jan-12 3:33am    
Added pre tag

1 solution

Try:
C#
if (!IsPostBack)
   {
   BindItemsList(dtlQuiz);
   }
 
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