IsPostBack疑惑
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
....
}
}
跟
private void Page_Load(object sender, System.EventArgs e)
{
if(IsPostBack) return;
...
}
完全是两种执行结果。。。
原来是 asp.net 的影子编译在 Page_Load 后面插了不少代码。。。。