Re: How to generate pre-filled forms? (fwd)

2002-04-28 Thread simran
Have a look at the HTML::FillInForm module as well... it works wonders for me... On Sat, 2002-04-27 at 04:43, darren chamberlain wrote: * Ken Clark [EMAIL PROTECTED] [2002-04-26 14:33]: I'll throw my technique into the ring, too. I use Template Toolkit most of the time, and I pass the

Re: How to generate pre-filled forms? (fwd)

2002-04-28 Thread F . Xavier Noria
On 29 Apr 2002 09:16:42 +1000 simran [EMAIL PROTECTED] wrote: : Have a look at the HTML::FillInForm module as well... Yeah, thank you, I'll give it a try. I guess this is a natural candidate for an output chain, the HTML generated by two or three Apache modules will need that post-process, so

How to generate pre-filled forms?

2002-04-26 Thread F . Xavier Noria
I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he sent there, as CGI.pm does? -- fxn PS: I am using Apache modules + HTML::Template if that matters.

Re: How to generate pre-filled forms?

2002-04-26 Thread Wim Kerkhoff
On 26-Apr-2002 Paul Lindner wrote: On Fri, Apr 26, 2002 at 04:15:52PM +0200, F.Xavier Noria wrote: I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he

Re: How to generate pre-filled forms?

2002-04-26 Thread Kee Hinckley
At 4:15 PM +0200 4/26/02, F.Xavier Noria wrote: I am writing some modules that receive a form, process it, and return a page that includes that very form. Is there a standard way to fill that returned form so the user sees the same data he sent there, as CGI.pm does? -- fxn PS: I am using

Re: How to generate pre-filled forms?

2002-04-26 Thread F . Xavier Noria
On Fri, 26 Apr 2002 16:15:52 +0200 F. Xavier Noria [EMAIL PROTECTED] wrote: : I am writing some modules that receive a form, process it, and return a : page that includes that very form. Is there a standard way to fill that : returned form so the user sees the same data he sent there, as CGI.pm

Re: How to generate pre-filled forms? (fwd)

2002-04-26 Thread Ken Y. Clark
Forgot to cc the list. -- Forwarded message -- Date: Fri, 26 Apr 2002 11:35:37 -0400 (EDT) From: Ken Y. Clark [EMAIL PROTECTED] To: F.Xavier Noria [EMAIL PROTECTED] Subject: Re: How to generate pre-filled forms? On Fri, 26 Apr 2002, F.Xavier Noria wrote: Date: Fri, 26 Apr 2002

Re: How to generate pre-filled forms? (fwd)

2002-04-26 Thread darren chamberlain
* Ken Clark [EMAIL PROTECTED] [2002-04-26 14:33]: I'll throw my technique into the ring, too. I use Template Toolkit most of the time, and I pass the original Apache request object back to the template as a parameter. Then I call the param method to fill in the value of form elements, like