现在的位置: 首页 > 综合 > 正文

ExtAspNet页面跳转的方法

2012年08月29日 ⁄ 综合 ⁄ 共 234字 ⁄ 字号 评论关闭

一:如果在Page_Load中则可以用Response.Redirect("ABC.aspx");

 

二:在其它事件中可以用以下方法:

 

protected void Button1_Click(object sender, EventArgs e)
{
   Page.Response.RedirectLocation 
= "/tt.aspx";
   PageManager1.AjaxAspnetControls 
= new string[] { "Page"};
}

 

 

抱歉!评论已关闭.