Response.Redirect()不起作用.net 4.0

时间:2011-10-21 22:47:20

标签: c# asp.net c#-4.0 response.redirect

在按钮上单击我在JS函数中调用javascript函数我重定向到aspx页面并在aspx页面中我想重定向到另一个页面(这部分不起作用)。 response.redirect没有重定向,只是回发到当前页面。任何想法为什么它不起作用。

这是我的代码:

Review.aspx:

<asp:Button ID="btnComplt" runat="server" Text="Complete" OnClientClick ="return compAsgn()" />

function compAsgn() {
       if (window.confirm("Submit all images and complete the assignment?"))
           window.location = "SendImages.aspx?insid=" + $("#IAssignmentId").val() + '&option=complete';
       else
           return false;

SendImages.aspx:

 protected void Page_Load(object sender, EventArgs e)
        {
            assignmentId = Convert.ToInt32(Request.QueryString["insid"]);
            string url = "Review.aspx?insid" + assignmentId.ToString() + "&viewOption=review";

            string qstrVal = string.Empty;
            qstrVal = Request.QueryString["option"].ToString().ToLower();
            if (qstrVal != null && qstrVal == "complete")
            {
                using (ServiceClient client = new Proxies.ServiceRef.ServiceClient())
                {
                    List<AssignmentInfo> ainfo = new List<AssignmentInfo>();
                    ainfo = client.GetAssignmentInfo(assignmentId);
                    if (ainfo.Count > 0)
                    {
                        if (ainfo[0].UploadedCount == 0)
                        {
// AfarSessionData class has a property called ProfileId, which is session variable.  
                            if (AfarSessionData.ProfileId == "000000")
                                url = "Admin.aspx";
                            else
                                url = "HomePage.aspx";
                        }


                    }
                }

            }


            Response.Redirect(url, false);
        }

注意:当我调试时,我确实看到控件点击了SendImages页面,但我看到response.redirect没有重定向,只是回发到当前页面。

2 个答案:

答案 0 :(得分:2)

据我所知,你没有做任何事情来结束请求。我不是一个ASP.NET人,但我你应该:

  • 使第二个参数true有效地“强制中止”具有异常的请求
  • 制作第二个参数false,然后调用CompleteRequest来停止管道的其余部分

答案 1 :(得分:1)

与John Skeets相关的一些其他信息回答:

//ends request, no exception, calls Response.End() internally
Response.Redirect (url, true);

try
{
    Response.Redirect (url, false);
}
catch(ThreadAbortException e)
{
    //do whatever you need to
}

以下是有关该问题的一些信息:

PRB: ThreadAbortException Occurs If You Use Response.End, Response.Redirect, or Server.Transfer