首页上一页 1 下一页尾页 1 条记录 1/1页
Response.Write的用法
发表在ASP.NET图书答疑
2011-08-01
是否精华
是
否
版块置顶:
是
否
asp.net项目开发案例全程实录第一章网站后台主页设计
前台:
<img alt="" border="0" height="93" src="images/guanli_01.jpg" usemap="#map" width="1003" />顶部图片
<map name="map">
<area coords="820,63,906,89" href="../Default.aspx" shape="RECT" />
<area coords="909,61,994,89" href="<%PageExit(); %>" shape="RECT" />
</map>
后台: public void PageExit()
{
Session["UserName"] = "";
Response.Write("../Default.aspx");
}
不太明白Response.Write的用法,页面跳转一般不是用Response.Redirect吗,但我改成Response.Redirect之后
,在logon.aspx页面点击登录后,background/default.aspx后台主页无法打开,直接跳转到首页default.aspx,请问这是什么原因,以及这两个方法有什么区别?
前台:
<img alt="" border="0" height="93" src="images/guanli_01.jpg" usemap="#map" width="1003" />顶部图片
<map name="map">
<area coords="820,63,906,89" href="../Default.aspx" shape="RECT" />
<area coords="909,61,994,89" href="<%PageExit(); %>" shape="RECT" />
</map>
后台: public void PageExit()
{
Session["UserName"] = "";
Response.Write("../Default.aspx");
}
不太明白Response.Write的用法,页面跳转一般不是用Response.Redirect吗,但我改成Response.Redirect之后
,在logon.aspx页面点击登录后,background/default.aspx后台主页无法打开,直接跳转到首页default.aspx,请问这是什么原因,以及这两个方法有什么区别?