标签: asp-classic title
我有这个:
<head> <title>This is my title</title> </head>
然后我如何编写一个写出标题内容的.ASP脚本^^
答案 0 :(得分:1)
简单。
<title><%="This is my title"%></title>
或
<title><%=String%></title>