Return Search Results on the Same Page

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Return Search Results on the Same Page

    I am new to ASP and would like to write a page with a drop
    down listbox on the top of the page. As soon as user
    choose a value in the dropdown, the resulting records
    based on the chosen value will display below the dropdown.

    How do I do this without reloading a new page with the
    results and that the time that user has to wait can be
    minimized?
    shell Guest

  2. Similar Questions and Discussions

    1. Search results page
      Hi - hopefully I can express my problem correctly - I'm just trying to create a search results page from a query on a linked table. Current SQL: ...
    2. Sending search results to a results page..with asp
      Please help.. very :confused; Ive setup 4 dynamic drop down boxes which populate themselves from my database, this all works fine..The last box...
    3. Error in Search Results Page.
      Greetings All, What could be causing the error below ? I have a simple form where I am submitting the number of bedrooms and I expect to see all...
    4. Default Search for 2 field values return all results?
      Hi. I have two fields that users can search for. Either room number or Phone number. They can also put both a room number and a phone number and...
    5. Prevent 'Page has expired' when a client hits back to return to a search page
      I have a search page that I want to enable private caching so that when a user hits the back button they dont get the page has expired error. I...
  3. #2

    Default Re: Return Search Results on the Same Page

    shell wrote:
    > I am new to ASP and would like to write a page with a drop
    > down listbox on the top of the page. As soon as user
    > choose a value in the dropdown, the resulting records
    > based on the chosen value will display below the dropdown.
    >
    > How do I do this without reloading a new page with the
    > results and that the time that user has to wait can be
    > minimized?
    You will need to use client-side code to achieve this, which goes beyond the
    scope of this newsgroup. However, here are a couple option:

    a) use frames

    b) use XMLHTTPRequest: for an example of this, get my dynamic listbox demo
    at
    [url]http://www.thrasherwebdesign.com/index.asp?pi=links&hp=links.asp&c=&a=clear[/url]

    You should follow this up on a client-side coding newsgroup: m.p.scripting.*
    or any group with "dhtml" in its name.

    HTH,
    Bob Barrows


    Bob Barrows Guest

  4. #3

    Default Re: Return Search Results on the Same Page

    Thanks Bob for your advice. I will look at your example
    later. I do not want to use frames on the page, if I want
    the page to be supported by older browsers, can I still
    use XMLHTTPRequest?

    Thanks,
    Shell
    >-----Original Message-----
    >shell wrote:
    >> I am new to ASP and would like to write a page with a
    drop
    >> down listbox on the top of the page. As soon as user
    >> choose a value in the dropdown, the resulting records
    >> based on the chosen value will display below the
    dropdown.
    >>
    >> How do I do this without reloading a new page with the
    >> results and that the time that user has to wait can be
    >> minimized?
    >
    >You will need to use client-side code to achieve this,
    which goes beyond the
    >scope of this newsgroup. However, here are a couple
    option:
    >
    >a) use frames
    >
    >b) use XMLHTTPRequest: for an example of this, get my
    dynamic listbox demo
    >at
    >[url]http://www.thrasherwebdesign.com/index.asp?[/url]
    pi=links&hp=links.asp&c=&a=clear
    >
    >You should follow this up on a client-side coding
    newsgroup: m.p.scripting.*
    >or any group with "dhtml" in its name.
    >
    >HTH,
    >Bob Barrows
    >
    >
    >.
    >
    shell Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139