Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
448 B

  1. <%
  2. Response.Buffer=True
  3. Response.Expires = 0
  4. Response.ContentType = "application/x-JavaScript"
  5. acceptLang = Request.ServerVariables( "HTTP_ACCEPT_LANGUAGE" )
  6. acceptLang = right( acceptLang, 2 )
  7. Select Case acceptLang
  8. case "de"
  9. Server.Execute( "de/cobrand.asp" )
  10. case "ja"
  11. Server.Execute( "ja/cobrand.asp" )
  12. case "fr"
  13. Server.Execute( "fr/cobrand.asp" )
  14. case else
  15. Server.Execute( "en/cobrand.asp" )
  16. End Select
  17. %>