in reply to Re: CGI::Ajax + Template::Toolkit Question
in thread CGI::Ajax + Template::Toolkit Question
Using randyk's solution, i get the following error (from CGI::Ajax):
Current code:
sub main_page { my $output = ''; my $template = 'main.tt'; $tt->process($template, $config, \$output) || die $tt->error(); return $output; }
Template code:
(header.tt)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:/ +/www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>[% title %]</title> </head> <body>
(main.tt)
<body> <p>Please log in.</p> <p>Username: <input type="text" name="username" id="username" /></p> <p>Password: <input type="password" name="passwd" id="passwd" /></p> <p><input type="submit" name="login" value="login" onClick="login(['us +ername'], ['passwd'], ['authenticated']);"/></p> </body> </html>
I'm not sure what this error means coming from CGI::Ajax. It's a little unspecific, and I don't see anything in the docs regarding it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CGI::Ajax + Template::Toolkit Question
by randyk (Parson) on Mar 07, 2007 at 16:17 UTC | |
by stonecolddevin (Parson) on Mar 09, 2007 at 01:01 UTC | |
by randyk (Parson) on Mar 09, 2007 at 07:12 UTC |