in reply to Perlscript ASP page responds strangely
should be changed toif ($rtype = "header ")
instead. The '=' sign in the VB 'if' means equality test, but in Perl is an assignment. And also because you are comparing are two strings, you should use the 'eq' comparison keywords.if ($rtype eq "header ")
|
|---|