<% Response.Write a %> In the sample code shown above, what will be written to the screen?
A. 1 B. 2 C. 1, 2 D. 1&2 E. Nothing.
The browser makes a HTTP request; the server gives a HTTP response to the browser and the browser converts into a HTML page.
Latest Answer : Client send the request to the server thru Request objcet. Server recevied the information and after processing the request send back to the server thru response object.server object takes the user supplier string and encode it into the proper html format. ...
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.
Latest Answer : To make the HTML page dynamic ASP is used which the server page scripting language. Mainly used to convert the information and display it on browser ...
Response.Write
Latest Answer : display characters in html page using commandresponse.Write assign values using : ...
Buffer controls the HTML output stream manually.
Latest Answer : The Buffer property specifies whether to buffer the output or not. When the output is buffered, the server will hold back the response to the browser until all of the server scripts have been processed, or until the script calls the Flush or End method. ...
• Flush – sends previous buffered output to the client immediately, but continues processing the script. • Clear – erases any already-buffered HTML. • End – causes the
Latest Answer : The Flush method sends buffered HTML output immediately.The Clear method clear conents on the scriptThe End method stop all processing in the script. ...
• 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. ...
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 ...
What does Internet Information Server (IIS) assume to be the default language for Active Server Pages?
A. Jscript B. JavaScript C. JAVA D. VBScript E. ECMAScript
• Minimizes network traffic by limiting the need for the browser and server to talk to each other • Makes for quicker loading time since HTML pages are only downloaded • Allows to run programs