ASP interview Questions 1


How ASP works?

What are the Server Variables?

Difference between response.redirect and response.transfer?

Difference between POST and GET?

What is response and request objects?

Share This These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netscape
  • Reddit
  • StumbleUpon

Comments

2 Responses to “ASP interview Questions 1”

  1. John on December 7th, 2007 4:22 am

    Browser requests ASP file from web server.
    Instead of processing it on client side, ASP executed on the server.
    After processing the file on the server, the result is sent back to user browser as HTML.
    Because ASP script runs on the server, the web server does all the processing and HTML pages generated and sent back to the browser, hence ASP uses large server resources

  2. Scott on December 10th, 2007 6:26 am

    request.ServerVariables contains information about server, where our ASP script is running.

    The ServerVariables can give us a lots of information about the server settings like IP address of Server, Name of the Server, Server virtual path, Server Software (IIS5, IIS6 etc).

    Using ServerVariables you can get your visitors’ IP address, their browser version, their browser language settings, etc.

Leave a Reply