ASP(classic) interview questions 2
Why we use Option Explicit in ASP pages?
What is the default Scripting Language of ASP?
What is a session object?
Define Cookies? Does Cookies creating on server?
Can we use different scripting language in one ASP Page?
December 10, 2007 | Filed Under ASP
Comments
One Response to “ASP(classic) interview questions 2”
Leave a Reply





1. Option Explicit in ASP pages
==================================
When used in ASP pages, Option Explicit requires that all variable names should be declared prior to using them, if you not, an error will generate, for example:
will generate an error, while below one will work without any problem: