T
|
text author 3/1/2010 |
Hi I am using the latest build of 6.2 and am trying to change the header of the login page login.asp from the standard header that I have in the rest of the site. I have inserted the code below in my header.asp file that I found from doing a forum search but it doesn't seem to work. Is there anything obviously wrong with the code below: <% if Request.ServerVariables("SCRIPT_NAME")= "login.asp" then %><!-- #include file="header1.asp" --><% end if %> Thanks very much Richard
|
![]() |
Sergey Kornilov admin 3/1/2010 |
Request.ServerVariables("SCRIPT_NAME") contains script name with path. You need to remove the path part first.
|
T
|
text author 3/2/2010 |
Request.ServerVariables("SCRIPT_NAME") contains script name with path. You need to remove the path part first. Try this:
|