在ASP页面中发出原始html?

时间:2011-10-27 23:44:43

标签: html asp-classic templating

这非常恶化。我只想简单地插入原始html。我不能使用文字控件,因为没有忽略引号字符。我不想使用脚本元素,因为我将它添加到ascx文件中。我只想要原始的html输出。这个没有操作者吗?

1 个答案:

答案 0 :(得分:1)

我完全误解了你,但是:

在经典ASP中它是:

<%=("<div style=""color:red;"">html</div>")%>

输出:

<div style="color:red;">html</div>