asp

位置:IT落伍者 >> asp >> 浏览文章

ExtAspNet页面跳转的方法


发布日期:2020年05月20日
 
ExtAspNet页面跳转的方法

如果在Page_Load中则可以用ResponseRedirect(ABCaspx);

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

protected void Button_Click(object sender EventArgs e)

{

PageResponseRedirectLocation = /ttaspx;

PageManagerAjaxAspnetControls = new string[] { Page};

}

               

上一篇:如何在ASP代码中调用VB组件的方法

下一篇:ASP调用存储过程源码示例