-
-
-
-
-
-
-
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... -
ADO is an object model for accessing which of the following?
A. Relational data via Jet. B. Local or SQL data via Jet. C. Relational data via ODBC. D. Non-relational data via DSN-less ODBC. E. All types of data via OLE DB.
-
What happens to ASP pages?
The browser makes a HTTP request; the server does the processing and gives a HTML response to the browser.
-
What are LOCAL and GLOBAL variables?
Local variables lifetime ends when the Procedure ends. Global variables lifetime begins at the start of the script and ends at the end of the script and it can be used by any procedure within the script. Declaring a variable by using the keyword PRIVATE makes the variable global within the script, but if declared using PUBLIC, then all scripts can refer the variable.
-
What is the function of Buffer in Response Object?
Buffer controls the HTML output stream manually.
-
What are the methods in Session Object?
The Session Object has only one method, which is Abandon. It destroys all the objects stored in a Session Object and releases the server resources they occupied.
-
Name some of the ASP components?
• Ad Rotator component – a way to manage advertisements on the web site. • Content Linker component – a technique to direct users through a set of pages on a web site by creating a list of URLs and description of the next and previous pages. • Browser Capabilities component – allows to customize the page to the ability of the browser viewing it. • Database Access component – allows to access data from...
-
What should be used in order to determine if the cookie "FavoriteFlavors" in the request object contains more than one entry?
A. Request.Cookies("FavoriteFlavors").HasItems B. Request.Cookies("FavoriteFlavors").Collection.Count C. Request.Cookies("FavoriteFlavors").Dictionary D. Request.Cookies("FavoriteFlavors").HasKeys E. Request.Cookies("FavoriteFlavors").Count
-
What does Internet Information Server (IIS) assume to be the default language for Active Server Pages?
A. Jscript B. JavaScript C. JAVA D. VBScript E. ECMAScript
-
What should the developer use in order to have an Active Server Page (ASP) invokes a stored procedure on a SQL Server database?
A. ADO B. RDO C. RDS D. OLEDB E. None of the above.
-
What are the types of HTML?
• Static HTML – Browser uses HTTP to request HTML file from the Web Server • Dynamic HTML – Browser uses HTTP to request an executable application rather than a Static HTML file
-
ASP Interview Questions
Ans