在 asp 中使用 html 标签格式化文本

代码:

<!DOCTYPE html>

<html>

<body>

<%

response.write("<h2>You can use HTML tags to format the text!</h2>")

%>

 

<%

response.write("<p style='color:#0000ff'>This text is styled with the style attribute!</p>")

%>

</body>

</html>

结果:

相关文章