View Single Post
  #26 (permalink)  
Old 04-25-2008, 01:47 AM
KiruthikaSambandam KiruthikaSambandam is offline
D-Web Analyst
 
Join Date: Aug 2007
Posts: 332
KiruthikaSambandam is on a distinguished road
Default Re: Asp Interview Questions

What is asp basic syntax rule?

An ASP file normally contains HTML tags, just like an HTML file. However, an ASP file can also contain server scripts, surrounded by the delimiters . Server scripts are executed on the server, and can contain any expressions, statements, procedures, or operators valid for the scripting language you prefer to use.

What are session variables?


Session variables are used to store information about ONE single user, and are available to all pages in one application. Typically information stored in session variables are name, id, and preferences.
Tell about application variables.
Application variables are also available to all pages in one application. Application variables are used to store information about ALL users in a specific application.
Reply With Quote