Answer of Asp
Answer of Asp
Active Server Pages 2. ASP server scripts are surrounded by delimiters, which? <%...%> 3. How do you write "Hello World" in ASP
Start the document with: <%@ language="javascript" %> 7. How do you get information from a form that is submitted using the "get" method?
Request.QueryString 8. How do you get information from a form that is submitted using the "post" method?
Request.Form 9. Page 1 has this link: <a href="page2.asp?color=green">Go</a> How can page2.asp get the "color" parameter?
An ASP Cookie
11. All users of the same application share ONE Session object. False 12. All users of the same application share ONE Application object.
True
13. If a user has Cookies enabled, a session variable is available to all pages in one application.
True 14. Include files must have the file extension ".inc" False
<!--#include file="time.inc"--> 16. Which one of these events is a standard Global.asa event? Application_OnStart 17. Global.asa is required for all Web sites
False 18. Which of these objects is NOT an ASP component? LinkCounter 19. ASP comes with a standard component that displays a different advertisement each time a user enters or refreshes a page, what is the name of this component? AdRotator
Server.CreateObject("Scripting.FileSystemObject")