----- Original Message -----
From: "jawad haider" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, May 23, 2001 7:44 PM
Subject: Re: [Zope-dev] Simple Question
> </table>
> <input type="submit"value="Search Customer">
> </form>
>
>
> Here dtFindCustomer is a DTML method which in turn call z sql method which
performs actual search in the MY SQL DB. The control is transfered to the
next page when the form action method is called.
>
> HOW CAN i redirect the control on the same page and get the results
returned to the same page and displayed on this same page ?
>
> Hope I am able to explain my question this time.
Try to add a name attribute to the submit button like:
<input type="submit" name="submitted" value="Search Customer">
Inside the DTML method you must check if the 'submitted' variable is set:
<dtml-if submitted>
Form has been submitted
.....
<dtml-else>
<form action=....>
</form>
</dtml-if>
Andreas
_______________________________________________
Zope-Dev maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope )