hi guys,
can you give me some ideas please.
i want to output on an asp page the html texts from database using response.write, but this code below gives an error
changing the double quotes to the following gives no error, but this is not an option as i don't want to touch whatever is in the database
do you have any ideas you can recommend? thanks
.
can you give me some ideas please.
i want to output on an asp page the html texts from database using response.write, but this code below gives an error
Code:
<% response.write("hello world<br><img src="somepix.jpg">") %>
changing the double quotes to the following gives no error, but this is not an option as i don't want to touch whatever is in the database
Code:
<% response.write("hello world<br><img src=""somepix.jpg"">") %>
<% response.write("hello world<br><img src='somepix.jpg'>") %>
do you have any ideas you can recommend? thanks
.