I'm stuck on what should be a pretty simple patch to FormFill. We
pass data around via QueryString a lot, so I'd like our form fields
to be prefilled using both $Request->QueryString and $Request->Form.
I was trying a patch like so:
my $fdat;
eval { $asp->{Request}{Params} };
if ($@) {
Great work!
I started to take that approach and decided to try a callback, or
passing a hashref that would get populated, instead of calling another
page. That would make the render function more adaptable to other
frameworks, instead of having to add in specific code for each one. I
have done
I've done a first cut at modifying CGI::FormBuilder to use ASP's $Response->Include()
as a templating mechanism.
In an ASP file your form is created:
<<<
Try Formbuilder with ASP
A really simple CGI::FormBuilder example using ASP
<%
require CGI::FormBuilder;
my $form = CGI::FormBuilder-