This topic is locked

query string...

9/14/2005 3:51:28 PM
ASPRunnerPro General questions
author

This is probably very basic, but I want to create an html table that lists the days of the month in a calendar format. The dates would link to events for that date. The string I'm using seems to work, but it pulls up all the records, not just those for the date listed. Here's the string: "calendarpicker/calendar_list.asp?Date=9/13/2005" Any ideas?
Thanks!

Sergey Kornilov admin 9/14/2005

On the list page you can run a basic search on Date equals some date value and use query string that ASP page builds. Usually it looks like this:

http://localhost/test/Cars_list.asp?TargetPageNumber=1&action=Search&lang=&orderby=&dir=&PageSize=20&masterkey=&SearchField=Date+Listed&SearchOption=Equals&SearchFor=3%2F12%2F2003+&PageSizeSelect=20


After that you can strip extra fields from URL or just use it as is.

501257 9/14/2005

DUH! That did the trick! Thanks...