Gets information from the user. It has five collections by which values can be accessed. They are: Querystring, Form, Cookies, Server Variables & ClientCertificate
Latest Answer: When a browser asks for a page from a server, it is called a request. The ASP Request object is used to get information from the user. ...
Shares information among users of an application. Gives a notification when an application starts or ends.
Latest Answer: Application Object: It is an object which stores the information about the client which access the application. Every application has only one application object which is responsible to tellwhen the application startswhen the application ends ...
* Contents collection – contains all variables added via scripts in global.asa. * Static collection – contains the names of all objects added via the tag in global.asa.
Male Female Referring to the above, which line of code would retrieve the selected radio button value?
A. For cnt=0 to rbSex.count - 1 If rbSex(cnt).value = selected Then strSex = rbSex(cnt).value exit for End If Next B. strSex = Request("rbSex").selected.value C. strSex = Request("rbSex")
The FileSystemObject provides an object interface to drives, directories, and files for which of the following?
A. Any local or mapped drive on either the server or the client. B. Only files and subdirectories in the web site’s home directory. C. Any local physical drive or mapped drive on the web server.