ASP Interview Questions and Answers
Related differences
Ques 1. What is ASP?
ASP stands for Active Server Pages. It is a server side technology which is used to display dynamic content on web pages. For example you could write code that would give your visitors different information, different images or even a totally different page depending on what browser version they are using.
Ques 2. How can you disable the browser to view the code?
Writing codes within the Tag
Ques 3. 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.
Ques 4. Give the comment Tags for the following?
VBScript : REM & ‘(apostrophe)
JavaScript : // (single line comment)
/* */ (Multi-line comments)
Ques 5. Which is the default Scripting Language of ASP (server-side)?
VBScript
Most helpful rated by users:
- What is ASP?
- How can you disable the browser to view the code?
- Give the comment Tags for the following?
- What is a "Virtual Directory"?
- What happens to a HTML page?