各位大大,请问下有没有碰到这种情况,挡在firefox下使用的时候,他触发了两次ispostback=false,也就是说:-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!this.IsPostBack)
- {
- //这里被调用了两次
- }
- }
复制代码 。
而且当我点击一个单元格的时候他又自动调用- protected void Page_Load(object sender, EventArgs e)
- {
-
- if (!this.IsPostBack)
- {
- //被调用了
- }
- }
复制代码 。不知道给位大大有没有碰到类似的情况。 |
|