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.
31. What happens to a HTML page?
The browser makes a HTTP request; the server gives a HTTP response to the browser and the browser converts into a HTML page.
32. What happens to ASP pages?
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.
33. What is a "Virtual Directory"?
Virtual directories are aliases for directory paths on the server. It allows moving files on the disk between different folders, drives or even servers without changing the structure of web pages. It avoids typing an extremely long URL each time to access an ASP page.
34. What is a class in CSS?
Answer1 A class allows you to define different style characteristics to the same HTML element. Answer2 class is a child to the id, id should be used only once, a css class can be used multiple times: div id=?banner? p class=?alert?
35. What is a Dictionary object?
It lets you store and retrieve information in a flexible data structure. Each value or information stored in a Dictionary is associated with a key through which the information can be retrieved.
36. What is a FileSystemObject object?
It provides access to the physical file system of the web server. It gets and manipulates information about all drives in a server, folders and sub-folders on a drive and files inside a folder.
37. What is a Form collection?
The Form collection holds the values of the form elements submitted with the POST method. This is the only way to generate a Form collection.
38. What is a Scripting Language?
It permits to create more interactive Web Pages. Validation, formatting of web pages can be done. VBScript, JavaScript are some examples.
39. What is a TextStream object?
It allows you to access(read/write) the contents of text files stored on the web server.
40. What is a variable?
Variable is a memory location through which the actual values are stored/retrieved. Its value can be changed.