Skip to main content
Participant
November 8, 2007
Question

Filter same record in Repeat Region

  • November 8, 2007
  • 1 reply
  • 332 views
I would like to know how to filter same record in repeat region so that it only display once. I hv a table use repeat region to display 3 fields (title, date, time). My first page only display title field and when user click on the record at title field, it will pass URL parameter to second page which will display title and date filed and when user click on the record under date field it will again pass URL parameter to third page which display all field. I want same date in the date field only display once. I try to use GROUP by date, it works but i cant click the date to pass URL parameter. Any help would be appreciated.
This topic has been closed for replies.

1 reply

Inspiring
November 9, 2007
<cfoutput query = "yourQuery" group = "Date">
#Date#
<cfoutput>
#OtherField#
</cfoutput?
</cfoutput>
iegnAuthor
Participant
November 10, 2007
thanks for your reply but im using ASP, can the code work same in ASP?