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 ...
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 ...
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. ...
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 ...
• 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
It’s a method by which web pages can be built and generally used for formatting and linking text.
• Static HTML – Browser uses HTTP to request HTML file from the Web Server • Dynamic HTML – Browser uses HTTP to request an executable application rather than a Static HTML file
Latest Answer : There are two types of HTML,1.Static HTML -for creating static pages.2.Dynamic HTML -for creating dynamic pages using scripting languages like JavaScript,VBScript. ...