[Zope] Form action -> zsql method linkage ? - was Re: [Zope] how to get detailsof sql.error ?of sql.error ?

Jens Vagelpohl tommymi@concentric.net
Thu, 9 Dec 1999 17:46:56 -0500


simpler even:

   <dtml-try>
   
     <dtml-call insert_survey_rec>  
     Your survey was submitted successfully!
     Thanks!
   <dtml-except>
     There was a problem processing your survey.
     Please try again, or send e-mail to ...
 
   </dtml-try>



> -----Original Message-----
> So would it have simply the following ( syntax ? )
> 
> <dtml-with REQUEST>
>   <dtml-try>
>   
>     <dtml-call "insert_survey_rec(e-mail,...)" >  <- syntax ? quotes
> around e-mail?
>     Your survey was submitted successfully!
>     Thanks!
>   <dtml-except>
>     There was a problem processing your survey.
>     Please try again, or send e-mail to ...
> 
>   </dtml-try>
> </dtml-with>
> 
>