Response对象
Response对象
相关考题:
Request对象和Response对象都有Cookies集合。Request对象的Cookies集合用来获得客户端是否有Cookie,Response对象的Cookies集合用来向客户端设置Cookie值。() 此题为判断题(对,错)。
要将客户引导到另一个ASP页面,可以采用()。A、Response对象的Redirect方法B、Response对象的End方法C、Server对象的Execute方法D、Server对象的Transfer方法
如果想取得输出串流对象对浏览器输出位数据,应该撰写()程序代码。A、ResponseStream out=response.getResponseStream()B、ResponseStream out=response.getStream()C、ResponseStream out=response.getOutputStream()D、ServletOutputStream out=response.getOutputStream()
问答题Response对象主要功能是向浏览器输出信息.常用的方法包括:Response.Write()、Response.Redirect(“URL地址”)等。