response redirect from .ashx file

萝らか妹 提交于 2019-11-28 02:48:03

问题


I have ashx file and I want to redirect from ashx to aspx page. Some solution?


回答1:


void ProcessRequest(HttpContext context)
{
     context.Response.Redirect(newUrl);
}



回答2:


Using context.Response.Redirect(newUrl); results in a page that says:

"Object moved to here."

Update: This happened because I signed out, in that case the answer is to use FormsAuthentication.RedirectToLoginPage();




回答3:


I found a solution and it should work fine:

context.Response.ContentType = "text/plain";

if (controlcase)
{
    //Write code, what you want...

    context.Response.Write("This is result");
}
else
{
    context.Response.Write("<script>location.href='url you want to redirect'</script>");
}


来源:https://stackoverflow.com/questions/2048974/response-redirect-from-ashx-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!