能够在页面中开启缓存的是( )。AB Response.Buffer=TrueC Response.FlushD Request.Querystring

能够在页面中开启缓存的是( )。

A<%@Transaction=TRUE%>

B Response.Buffer=True

C Response.Flush

D Request.Querystring


相关考题:

3下面程序段的输出结果为( )。 mblic class Test public static void main(String args[]) { boolean a,b,c; a=(3<5); b=(a==true); System.out.println("a="+a+"b="+b); c=(b=false); System.out.println("b="+b+"c="+c); } }A.a=true b=false b=true c=falseB.a=true b=false b=true c=trueC.a=true b=true b=true c=falseD.a=false b=false b=true c=false

下列代码中可以使控件Txt Box获得焦点的是( )。A.set Txt Box. focusB.set Txt Box. focus=trueC.Txt Box. Set FocusD.Txt Box. Set Focus=true

boolean a=false;boolean b=true;boolean c=(ab)(!b);boolean result=(ab)(!b); boolean result=(ab)(!b); 执行完后,正确的结果是( )。A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true

下面程序段: boolean a=false; boolean b=true; boolean c=(a||b)(b); boolean result=(a|b)(b); 执行完后,正确的结果是A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true

下面程序段:boolean a=false;boolean b=true;boolean c=(ab)(!b);boolean result=(ab)(!b);执行完后,正确的结果是A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true

下面程序段; boolean a=false; boolean b=true; boolean c=(a||b)(b); boolean result=(a|b)(b); 执行完后,正确的结果是A.c=false;result=falseB.c=true;result=trueC.c=true;result=falseD.c=false;result=true

7、关于a or b的描述错误的是()A.如果a=True,b=True,则a or b等于TrueB.如果a=True,b=False,则a or b等于TrueC.如果a=True,b=False,则a or b等于FalseD.如果a=False,b=False,则a or b等于False

以下关于页面输出缓存说法正确的是()。A.页面输出缓存是将整个页面的内容放在服务器内存中B.一般页面输出缓存要比页面部分缓存更常用C.页面输出缓存的内容可以直接发给用户,D.页面输出缓存的内容不需要再次经过页面处理生命周期

ASP.NET中的缓存技术包括()。A.页面部分缓存B.页面数据缓存C.页面输出缓存D.页面内部缓存