我的代码隐藏是:
public partial class Question2 : System.Web.UI.Page
{
private SqlDataAdapter dataAdapter;
private DataTable table;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
table = new DataTable();
//And pull the data from my DB to the table
}
}
我打算在单击页面的任何按钮后将我的数据(“表”)存储在班级的字段中。我发现再次调用 Page_Load() 并且我的所有数据字段都消失了。它们是“空的”。
我真的很困惑发生了什么O_O。我只需要存储我的表以供以后使用。但是为什么他们会迷路?什么时候丢的?请帮忙,谢谢。