I have written code so that the page should redirect when it is loaded.
I am not sure how it works.
The page is called contindex.asp
The code is as follows
<%@LANGUAGE="VBSCRIPT"%>
<%
If session.LCID = 1036 then
Response.Redirect "contindexfre.htm"
ElseIf session.LCID = 1040 then
Response.Redirect "contindexita.htm"
ElseIf session.LCID = 1034 then
Response.Redirect "contindexspa.htm"
ElseIf session.LCID = 2058 then
Response.Redirect "contindexspa.htm"
Else
Response.Redirect "contindexeng.htm"
End If
%>
This is exactly what I have. Is there ment to be something calling this to work or should the server automatically redirect with this code. B-)
I am not sure how it works.
The page is called contindex.asp
The code is as follows
<%@LANGUAGE="VBSCRIPT"%>
<%
If session.LCID = 1036 then
Response.Redirect "contindexfre.htm"
ElseIf session.LCID = 1040 then
Response.Redirect "contindexita.htm"
ElseIf session.LCID = 1034 then
Response.Redirect "contindexspa.htm"
ElseIf session.LCID = 2058 then
Response.Redirect "contindexspa.htm"
Else
Response.Redirect "contindexeng.htm"
End If
%>
This is exactly what I have. Is there ment to be something calling this to work or should the server automatically redirect with this code. B-)