I want users to be redirected to a different webpage if they are using a PS3
here is the code I have been trying to use
You could try something like this:
It may be easier to attempt to do this server side as well (C# ex below)
if (Request.UserAgent.ToUpper().Contains("PLAYSTATION")) //Send to correct page Response.Redirect("http://www.example.com/"); }