Active Server Pages or ASP, as it is more commonly known, is a technology that enables you to make dynamic and interactive web pages.
ASP uses server-side scripting to dynamically produce web pages that are not affected by the type of browser the web site visitor is using.
ASP Interviews are getting tough these days as the technology grows faster. To get through the ASP interview one needs to update him/herself in a regular manner. Having said that, just before the interview, it is very important to have a quick glance of the reputed ASP questions and answers to make yourself comfortable during the interview process. This is where DoAnswers.com helps you in renewing yourself on ASP and various other technologies interview preparation.
11. Name the ASP Objects?
Request Object Response Object Server Object Session Object Application Object
12. Naming constraints for a variable ?
It can be up to 255 characters Must start with an alphabet Must not contain an embedded period or full-stop
13. What are ARRAYS?
Arrays are variables that store items of similar information.DIM ARRAY1(4) (declares an array with the name array1 with 5 elements)
14. What are Scripting Objects?
Objects that can enhance the application are known as the Scripting Objects.
15. What are the advantages of using ASP?
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 in languages that are not supported by the browser Can provide the client with data that does not reside on the client?s machine Provides improved security measures since the script cannot be viewed by the browser
16. What are the ASP Scripting Objects?
The Dictionary object, the FileSystemObject object, TextStream object.
17. What are the attributes of the tags? What are their functions?
The two attributes are ACTION and METHOD
The ACTION gives the name of the ASP file that should be opened next by which this file can access the information given in the form The METHOD determines which of the two ways (POST or GET) the browser can send the information to the server
18. What are the browsers that can access ASP pages?
Internet Explorer (supports VBScript, JavaScript) Netscape Communicator/ Navigator (supports only JavaScript, VBScript can be also added too)
19. What are the collections of Application Object?
* Contents collection - contains all variables added via scripts in global.asa. * Static collection - contains the names of all objects
20. What are the event handlers of Application Object?
Application_OnStart- This event will be fired when the first visitor hits the page. Application_OnEnd- This event runs when the server is stopped.