请简述Execute、Transfer和Redirect方法的主要区别?
第1题:
简述使用Response.Redirect方法和Server.Transfer方法进行重定向操作的异同。
T.ransfer方法将执行流程从当前的ASP文件转到同一服务器上的另一个页面。客户端和服务器只需一次通信。Redirect方法重定向操作的整个过程中,客户端与服务器端要进行两次通信,
第一次是对原始页面的请求,得到目标已改变的应答,
第二次通信是请求Response.Redirect指向新页面,得到重定向后的页面。
略
第2题:
关于Redirect和Transfer以及Execute方法,下列说法正确的是()。
第3题:
请简述Redirect方法的工作原理?
第4题:
Server的Execute方法和Transfer方法都用于执行程序,其中()方法则在执行结束后返回原程序的中断点继续执行。
第5题:
试说明在ASP程序中,Server.Execute和Server.Transfer在执行方式上有什么不同。
第6题:
第7题:
对
错
第8题:
You should consider setting the RedirectLocation property of the HttpResponse class.
You should consider calling the Redirect method of the HttpResponse class.
You should consider calling the Execute method of the HttpServerUtility class.
You should consider calling the Transfer method of the HttpServerUtility class.
第9题:
第10题:
Response.Redirect方法
Server.Transfer方法
Server.Execute方法
HTML.Encode方法
第11题:
Execute
transfer
两者都可以
两者都不可以
第12题:
第13题:
Execute()方法和Transfer()方法之间有何区别?
第14题:
Action类的execute方法返回的Action Forward对象name属性必须与struts-config.xml中
第15题:
Server.execute、server.transfer和response.redirect在执行文件时无区别。()
第16题:
下列那种方法不能实现页面跳转的效果()。
第17题:
下面哪种方法不能实现页面跳转的效果()
第18题:
ResponsE.Redirect方法
HTMLEncode方法
Server.Execue方法
Server.Transfer方法
第19题:
第20题:
Response对象的Redirect方法
Response对象的End方法
Server对象的Execute方法
Server对象的Transfer方法
第21题:
Server.Transfer(“Main.aspx”)
Server.Execute(“Main.aspx”)
Server.Execute(“Main.htm”)
Server.Transfer(“Main.htm”)
第22题:
第23题:
Redirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句
Redirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高
Redirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以
Redirect方法可以转向一个网页或其他网站,而Execute和Transfer方法一般只能转到同一个应用程序的其他文件