<%@ Language=VBScript %> <%If false then> <!-- #INCLUDE FILE="FunctionOne.inc"--> <%Else> <!-- #INCLUDE FILE="FunctionTwo.inc"--> <%End If> What would the above code load?

A. Only the FunctionTwo.inc file into the ASP page.
B. Both files, since Server Side Includes are processed before ASP interpreting.
C. Only the FunctionOne.inc file into the ASP page.
D. Neither file, since Server Side Includes are processed before ASP interpreting.
E. Neither file, since the #INCLUDE statements are commented out.

Showing Answers 1 - 17 of 17 Answers

Mubeen

  • Jun 29th, 2005
 

Answer is E.

  Was this answer useful?  Yes

Rana

  • Feb 21st, 2006
 

Answer is B, bez includes are processed before ASP interpreting

  Was this answer useful?  Yes

Yogita

  • Jan 22nd, 2007
 

ans is A i used this code in my page

  Was this answer useful?  Yes

Siva K Reddy

  • Mar 11th, 2007
 

Answer is A

  Was this answer useful?  Yes

Renjith

  • Mar 21st, 2007
 

answer is B

  Was this answer useful?  Yes

Answere is A the reason is that when the if condition is check the boolean result, in this case the result is false so it will go to else part and include the FunctionTwo.inc.

Thanks,
Jai

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions