<% 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. 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 ...
Variable is a memory location through which the actual values are stored/retrieved. Its value can be changed.
Local variables lifetime ends when the Procedure ends. Global variables lifetime begins at the start of the script and ends at the end of the script and it can be used by any procedure within the script.
Latest Answer : Local Variable: The scope of the local variable is for the procedure in which they are declare. Which are called procedural level variable. Which are local to the procedure. The variables which are declare outside the procedure in option explicit whose ...
It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop
.
<% strName="John Smith" %> Referring to the above, if you want to pass the contents of the strName variable in a hyperlink, which line of code would you use?
A. This cannot be done. The anchor is on the client and the variable is on the server. B. href="Encode.asp?
A. The browser sends a cookie to the server with each request. B. The browser sends a Querystring variable to the server with each request. C. The browser sends a hidden Form variable to the server with
Latest Answer : A is correct when browser cookies are enabled. Sessions ID is used and stored in the browser cookiee. This session Id is sent in the request header all the time ...
A. After every request for an application document, since web servers are stateless servers. B. As soon as there are no open connections to any application document. C. When the web server is stopped in
Latest Answer : C is the correct answer, When the web application is stoped at the web server Application onEnd event is fired !!! ...
How do assign the memo data type in ASP page as variable? and I want to place that variable in HTML's textarea as its value?