Apache::ASP Powered by ModPerl & Apache Powered by Apache::ASP
Demo ASP: formfill.asp 2024-07-27

This page makes use of the FormFill feature which populates a HTML form from $Request->Form data. The FormFill functionality is provided by the HTML::FillInForm module, which in turn relies on HTML::Parser.

It is enabled with:

  at runtime: $Response->{FormFill} = 1

    -- or --

  in config:  PerlSetVar FormFill 1
  
At HTML::FillInForm v.07, select boxes must have their option values defined explicitly to be auto filled by the form fill feature, such as:
<option value="Value">
Example Form
Your Name:
Your Favorite Color:

The following are the contents of the data returned from doing a binary read of the form data:

view this file's source