Results 1 to 2 of 2

Thread: Filter on opening page

  1. #1
    Jerry Simms Guest

    Filter on opening page

    Is it possible to have a filter on my opening page, then have the results of the filter displayed on a completely different looking page?

    Right now the results of my filter are displayed on a page that looks completely identical to my filter page. I want it to look alot different.

    Thanks
    JSimms

  2. #2
    john Guest

    Filter on opening page (reply)

    Hi Jerry,

    Sure, you can do that. Assuming you have version 1.0928 or later, with a
    unit number equal to 99, you can say:
    <% if request("aspDBClick_99") = "applyfilter" %>
    put code for after filter is clicked here...
    <% else %>
    put code for before filter clicked here
    <% end if %>

    When you "click" on the apply filter, ASPdb sets request(ASPdbClick_99") to
    whatever "button" you clicked on - in this case, "applyfilter". Use that
    information in an "if" check and show a "different" page when that button
    is pressed.

    Take care,
    John




    On 10/20/98 7:52:00 PM, Jerry Simms wrote:
    > Is it possible to have a filter on my opening page, then have the results
    > of the filter displayed on a completely different looking page?

    Right
    > now the results of my filter are displayed on a page that looks completely
    > identical to my filter page. I want it to look alot different.

    Thanks
    JSimms

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •