<% Set Application("Thing") = Server.CreateObject("THINGDOER.thingy") %> The above code appears in the global.asa file. What would it accomplish?
A. It would create a "Thing" object and place it in Contents Collection of the Application object. B. It would create a "Thing" object and place it in StaticObjects Collection of the
A. Setting the [component name].scope property. B. Using the Server.CreateObject method. C. Placing it in the Session or Application OnStart event handler. D. Instantiating the component in the global.asa
Latest Answer : Its Option E. tag ...
A. Client actions cannot change Application variables. B. The change is not visible to any client until the application is stopped and started. C. The change is only visible to future requests made by
Latest Answer : Answer : E ...
POST METHOD: The POST method generates a FORM collection, which is sent as a HTTP request body. All the values typed in the form will be stored in the FORM collection. GET METHOD: The GET method sends
Latest Answer : getmethod uses the querystring to pass the data to the server so it appends data to the url so it is not secured one whereas post method differs from it it is passed to the server through the form collection ...
• Lock – prevents clients from modifying the variables stored in the Application object. • Unlock – removes the lock from variables stored in the Application object.
Latest Answer : contents.removecontents.removealllockunlock ...
• Application_OnStart – This event will be fired when the first visitor hits the page. • Application_OnEnd – This event runs when the server is stopped.
Latest Answer : application onstartapplication onend ...
A user accessing an application is known as a session.
• SessionID – returns the session identification number for each user. • Timeout – sets the timeout period assigned to the Session object for any application, in minutes. • CodePage
Latest Answer : There are four properties in Session Object. 1. CodePage 2. LCID 3. SessionID 4. ...
Objects that can enhance the application are known as the Scripting Objects.
A. Upon every request from an application by a client for an .asp document. B. Upon the first request from an application by a client for any file in the application. C. Upon the first request for an .asp
Latest Answer : Answer should be E ...