I can't get XMLSubs to work with perl v5.00503 with ASP.pm version 2.17.
When I put <s:td>Hi</s:td> in my code, it would generate the following
perl code:
s::td({ }, 'Hi');
which did not work for some reason; I think that perl didn't realize that
this was supposed to be a function call. I made it write this instead:
&s::td({ }, 'Hi');
and it works now.
The lines in ASP.pm that I fixed are in "sub ParseXMLSubs":
1195 "<% &$func({ $args }, ''); %>"
1224 "<% &$func({ $args }, $text); %>"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]