#!/usr/bin/perl /usr/bin/asp-perl <% $Response->{FormFill} = 1; %>
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:
<%=$Server->HTMLEncode('
Example Form
Your Name:
Your Favorite Color:
<% if(%{$Request->{Form}}) { %>
Your name is <%=$Request->Form('name')%>
Your favorite color is <%= $Request->{Form}{color} %> <% } %>
The following are the contents of the data returned from doing a binary read of the form data:

<%=$Request->BinaryRead($Request->{TotalBytes})%>