ASP Programming

  Home  Microsoft .Net Technologies  ASP Programming


“Learn ASP Programming by Interview Questions and Answers.”



194 ASP Programming Questions And Answers

42⟩ How to handle Error in ASP

A. Using On Error Goto <ErrorPart>

B. Using On Error Resume

C. Using On Error Resume Next (Answer)

D. Using On Error Goto 0

 207 views

44⟩ What is Application-scope?

Application-scope means that variables (and objects) can be accessed from any ASP pages that are part of the application.

 226 views

45⟩ What is Server Object?

Server Object controls the ASP execution environment. It can set the amount of time script can run before an error occurs. It converts a virtual path to a physical path on the server. Takes a user supplied string and encode it into proper format for a URL string.

 224 views

48⟩ What is a Scripting Language?

It permits to create more interactive Web Pages. Validation, formatting of web pages can be done. VBScript, JavaScript are some examples.

 210 views

50⟩ Name the ASP Objects?

1. Session Object

2. Application Object

3. Server Object

4. Request Object

5. Response Object

6. Object Context

7. Error Object

 195 views

52⟩ What is Server-Side includes?

It provides extra information by which it makes the site easier to manage. It can include text files using the #include statement, retrieve the size and last modification date of a file, defines how variables and error messages are displayed and inserts the values of HTTP variables in the page sent back to the browser.

 189 views

55⟩ What is an Err Object?

The ASP Error object is used to display detailed information of any error that occurs in scripts in an ASP page.

 205 views

58⟩ What is an .ASP file?

It is a Text File that contains the combination of the following:

Text

HTML tags

Script Commands

 199 views

59⟩ What purpose is served by the Application.Lock method?

A. It locks the Application object, preventing other clients from altering any values in the Contents collection. (Answer)

B. It locks the application, preventing the server from responding to any requests for application documents.

C. It locks the application, preventing non-SSL requests from being processed.

D. It locks the Application object, preventing other clients from reading any values in the Content collection.

E. It locks other clients from reading the Contents collection.

 188 views