如何使用Response.Redirect(10分)

  • 主题发起人 主题发起人 xuege007
  • 开始时间 开始时间
X

xuege007

Unregistered / Unconfirmed
GUEST, unregistred user!
如何使用Response.Redirect ,让它定位到静态页面,如 index.html
我这样做过,Response.Redirect ("index.html");好象不对,打不开呀
请各位帮忙
 
procedure TWebForm1.Page_Load(sender: System.Object;
e: System.EventArgs);
begin
// TODO: Put user code to initialize the page here

response.Redirect('1.txt');
end;

delphi2005中这样可以打开啊.~
 
Response.Redirect('http://localhost/d2k6/study4/1.htm');
没有问题的!!
 
1、可以跳转到网页
Response.Redirect('http://www.google.com');
2、也可以跳转到其他页面
Response.Redirect('about.aspx');
 
路径不对吧.,你那样INDEX.HTML在同一子目录.前面应加上INDEX的路径
response.redirect("../xxx/index.html")
 
后退
顶部