I need that some html in the area in the asp.net page that i am coding, is changed according to a string variable. I was thinking about creating a label, and then change the
If you really don't want to use any server controls, you should put the Response.Write in the place you want the string to be written:
Response.Write
<% Response.Write(stringVariable); %>
A shorthand for this syntax is:
<%= stringVariable %>