请帮我弄清楚这段代码有什么问题:
我有一个可见的 ASP.NET 页面。
当用户单击它时 - 它实例化 MyClass (它的实现在 AppCode 目录中)并变为不可见(button2 变为可见)。
当我单击 button2 时,它会引发“对象引用未设置为对象的实例”异常。
似乎是什么问题?
{
public MyClass noviTest;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
noviTest = new MyClass(TextBox1.Text);
Button1.Visible = false;
Button2.Visible = true;
}
protected void Button2_Click(object sender, EventArgs e)
{
Label1.Text=noviTest.getID; //this is the critical line
}
}