-
Which is the default Data types in VBScript?
Variant is the default data type in VBScript, which can store a value of any type.
-
-
-
-
-
-
-
Sending SMS via ASP.NET
how do i send sms's via the program I created using asp.net,or if somebody knows what tolls do i need to create a web application that sends sms's
-
ASP.NET Session Timeout
How to set Session Timeout upto infinite, so it should never get expired, In ASP not in ASP.NET.
-
Application Variable
What happens when a client submits a form which changes the value of an Application variable
A. Client actions cannot change Application variables. B. The change is not visible to any client until the application is stopped and started. C. The change is only visible to future requests made by that client during their current session. D. The change is visible to all clients, but only after they... -
In the database table, if the datatype for field1 (shown above) is Number, what is the value of varType?">
<% varType = rsTest("field1").type %> In the database table, if the datatype for field1 (shown above) is Number, what is the value of varType?
A. The field value. B. A string description. C. The field name. D. NULL. E. An enumerator.
-
What is the program ID (ProgID) for ActiveX Data Objects in 2-tier and 3-tier database applications?
A. ADO B. RDODB C. ADODB D. RDS E. OLEDB
-
Which will NOT set the scope of an Active Server Component?
A. Setting the [component name].scope property. B. Using the Server.CreateObject method. C. Placing it in the Session or Application OnStart event handler. D. Instantiating the component in the global.asa file. E. Using the <OBJECT> tag.
-
How to handle Error in ASP
A. Using On Error Goto <ErrorPart> B. Using On Error Resume C. Using On Error Resume Next D. Using On Error Goto 0
-
What happens when a client submits a form which changes the value of an Application variable?
A. Client actions cannot change Application variables. B. The change is not visible to any client until the application is stopped and started. C. The change is only visible to future requests made by that client during their current session. D. The change is visible to all clients, but only after they complete their current sessions and begin a new session. E. The change is visible to all clients...
-
What is the result of using Option Explicit?
A. This applies only to Visual Basic, not VBScript. B. All variables must be dimensioned before use. C. All variables are dimensioned at run-time. D. Forces all <SELECT> controls to have a SELECTED option. E. Requires all variables be cast as specific DataTypes.
-
‘onStart’ and ’onEnd’ are events of what object(s)?
A. Application only. B. Session only. C. Server only. D. Application and Session only. E. Application, Session, and Server.
-
-
How to Display images using Response object?
A. Contenttype=Application/Brush B. Contenttype=Image/JPG C. Contenttype=Application/paint D. Contenttype=Image/WMF
-
What is the difference between client-side script and server-side script?
Scripts executed only by the browser without contacting the server is called client-side script. It is browser dependent. The scripting code is visible to the user and hence not secure. Scripts executed by the web server and processed by the server is called server-side script.
ASP Interview Questions
Ans