This kind of statement needs to be backed with some context. Both Perl and PHP are interpreted scripting languages. As far as I know classic ASP (with an .asp extension) is also an interpreted scripting language which has to be interpreted with each web request. The overhead of loading a script and all of it dependencies with each request can be a significant part of the request to response time. Perl has mod_perl which essentially caches the results of an interpreted script and PHP has equivalent accelerators. But Perl and PHP do not come with these accelerators directly. Assuming you are running the Apache web server you need to compile these accelerators for your copy of Apache and set them up. From my experience that has been a tricky process but it does dramatically speed up your Perl and PHP sites.
With classic ASP I assume an accelerator comes out of the box so you do not have to take the extra step of putting it in place. I have been surprised how fast ASP has been for sites I have had to update. Since I started working with the Microsoft platform after years of working in the LAMP side of things (FreeBSD, Apache, and Perl in my case) I never did much ASP work. I just touch ASP occasional for legacy maintenance. I went straight into ASP.NET which is compiled, not interpreted. Normally you can expect a compiled solution to be much faster than an interpreted solution. If your author means ASP.NET (which some have started abbreviating as ASP in some books) then you may be dealing with the interpreted versus compiled distinction.
Still a script can sometimes be faster than a compiled solution, in some cases. A scripting language like Perl has been around a while and the interpreter has many optimizations that are in place to address known performance issues. Those optimizations take very readable code that is typical for the language and applies these optimizations. If you were coding something up in C, which specifically controls how a program is executed, you would not benefit from a runtime optimization in the same way. Also with Perl you may be using a module which offloads the processor intensive tasks to a C compiled component that does the heavy lifting very quickly. The benefit is that it is faster to write the script for your custom needs while it runs possibly as fast or faster than the purely C solution. With more work to manually optimize the C alternative you could make it much faster. But where do you want to spend your labor dollars? If I can do it quickly and essentially get sufficient performance in 10% of the time, why would I do more work?
With the possibility that a scripting language can be faster than a purely compiled alternative then your authors absolute statement that one thing is faster than another cannot be true. I would at least note the distinctions in a side bar. Not all things are equal, as the phrase goes.