I wrote a simple script to determin the os on the first page proload,and then page jump to the right page, but the page(the one system automaticlly jump to)'s backgound image was enlaged itself, i don't know why this happened?

but
PHP Code:
os_name = System.GetOSName();
if (os_name == "Windows 2000") then
Page.Jump("Main Menu-2k-2");
elseif (os_name =="Windows XP") then
Page.Jump("ARP-1700-1 - 3");
elseif (os_name =="Windows 98" or os_name =="Windows 95" or os_name =="Windows Me") then
Page.Jump("Main Menu-98-2");
else
Page.Jump("Main Menu-1");
end
Leave a comment: