> but Active State still substitutes the name of the function represented by
> <%= , namely
>  $Response->write($Request->Form( 'City' )->{Item}  );
> The suggestion looked to be just what I wanted, but I'm still stuck.

<%= %> tags can only contain a single variable. This works too:

<!-- normal HTML code here -->
<%
 # perl code here
 $Response->Write( $Request->Form('city')->{Item} );
%>
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to