Reputation: 145
Hi I have one label for question, radiobuttonlist for their answers, next button to move next question & previous button. I am displaying one question per page after clicking next button next question appears, but when i click previous button previous question should be display. How i can go to previous question to change answer.
Asp.net c# Thank you.
Upvotes: 1
Views: 3041
Reputation: 52241
One work around is to use History.Back function of Javascript...
onclick="javascript:History.Back();"
Upvotes: 1
Reputation: 3088
Your task is best solved by using asp:Wizard control. May be you'll want to refer to msdn or to a simple tutorial.
Upvotes: 0