得分整数虽然已经声明但仍然存在!IsPostBack已声明

时间:2013-09-15 18:38:55

标签: c# asp.net

我在下面有这个数学游戏,如果用户给出正确的答案,分数应该增加5但是,它总是停留在5并且永远不会增加。我想知道为什么?我声明了!IsPostBack变量因此它停止重置int除了页面刷新,建议赞赏。

enter image description here

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{

    int score;

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            score = 0;
        }
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        int sayi1;
        int sayi2;
        Random rnd = new Random();
        sayi1 = rnd.Next(0, 100);
        sayi2 = rnd.Next(0, 100);
        Label1.Text = sayi1.ToString();
        Label3.Text = sayi2.ToString();
    }


    protected void Button2_Click(object sender, EventArgs e)
    {
        int entry = Convert.ToInt32(TextBox1.Text);
        int number1 = Convert.ToInt32(Label1.Text);
        int number2 = Convert.ToInt32(Label3.Text);
        int total = number1 + number2;

        if (entry == total)
        {
            score += 5;
            Label5.Text = score.ToString();
        }
        else
        {
            score -= 2;
            Label5.Text = score.ToString();
        }
    }
}

2 个答案:

答案 0 :(得分:4)

中删除int
if (!IsPostBack)
{
    int score = 0;
}

您实际上是在花括号内定义一个新的整数变量,而不是更新定义为字段的变量。

答案 1 :(得分:2)

另外,请尝试使用static ..

static int score;

..但这将是适用范围。

如果需要每位用户,则可以使用session来存储增量。

if (Session["Score"] != null)
    Session["Score"] = ((int)Session["Score"]) + 5;
else
    Session["Score"] = 5;