ASP Programming

  Home  Microsoft .Net Technologies  ASP Programming


“Learn ASP Programming by Interview Questions and Answers.”



194 ASP Programming Questions And Answers

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

 202 views

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

 210 views

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

 229 views

88⟩ What is Cookies collection?

Cookies are text files that store information about the user by which the web server identifies and marks each different visitor to a web site and determines where a user has been before. A cookie can store information only when the user sends it. Individual cookies are limited to 4KB of data. The maximum number of cookies allowed is 300.

Cookies are stored on client’s machine.

 205 views

89⟩ 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)

 207 views

90⟩ What is ClientCertificate collection?

A ClientCertificate is an encrypted number that is stored in a file on the user’s computer. These stores details of any security certificates included with the request.

 201 views

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

 195 views

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

 217 views

95⟩ What are the advantages of using ASP?

Minimizes network traffic by limiting the need for the browser and server to talk to each other

Makes for quicker loading time since HTML pages are only downloaded

Allows to run programs in languages that are not supported by the browser

Can provide the client with data that does not reside on the client’s machine

Provides improved security measures since the script cannot be viewed by the browser

 212 views