Re: [cgiapp] HTML::Mason... how does it stack up

2002-01-25 Thread Terrence Brannon
On Wednesday, January 23, 2002, at 11:06 PM, Jesse Erlbaum wrote: Mason is a server-page system. It is, architecturally, no different from EmbPerl, ASP, JSP or ColdFusion. CGI::Application is what I would describe as an application-oriented architecture. Combined with a templating

[cgiapp] Need a help...

2002-01-25 Thread Sabherwal, Balvinder (MBS)
Guru's Can someone pls give a hand to rewrite the following pice of the code with the help of CGI::Application. I am trying to print a table on the webpage. Thanks Bal. if ( $h == 1) { foreach my $kv (@cols) { print_END_; TD P

[cgiapp] redirect to another run mode

2002-01-25 Thread Faine, Mark
How can I redirect my script to another run mode, for example if a certain condition exists then go to run mode 3 _ Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [cgiapp] redirect to another run mode

2002-01-25 Thread Kenny Pyatt
The simple way (if I understand what you want) is: if ($condition) { $self-Mode3(); } Faine, Mark wrote: How can I redirect my script to another run mode, for example if a certain condition exists then go to run mode 3 _ Mark

RE: [cgiapp] redirect to another run mode

2002-01-25 Thread Jesse Erlbaum
Hi Kenny -- The simple way (if I understand what you want) is: if ($condition) { $self-Mode3(); } Actually: if ($condition) { return $self-Mode3(); } -Jesse- - To unsubscribe,

RE: [cgiapp] Need a help...

2002-01-25 Thread Sabherwal, Balvinder (MBS)
I knew that, I wanted to know if there is a way of doing this with $q-table() or somthing similar. Thanks for the help Brian!! Bal. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 3:08 PM To: [EMAIL PROTECTED] Subject: Re: [cgiapp]