我把页面代码放在一个更新面板 <asp:UpdatePanel>中,在后台代码按钮事件中我成功执行前面的代码后,我再进行页面跳转怎么也转不了
我使用的是这种方法跳转
Page.Server.Transfer("ViewRoom.aspx");
后来我使用的是这种方式,能成功执行:
Response.Redirect("ViewRoom.aspx");
可能这样也行:
ScriptManager.RegisterStartupScript(btnLogin, this.GetType(), "", "window.location.href='ViewRoom.aspx');", true);
我不知这是什么原因,请救各位了
------解决方案--------------------------------------------------------
该回复于2010-05-14 07:59:53被版主删除