Help with search results in asp vbs

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

  1. #1

    Default Help with search results in asp vbs

    I have this query:

    SELECT *
    FROM dbo.subwatch
    WHERE subname like 'varsubname%' AND vendornum like 'varvendornum%' AND city
    like 'varcity%' AND State like 'varstate%' AND reasonadded like 'varreason%'
    ORDER BY subname

    the problem is I need the vendornum to be = and not like... so if I search
    for vendor# 123 id does not return results on vendor# 1234 and so on... if I
    use = instead of like it does not return results if left empty... What am I
    missing?


    Chris Guest

  2. Similar Questions and Discussions

    1. Width of SEARCH results
      Is it possible to control the amount of context showing in the results of the SEARCH operation, say in Reader 7? The context appears to show perhaps...
    2. Search results
      When i search it returns all the rows; not the ones i've searched for. Any help would be appreciated. do i end my search page with CFM also? ...
    3. 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...
    4. Search within Search Results
      I am trying to do a search within query results: My first search executes fine, but my second search uses the WHERE parameters of my first...
    5. Saving search results?
      In windows 98 you can save search results as a .fnd file. How do I do this in XP? Please help. Do I have to go back to win98?
  3. #2

    Default Re: Help with search results in asp vbs

    Try

    vendornum like 'varvendornum'

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004


    Julian Roberts Guest

  4. #3

    Default Re: Help with search results in asp vbs

    Thanks Julian...

    I thought I had tried that already... but it worked like a charm...

    Thanks again!

    Chris

    "Julian Roberts" <newsg@charon.co.uk> wrote in message
    news:cv30r3$ag2$1@forums.macromedia.com...
    > Try
    >
    > vendornum like 'varvendornum'
    >
    > --
    > Jules
    > [url]http://www.charon.co.uk/charoncart[/url]
    > Charon Cart 3
    > Shopping Cart Extension for Dreamweaver MX/MX 2004
    >
    >

    Chris 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