多选题关于Redirect和Transfer以及Execute方法,下列说法正确的是()。ARedirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句BRedirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高CRedirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以DRedirect方法可以转向一个网页或其他网站,而Execute和Transfer方法一般只能转到同一个应用程序的其他文件
多选题
关于Redirect和Transfer以及Execute方法,下列说法正确的是()。
A
Redirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句
B
Redirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高
C
Redirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以
D
Redirect方法可以转向一个网页或其他网站,而Execute和Transfer方法一般只能转到同一个应用程序的其他文件
参考解析
解析:
暂无解析
相关考题:
要重定向网页,不能使用() A、Image控件B、LinkButton控件C、HttpResponse.Redirect()方法D、HttpServerUtility.Transfer()方法
关于Redirect和Transfer以及Execute方法,下列说法正确的是()。A、Redirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句B、Redirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高C、Redirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以D、Redirect方法可以转向一个网页或其他网站,而Execute和Transfer方法一般只能转到同一个应用程序的其他文件
Action类的execute方法返回的Action Forward对象name属性必须与struts-config.xml中元素的()属性匹配。A、forwardB、nameC、pathD、redirect
关于struts的dispatchAction,以下说法正确的是()A、扩展自dispatchAction的Action类不必定义execute方法B、在dispatchActionBean中,创建的实体操作业务的方法,传入的参数可以和普通的Action的execute方法不同C、在dispatchActionBean中,方法名的前缀必须为to或doD、与普通的Action的配置比较,要使用dispatchAction,需要多一个param
Server的Execute方法和Transfer方法都用于执行程序,其中()方法则在执行结束后返回原程序的中断点继续执行。A、ExecuteB、transferC、两者都可以D、两者都不可以
单选题关于struts的dispatchAction,以下说法正确的是()A扩展自dispatchAction的Action类不必定义execute方法B在dispatchActionBean中,创建的实体操作业务的方法,传入的参数可以和普通的Action的execute方法不同C在dispatchActionBean中,方法名的前缀必须为to或doD与普通的Action的配置比较,要使用dispatchAction,需要多一个param
单选题You work as a Web Developer at Certkiller.com. You use Microsoft ASP.NET 3.5 to create a Webapplication. A Hypertext Transfer Protocol (HTTP) handler is implemented to produce Human Interactive Proof(HIP) images. You have to make sure that the current page invoke the handler and automaticallycontinue executing after the handler completes execution. What should you do?()AYou should consider setting the RedirectLocation property of the HttpResponse class.BYou should consider calling the Redirect method of the HttpResponse class.CYou should consider calling the Execute method of the HttpServerUtility class.DYou should consider calling the Transfer method of the HttpServerUtility class.
单选题要将客户引导到另一个ASP页面,可以采用()。AResponse对象的Redirect方法BResponse对象的End方法CServer对象的Execute方法DServer对象的Transfer方法
多选题在ASP.NET中,下列代码中正确的是()。AServer.Transfer(“Main.aspx”)BServer.Execute(“Main.aspx”)CServer.Execute(“Main.htm”)DServer.Transfer(“Main.htm”)
单选题Server的Execute方法和Transfer方法都用于执行程序,其中()方法则在执行结束后返回原程序的中断点继续执行。AExecuteBtransferC两者都可以D两者都不可以
问答题简述使用Response.Redirect方法和Server.Transfer方法进行重定向操作的异同。