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
51. What is ASP (Active Server Pages)?
ASP is a server side-scripting environment for building dynamic and interactive web pages. Since the scripts run on the server side, the web server does all the processing.
52. 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)
53. What is Application-scope?
Application-scope means that variables (and objects) can be accessed from any ASP pages that is part of the application.
54. What are the types of HTML?
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
55. What are the properties of Session Object?
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 determines the code page that will be used to display content.
LCID a locale identifier, which determines time zone and language, rules for the system
56. What are the event handlers of Session Object?
Session _OnStart This event will be fired when a new user begins a session with the web site.
Session_OnEnd This event is called whenever a session terminates.
57. What are the methods in Application Object?
Lock prevents clients from modifying the variables stored in the Application object.
Unlock removes the lock from variables stored in the Application object.
58. What are the methods in Application Object?
Internet Information Server (IIS) on Windows NT
Personal Web Server (PWS) on Windows 95
Peer Web Services on Windows NT
59. 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)
60. How does the server identify and execute the server-side scripts within HTML code?