Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / SQL

Implementation Example of Ranked Search in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.59/5 (10 votes)
16 Oct 2012LGPL37 min read 58.2K   2.2K   28  
Description how to get started with your own search engine using full text search and SQL-Server 2012.
  • WebTest.zip
    • packages
      • AjaxControlToolkit.4.1.60623
        • AjaxControlToolkit.4.1.60623.nupkg
        • content
          • web.config.transform
        • lib
          • 35
            • AjaxControlToolkit.dll
            • AjaxControlToolkit.pdb
            • ar
              • AjaxControlToolkit.resources.dll
            • cs
              • AjaxControlToolkit.resources.dll
            • de
              • AjaxControlToolkit.resources.dll
            • es
              • AjaxControlToolkit.resources.dll
            • fr
              • AjaxControlToolkit.resources.dll
            • he
              • AjaxControlToolkit.resources.dll
            • hi
              • AjaxControlToolkit.resources.dll
            • it
              • AjaxControlToolkit.resources.dll
            • ja
              • AjaxControlToolkit.resources.dll
            • ko
              • AjaxControlToolkit.resources.dll
            • nl
              • AjaxControlToolkit.resources.dll
            • pt
              • AjaxControlToolkit.resources.dll
            • ru
              • AjaxControlToolkit.resources.dll
            • SanitizerProviders
              • SanitizerProviders.dll
            • tr-TR
              • AjaxControlToolkit.resources.dll
            • zh-CHS
              • AjaxControlToolkit.resources.dll
            • zh-CHT
              • AjaxControlToolkit.resources.dll
          • 40
            • AjaxControlToolkit.dll
            • AjaxControlToolkit.pdb
            • ar
              • AjaxControlToolkit.resources.dll
            • cs
              • AjaxControlToolkit.resources.dll
            • de
              • AjaxControlToolkit.resources.dll
            • es
              • AjaxControlToolkit.resources.dll
            • fr
              • AjaxControlToolkit.resources.dll
            • he
              • AjaxControlToolkit.resources.dll
            • hi
              • AjaxControlToolkit.resources.dll
            • it
              • AjaxControlToolkit.resources.dll
            • ja
              • AjaxControlToolkit.resources.dll
            • ko
              • AjaxControlToolkit.resources.dll
            • nl
              • AjaxControlToolkit.resources.dll
            • pt
              • AjaxControlToolkit.resources.dll
            • ru
              • AjaxControlToolkit.resources.dll
            • SanitizerProviders
              • HtmlAgilityPack.dll
              • SanitizerProviders.dll
            • tr-TR
              • AjaxControlToolkit.resources.dll
            • zh-CHS
              • AjaxControlToolkit.resources.dll
            • zh-CHT
              • AjaxControlToolkit.resources.dll
      • repositories.config
    • WebTest.sln
    • WebTest
  • WebTest.zip
    • AjaxControlToolkit.4.1.60623.nupkg
    • web.config.transform
    • AjaxControlToolkit.dll
    • AjaxControlToolkit.pdb
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • SanitizerProviders.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.dll
    • AjaxControlToolkit.pdb
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • HtmlAgilityPack.dll
    • SanitizerProviders.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • AjaxControlToolkit.resources.dll
    • repositories.config
    • WebTest.sln
    • packages.config
    • AssemblyInfo.cs
    • search.aspx
    • search.aspx.cs
    • search.aspx.designer.cs
    • SearchService.asmx
    • SearchService.asmx.cs
    • Web.config
    • Web.Debug.config
    • Web.Release.config
    • WebTest.csproj
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated. 
// </auto-generated>
//------------------------------------------------------------------------------

namespace WebTest {
    
    
    public partial class search {
        
        /// <summary>
        /// form1 control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
        
        /// <summary>
        /// SearchBox control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::System.Web.UI.WebControls.TextBox SearchBox;
        
        /// <summary>
        /// SearchBox_FilteredTextBoxExtender control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::AjaxControlToolkit.FilteredTextBoxExtender SearchBox_FilteredTextBoxExtender;
        
        /// <summary>
        /// SearchBox_AutoCompleteExtender control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::AjaxControlToolkit.AutoCompleteExtender SearchBox_AutoCompleteExtender;
        
        /// <summary>
        /// SearchButton control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::System.Web.UI.WebControls.Button SearchButton;
        
        /// <summary>
        /// ResultTable control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::System.Web.UI.WebControls.Table ResultTable;
        
        /// <summary>
        /// ToolkitScriptManager1 control.
        /// </summary>
        /// <remarks>
        /// Auto-generated field.
        /// To modify move field declaration from designer file to code-behind file.
        /// </remarks>
        protected global::AjaxControlToolkit.ToolkitScriptManager ToolkitScriptManager1;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer SharpedNET
Sweden Sweden
I have a development company called SharpredNET focusing on smaller project with high delivery precision on customer need and time. The solution always uses modern frameworks, is good looking and easy to use.

I am also a reseracher in Production System giving me specialization on implementation for manufacturing industry.

Comments and Discussions