Forum Moderators: open
You can use server variables to see what the domain is and redirect if it has no www, for example
If Left(Request.ServerVariables("HTTP_HOST"),3)<>"www" Then
strRedirect = "www." & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME")
Response.Clear()
Response.Redirect(strRedirect)
End If
Hope this helps