|
|
insert double quotes in asp - ASP
|
Views : 414
|
|
Tagged in : ASP
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Insert double quotes
In PHP and other languages we can use two type of quotes (single and double) but in ASP we cant use single quote because it is treated as a comment.
If you want to display some text within quotes you have to use two double quotes as follows.
<% Dim str
str="This is a ""example"" text"
Response.Write(str)
%>
Output
This is a "example" text
|
|
By Nirmala, On - 2009-11-26 |
|
|
|