This might be a stupid silly question, but why is this not increasing past 2?
No matter how many times I click the button the label is stuck on 2.
protected void nextBtn_Click(object sender, EventArgs e)
{
questions = 1;
questions++;
qstnLbl.Text = questions.ToString();
}
The label is supposed to start at 1 and at button press add a number like 2-3-4 etc. Am I missing something?