网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

关于Redirect和Transfer以及Execute方法,下列说法正确的是()。

  • A、Redirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句
  • B、Redirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高
  • C、Redirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以
  • D、Redirect方法可以转向一个网页或其他网站,而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()方法

考题 Response中下列哪个方法能实现网页重定位( ) A.Write()B.End()C.Redirect()D.Execute()

考题 ( )方法可以将另外一个页面的内容插入本页面,且与本页面的内容同在。 A.Redirect()B.Request()C.Execute()D.Transfer()

考题 下面哪种方法不能实现页面跳转的效果()AResponse.Redirect方法BServer.Transfer方法CServer.Execute方法DHTML.Encode方法

考题 简述使用Response.Redirect方法和Server.Transfer方法进行重定向操作的异同。

考题 Execute()方法和Transfer()方法之间有何区别?

考题 Action类的execute方法返回的Action Forward对象name属性必须与struts-config.xml中元素的()属性匹配。A、forwardB、nameC、pathD、redirect

考题 Server.execute、server.transfer和response.redirect在执行文件时无区别。()

考题 Server的Execute方法和Transfer方法都用于执行程序,其中()方法则在执行结束后返回原程序的中断点继续执行。A、ExecuteB、transferC、两者都可以D、两者都不可以

考题 请简述Execute、Transfer和Redirect方法的主要区别?

考题 下列那种方法不能实现页面跳转的效果()。A、ResponsE.Redirect方法B、HTMLEncode方法C、Server.Execue方法D、Server.Transfer方法

考题 After completing a commercial transaction, () will execute the transfer of goods from the seller to the buyer in the most-effective manner.A、LogisticsB、Supply chainC、Virtual warehouseD、Transportation

考题 试说明在ASP程序中,Server.Execute和Server.Transfer在执行方式上有什么不同。

考题 下面哪种方法不能实现页面跳转的效果()A、Response.Redirect方法B、Server.Transfer方法C、Server.Execute方法D、HTML.Encode方法

考题 You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application must redirect the original URL to a different ASPX page.  You need to ensure that the users cannot view the original URL after the page is executed. You also need to ensure that each page execution requires only one request from the client browser. What should you do?()A、Use the Server.Transfer method to transfer execution to the correct ASPX page.B、Use the Response.Redirect method to transfer execution to the correct ASPX page.C、Use the HttpContext.Current.RewritePath method to transfer execution to the correct ASPX page.D、Add the Location: new URL value to the Response.Headers collection. Call the Response.End() statement. Send the header to the client computer to transfer execution to the correct ASPX page.

考题 问答题Execute()方法和Transfer()方法之间有何区别?

考题 单选题下列那种方法不能实现页面跳转的效果()。A ResponsE.Redirect方法B HTMLEncode方法C Server.Execue方法D Server.Transfer方法

考题 判断题Server.execute、server.transfer和response.redirect在执行文件时无区别。()A 对B 错

考题 问答题请简述Execute、Transfer和Redirect方法的主要区别?

考题 单选题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?()A You should consider setting the RedirectLocation property of the HttpResponse class.B You should consider calling the Redirect method of the HttpResponse class.C You should consider calling the Execute method of the HttpServerUtility class.D You should consider calling the Transfer method of the HttpServerUtility class.

考题 单选题要将客户引导到另一个ASP页面,可以采用()。A Response对象的Redirect方法B Response对象的End方法C Server对象的Execute方法D Server对象的Transfer方法

考题 多选题在ASP.NET中,下列代码中正确的是()。AServer.Transfer(“Main.aspx”)BServer.Execute(“Main.aspx”)CServer.Execute(“Main.htm”)DServer.Transfer(“Main.htm”)

考题 单选题下面哪种方法不能实现页面跳转的效果()A Response.Redirect方法B Server.Transfer方法C Server.Execute方法D HTML.Encode方法

考题 问答题试说明在ASP程序中,Server.Execute和Server.Transfer在执行方式上有什么不同。

考题 单选题Server的Execute方法和Transfer方法都用于执行程序,其中()方法则在执行结束后返回原程序的中断点继续执行。A ExecuteB transferC 两者都可以D 两者都不可以

考题 多选题关于Redirect和Transfer以及Execute方法,下列说法正确的是()。ARedirect和Transfer跳转到新网页后,不会再返回原网页,而Execute则会在执行完新网页后,返回原网页继续执行Execute方法后面的语句BRedirect的重定向实际发生在客户端,而Execute和Transfer方法的重定向发生在服务器端,效率更高CRedirect语句不能把一些环境变量一起传递到新网页中,而Execute和Transfer可以DRedirect方法可以转向一个网页或其他网站,而Execute和Transfer方法一般只能转到同一个应用程序的其他文件

考题 问答题简述使用Response.Redirect方法和Server.Transfer方法进行重定向操作的异同。