请问为什么类数据成员不能传入值不能被写入值?
有一个页面 我创建两个全局变量 n updateID 在GridView1_RowEditing事件中更改了updateID的值 为什么到了GridView1_RowUpdating方法中 该变量的值还是初始值呢?public partial class studentInfoManage : System.Web.UI.Page
{
//全局变量
int n = 0;
int updateID=0;//用于更新的序列号
protected void Page_Load(object sender, EventArgs e)
{ .......................
}
}