Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default keyword searching

    hi can anybody tell me how to create a search form on my database where a user would only have to type the first few letters of a paticular product and it woulld return results

    thanks

    john
    pepps Guest

  2. Similar Questions and Discussions

    1. Help with Keyword search
      Hi all, I've got a tricky query I hope you guys can help me with. I have a database of a few millions records, representing subjects from...
    2. Keyword Parsing with ASP
      I am writing a search program in ASP(VBScript). The user can enter keywords and press submit. The user can separate the keywords by spaces and/or...
    3. Keyword not supported
      Hi, I have an ASP app that queries MS Indexing Service. Below is my code. ############################# Imports System Imports...
    4. Keyword Searches
      Hi everyone, Does anyone know how to add a keyword search to a site? Daniel Park Executive Director La Paz International
    5. Just a quick SP ? regarding the LIKE SQL keyword
      Anyone have any ideas why this doesn't return any values? This is an SP that was constructed from a Query in an Access database that was imported...
  3. #2

    Default Re: keyword searching

    Hi John,

    Your SELECT statement, on your results page, should read something like:

    SELECT * FROM table WHERE productname LIKE 'varSearch%'

    varSearch % Request.Form("nameofyoursearchformfield")

    Can't remember if your form should have a POST or GET method. Try both!

    Hope this helps.
    Nath.


    "pepps" <webforumsuser@macromedia.com> wrote in message
    news:d46bc2$4t7$1@forums.macromedia.com...
    > hi can anybody tell me how to create a search form on my database where a
    > user would only have to type the first few letters of a paticular product
    > and it woulld return results
    >
    > thanks
    >
    > john

    Nathon Jones 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