在按钮上单击我在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没有重定向,只是回发到当前页面。
答案 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