Search for “Arabic” Is Url Request and Change Codepage – ASP

  • Home /
  • Blog Posts /
  • Search for “arabic” is url request and change codepage – ASP

If you are using Classic ASP (yuck) to create an arabic section of a website you can search for the arabic string in your Request URI and then change the session’s codepage as follows:

if instr(1, request.ServerVariables("PATH_INFO"), "arabic") then
	session.codepage = 1252
end if