ASP Multiple choices


Total available count: 25
Subject - Web Development
Subsubject - ASP

<%= is the same as:


 

 

 

 



B


Solution:-

<%= is the same as <%Response.Write
Response. write() is used to display the normal text and Response. output. write() is used to display the formatted text.

Examples
Example 1. <% Response.Write "Hello Slightbook World" %> Output: Hello Slightbook World.
Example 2. <% name="Slightbook" Response.Write(name) %> Output: Slightbook.
Example 3. <% Response.Write("Hello <br> Slightbook <br> World") %> Output: Hello. Slightbook. World.

 




Next 5 multiple choice(s)

1

How do you write "Hello World" in ASP

2

ASP server scripts are surrounded by delimiters, which?

3

What does ASP stand for?

4

What is the correct way to include the file "time.inc" ?

5

Include files must have the file extension ".inc"

Comments