IDK about how asp does it but many people use header for such things. see header() in manual.
header("Location: http://www.example.com");
exit;
Note (as quoted from manual) : "Remember that the Header() function must be called before any actual output is sent either by normal HTML tags or from PHP."
It would be a nice if a more 'friendly' php way to redirect existed.