首页上一页 1 下一页尾页 1 条记录 1/1页
Response.Write(...window.open(url)...)和Response.Redirect( url )的区别
发表在ASP.NET图书答疑
2011-05-25
是否精华
是
否
版块置顶:
是
否
你好,《ASP.NET从入门到精通》第二版,第24章--新闻发布系统(497页),编写登陆页面,在判断用户合法后,跳转到后台首页(AdminIndex.aspx)这个地方有这段语句:
if (IntUserIn > 0)
{
Response.Write("<script language=javascript>window.open('AdminIndex.aspx');window.close();</script>");
}
我的问题是: Response.Write("<script language=javascript>window.open('AdminIndex.aspx');window.close();</script>");
这条语句为什么不能换成:Response.Redirect("AdminIndex.aspx");
请问这两条语句会分别产生什么样的效果,区别在哪里?这一点书中没有介绍,请老师们详细描述,谢谢!
if (IntUserIn > 0)
{
Response.Write("<script language=javascript>window.open('AdminIndex.aspx');window.close();</script>");
}
我的问题是: Response.Write("<script language=javascript>window.open('AdminIndex.aspx');window.close();</script>");
这条语句为什么不能换成:Response.Redirect("AdminIndex.aspx");
请问这两条语句会分别产生什么样的效果,区别在哪里?这一点书中没有介绍,请老师们详细描述,谢谢!