Append text - Database results wizard

  • Thread starter Thread starter Jim Williams
  • Start date Start date
J

Jim Williams

I'm using the DBRW to let my users query if we offer delivery to a
particular zip code during the holiday season. Right now, if you enter
a zip code in the search box, if the zip code is in the database, it
will display the zip code in the results. If not, I have it set to say
'Sorry, this zip code does not provide delivery on the specified date'.
What I'd like to happen is if the zip code is in the database, it will
display a message in the results along the line of '<ZipCode> does
deliver on the date specified'. Is there an easy way to do this or am I
missing something?


Thanks!

Jim
 
Hi Jim,

Assuming your form field is called ZipCode add this to your page
<p><%=request("ZipCode")%> does deliver on the date specified.</p>

Jon
 
Back
Top