We can send outputs to screen or web browser by using Response Write object in ASP. To print a simple output here is the code
Response.Write "Hello World"
The above line will print the string Hello World . You have seen double quotes are used to indicate starting and ending of a string. Now if we want to print double quotes within our string then we have to use two double quotes in place of one. Like this
Response.Write "Raju told ""He is learning ASP from plus2net"" So you can also learn from here "
The output of this command will be
Raju told "He is learning ASP from plus2net" So you can also learn from here