Technical interview questions and answers are essential for an ASP Interview because companies expect candidates to understand server-side scripting, session handling, cookies, request/response objects, and dynamic web page creation. ASP is widely used in older enterprise systems, and many organizations still rely on it for maintaining web applications. This makes ASP interview questions relevant in technical rounds of companies like TCS, Infosys, Wipro, Cognizant, and Accenture. For freshers and junior developers, learning ASP concepts helps build a strong foundation for understanding modern web technologies as well. This guide provides frequently asked ASP interview questions with clear and simple explanations to help job seekers prepare effectively. These questions will improve your technical confidence during placement tests and web development interviews.
Showing 10 of 79 questions
11. What are the methods in Session Object?
The Session Object has only one method, which is Abandon. It destroys all the objects stored in a Session Object and releases the server resources they occupied.
12. What is ServerVariables collection?
The ServerVariables collection holds the entire HTTP headers and also additional items of information about the server.
13. What is the difference between Querystring collection and Form collection?
The main difference is that the Querystring collection gets appended to a URL.
14. 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
15. What are the ASP Scripting Objects?
The Dictionary object, the FileSystemObject object, TextStream object.
16. 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.
17. What happens to ASP pages?
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.
18. How can you change the primary scripting language for a page?
Specify
19. What is application Object?
Shares information among users of an application. Gives a notification when an application starts or ends.
20. What is the difference between client-side script and server-side script?
Scripts executed only by the browser without contacting the server is called client-side script. It is browser dependent. The scripting code is visible to the user and hence not secure. Scripts executed by the web server and processed by the server is called server-side script.