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