Full-text searches and ASP.NET

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Full-text searches and ASP.NET

    Hi.

    I have to implement a search mechanism for the site I am developing. The
    choosen option for the project was to use full-text searches in our sql
    server 2000 database. Does anyone have any special recomendations or
    articles on how to use full-text searches from asp.net?

    Thanks,

    Antonio Maciel


    Antonio Maciel Guest

  2. Similar Questions and Discussions

    1. sql server full-text search
      Does anyone have experience with storing documents (word, excel, pdf, etc) in sql server as a binary object, and then using the full-text catalogs...
    2. Full justify with dynamic text ???
      I don't know how to do a full justification with a dynamic textŠ There must be something to add in the line : loadVariablesNum("source.txt", 0);...
    3. bilingual Full text search
      Hi folks, I want to make a full text search CD for 5000 html files in english and arabic. I already tried the following solutions.... 1) I...
    4. need help with MySQL full text searching!!!!
      Hi I have a table which contains 3 fields (ID, Title, Abstract) the title and abstract fields have been fulltext indexes like this: ALTER TABLE...
    5. full text search
      i found that sql-server full text search is only capable of searching the newly inserted items after an incremental or full population. Is there any...
  3. #2

    Default Full-text searches and ASP.NET

    You use it the same way u use sql queries, the difference
    is in the queries, probably the CONTAINS keyword will be
    most used. You can get details about it from SQL Server
    Books Online.
    There's not difference concerning ASP.Net , the difference
    is in SQL.

    hth
    samham

    >-----Original Message-----
    >Hi.
    >
    >I have to implement a search mechanism for the site I am
    developing. The
    >choosen option for the project was to use full-text
    searches in our sql
    >server 2000 database. Does anyone have any special
    recomendations or
    >articles on how to use full-text searches from asp.net?
    >
    >Thanks,
    >
    >Antonio Maciel
    >
    >
    >.
    >
    samham 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