ASP Programming

  Home  Microsoft .Net Technologies  ASP Programming


“Learn ASP Programming by Interview Questions and Answers.”



194 ASP Programming Questions And Answers

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.

 210 views

2⟩ 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.

 192 views

7⟩ What is Querystring collection in ASP?

Querystring collection stores any values that are provided in the URL. This can be generated by three methods:

By clicking on an anchor tag

By sending a form to the server by the GET method

Through user-typed HTTP address

 200 views

10⟩ 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

 181 views

14⟩ What is a Form collection in ASP?

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.

 202 views