it's not working at first click...
protected void nextButton_Click(object sender, EventArgs e)
{
if (questionDetails.PageIndex == questionDetails.PageCount - 1)
{
// Go to evaluate answers
Response.Redirect("results.aspx");
}
else
...
Go to the complete details ...