每当我反复单击 Button1 时,Literal1 中的文本都不会增加。你能告诉我原因吗?
预期:每次单击按钮后,文本字段中的值都会增加。
当前结果:值始终显示 1。
public partial class d1 : System.Web.UI.Page
{
int c;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
c = 1;
Literal1.Text = c.ToString();
}
}
protected void Button1_Click(object sender, EventArgs e)
{
c=c+1;
Literal1.Text = c.ToString();
}
}