|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
Problem with a multi language site
Hi All,
I'm posting for a problem I’ve encountered while creating my multi-language site. Here’s the .asp code I’ve used: Index.asp Code:
<%
lingua = lcase(Request.QueryString("lingua"))
session("lingua") = lingua
Response.Redirect "language.asp"
%>
language.asp Code:
<html>
<head>
<title>. . . . . . . . </title>
</head>
<body>
<%
lingua = session("lingua")
IF lingua = "italiano" then
Response.Redirect "index_it.html"
else
Response.Redirect "index_en.html"
End IF
%>
</body>
</html>
For some reason the output of lingua is always “” (void) do you have any suggestion to help me? Thanks so much in advance |
|
#2
|
|||
|
|||
|
it could be set as the default language, i guess i would have to see the entire script in order to see what could be causing the problem.
__________________
Apache Expert |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Problem with a multi language site |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|