in reply to Problem With CGI::Application and FormBuilder

In CGI::Application, you shouldn't print the html to STDOUT when in runmodes, you need to return it.

Also, in your login runmode if the login and password are successful, you should either call the next runmode or redirect to where you want to go. Right now, you return no html so a blank page will appear.

-derby
  • Comment on Re: Problem With CGI::Application and FormBuilder