日期:2014-05-16 浏览次数:21003 次
i=trim(request.querystring("i")&")
if i<>"" then '传递了语言则用cookie保存起来
response.Cookies("lan").expires=date+365
response.Cookies("lan").path="/"
response.Cookies("lan")=i
else'未传递语言参数从cookie中获取
i=request.cookies("lan")
end if
if i<>"cn" and i<>"en" then i="cn"'语言不是cn和en默认为cn
if i="cn" then
'==读取中文内容输出
else
'==读取英文内容输出
end if