add a quick search functionality in ASP or ASP.NET page

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

  1. #1

    Default add a quick search functionality in ASP or ASP.NET page

    I want to add a "quick search" functionality in ASP or ASP.NET page. I heard
    we can use Microsoft Indexing Service to accomplish the task, but not sure
    how to do it. Is this the correct approach?? Please advice.

    Thanks,
    John




    John Davis Guest

  2. Similar Questions and Discussions

    1. Quick Question. How page size
      How do you make your page to go full screen whenever someone visits it. You know how you go to a website and then it takes your page full screen. ...
    2. website search functionality
      I'm using ASP and want to implement a search functionality where a user can enter a string to search and find any matches in the website for the...
    3. How to create web page with spreadsheet like functionality?
      Hello, I'm looking for a tool that would allow me to create a web page with the spreadsheet like functionality. Basically, I want to be able to...
    4. 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...
    5. Warning Page Has Expired, I need to turn it OFF for a simple search page
      You can't turn it off. If you understand the reason for it, then you know that the Back button or Refresh button of a browser makes a new request...
  3. #2

    Default add a quick search functionality in ASP or ASP.NET page

    I want to add a "quick search" functionality in ASP or ASP.NET page. I heard
    we can use Microsoft Indexing Service to accomplish the task, but not sure
    how to do it. Is this the correct approach?? Please advice.

    Thanks,
    John




    John Davis Guest

  4. #3

    Default Re: add a quick search functionality in ASP or ASP.NET page

    John Davis wrote:
    > I want to add a "quick search" functionality in ASP or ASP.NET page.
    > I heard we can use Microsoft Indexing Service to accomplish the task,
    > but not sure how to do it. Is this the correct approach??
    yes
    > Please advice.
    [url]http://www.google.com/search?q=using+%22index+server%22[/url]

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  5. #4

    Default Re: add a quick search functionality in ASP or ASP.NET page

    John Davis wrote:
    > I want to add a "quick search" functionality in ASP or ASP.NET page.
    > I heard we can use Microsoft Indexing Service to accomplish the task,
    > but not sure how to do it. Is this the correct approach??
    yes
    > Please advice.
    [url]http://www.google.com/search?q=using+%22index+server%22[/url]

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  6. #5

    Default Re: add a quick search functionality in ASP or ASP.NET page

    John,

    William is right index server is the way to go.

    If you also need to search database results I've created a component that
    you send a datatable and search text and it returns a dataview that includes
    all the original columns ranked by row. It allows you to specify which
    columns to search and searches not only by the full text but by how many
    times each word occurrs in the entry. It's working very well for me so far.
    I've also created a help file for all the assemblies I've created.

    The entire project is available for free (every bit of code is free) on my
    web site, [url]www.aboutfortunate.com[/url]. Just go to the code library and click the
    "Search" button in the left menu.

    Sincerely,

    --
    S. Justin Gengo, MCP
    Web Developer

    Free code library at:
    [url]www.aboutfortunate.com[/url]

    "Out of chaos comes order."
    Nietzche


    "John Davis" <jrefactor@hotmail.com> wrote in message
    news:OEWSrDiZDHA.2328@TK2MSFTNGP12.phx.gbl...
    > I want to add a "quick search" functionality in ASP or ASP.NET page. I
    heard
    > we can use Microsoft Indexing Service to accomplish the task, but not sure
    > how to do it. Is this the correct approach?? Please advice.
    >
    > Thanks,
    > John
    >
    >
    >
    >

    S. Justin Gengo Guest

  7. #6

    Default Re: add a quick search functionality in ASP or ASP.NET page

    John,

    William is right index server is the way to go.

    If you also need to search database results I've created a component that
    you send a datatable and search text and it returns a dataview that includes
    all the original columns ranked by row. It allows you to specify which
    columns to search and searches not only by the full text but by how many
    times each word occurrs in the entry. It's working very well for me so far.
    I've also created a help file for all the assemblies I've created.

    The entire project is available for free (every bit of code is free) on my
    web site, [url]www.aboutfortunate.com[/url]. Just go to the code library and click the
    "Search" button in the left menu.

    Sincerely,

    --
    S. Justin Gengo, MCP
    Web Developer

    Free code library at:
    [url]www.aboutfortunate.com[/url]

    "Out of chaos comes order."
    Nietzche


    "John Davis" <jrefactor@hotmail.com> wrote in message
    news:OEWSrDiZDHA.2328@TK2MSFTNGP12.phx.gbl...
    > I want to add a "quick search" functionality in ASP or ASP.NET page. I
    heard
    > we can use Microsoft Indexing Service to accomplish the task, but not sure
    > how to do it. Is this the correct approach?? Please advice.
    >
    > Thanks,
    > John
    >
    >
    >
    >

    S. Justin Gengo 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