Thanks to everyone that offered input!
The solution I ended up with is
<?php
readfile('http://www.someplace.com/page.asp');
?>
This is not the greatest solution becuase I have to call a page on my own server rather than running ASP right from PHP, but it works.
If anyone knows of a better way, please post.
Thanks!