Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Filter same record in Repeat Region

New Here ,
Nov 08, 2007 Nov 08, 2007

Copy link to clipboard

Copied

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.
TOPICS
Server side applications

Views

278
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 08, 2007 Nov 08, 2007

Copy link to clipboard

Copied

<cfoutput query = "yourQuery" group = "Date">
#Date#
<cfoutput>
#OtherField#
</cfoutput?
</cfoutput>

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 09, 2007 Nov 09, 2007

Copy link to clipboard

Copied

LATEST
thanks for your reply but im using ASP, can the code work same in ASP?

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines