在ASP中写出页面标题<title> THIS </title>

时间:2012-04-22 20:19:42

标签: asp-classic title

我有这个:

<head>
<title>This is my title</title>
</head>

然后我如何编写一个写出标题内容的.ASP脚本^^

1 个答案:

答案 0 :(得分:1)

简单。

<title><%="This is my title"%></title>

<title><%=String%></title>