|
Related Questions |
View Answer |
 |
<SCRIPT LANGUAGE="VBScript" RUNAT=Server> a = 1 </SCRIPT> <SCRIPT LANGUAGE="VBScript"> a = 2 </SCRIPT> <% Response.Write a %> In the sample code shown above, what will be written to the screen? |
View Answer |
 |
<% Set Application("Thing") = Server.CreateObject("THINGDOER.thingy") %> The above code appears in the global.asa file. What would it accomplish? |
View Answer |
 |
<% iPos = Instr("Hello World","r") %> Referring to the above, what is the value of iPos? |
View Answer |
 |
<% varType = rsTest("field1").type %> In the database table, if the datatype for field1 (shown above) is Number, what is the value of varType? |
View Answer |
 |
What is the program ID (ProgID) for ActiveX Data Objects in 2-tier and 3-tier database applications? |
View Answer |
 |
Which choice is NOT an ADO collection? |
View Answer |
 |
Which will NOT set the scope of an Active Server Component? |
View Answer |
 |
How to handle Error in ASP |
View Answer |
 |
<% intA = 3 sStrA = "Hello World" sStrB = "Hello World" + intA Response.Write sStrB %>
What would be the result of the above code? |
View Answer |
 |
<% intA = 3 sStrA = "Hello World" sStrB = "Hello World" + intA Response.Write sStrB %>
What would be the result of the above code? |
View Answer |
 |
What happens when a client submits a form which changes the value of an Application variable? |
View Answer |
 |
ADO is an object model for accessing which of the following? |
View Answer |
 |
Which of the following are Server Object methods ( Choose Two) |
View Answer |
 |
Following is the code Server.MapPath (".") consider the path is C:InetpubWWWRootMATDefault.asp. What will be the output |
View Answer |
 |
ClientCertificate is a collection of |
View Answer |
 |
IsClientConnected is a property of |
View Answer |
 |
What happens to a HTML page? |
View Answer |
 |
What happens to ASP pages? |
View Answer |
 |
What are the Web Servers supporting ASP? |
View Answer |
 |
Explain the POST & GET Method or Explain the difference between them? |
View Answer |