For my website, I use SSI to include my header and footer asp files. I have the rest in the middle. I want to create different titles for each page, but the title tag is in my header file so it has to be the same all of the time. I would like to use ASP to solve this. In the header I was thinking of putting in this code:

<title>
<%
Response.write title
%>
</title>

And in my page this code:

<%
Dim title="News"
Response.write title
%>


But it doesn't work because the variable is declared after the time I want to write it. How should I go about this? Thanks.