Multiple shebang lines

*** EDIT: I found something close to my solution under an IIS 7 Module Handle.*****

(Non-Homework question, simply an ease of use one)
Odd question here and maybe its my newness to cgi/Perl, but is it possible to have 2 shebang lines?

I write an test a ton of my homework code on my windows PC. (Vista 64, IIS 7) but when I upload I need to change the shebang line to a Linux format

Is it possible to have both running? or to trick out IIS 7 to think its Unix.

#!/usr/bin/perl
#!c:/perl64/bin/perl.exe

Its only 2 minutes worth of work, and I admit to being lazy.

Sadly, not really. What you can do is to launch the program with the perl command. So if perl.bat is in your PATH on Windows and in your PATH on Unix (which it should always be), you can do:

perl path-to-myprogram/myprogram

To my knowledge, though, Windows doesn't really recognize the #! syntax (maybe they added it recently??) and Windows knows its a perl program because it has the .pl extension.