Ishika
Ishika

Reputation: 145

how to go previous page in asp.net after clicking previous button in asp.net

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

Answers (2)

Muhammad Akhtar
Muhammad Akhtar

Reputation: 52241

One work around is to use History.Back function of Javascript...

onclick="javascript:History.Back();"

Upvotes: 1

Kirill
Kirill

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

Related Questions