Accidentally in a friend's blog to see a very interesting effect, when you reply in its blog, or message, cookies record the user name of your message, and your next visit, the title of its blog before the Add, welcome to a certain return words. At that time feel very intimate, user experience is good, here will be released to share with you.
Add the code before header.asp file
<%
If Request.Cookies (cookiename) ("Guest") <> "" Then
Dim a,b
A = Split (Request.Cookies (CookieName) ("Guest"), "-")
B=split (A (1), "$")
%>
<script type= "Text/javascript" >
Document.title = "Hi" + ' <% Response.Write (b (0))%> ' + "Welcome back," + Document.title
</script>
<% Else%>
<script type= "Text/javascript" >
Document.title = "If a new user comes in and you want to give a greeting to a new user, you can add a greeting here, or leave it blank to" + document.title
</script>
<% End If%>