Click here to Skip to main content
15,881,871 members
Articles / Programming Languages / C#

SharePoint Search Integration with Google

Rate me:
Please Sign up or sign in to vote.
3.80/5 (12 votes)
14 Jul 2008CPOL 49.3K   410   20   8
This solution helps to view SharePoint search results along with Google results within a SharePoint portal.

Image 1

Introduction

This solution helps to view SharePoint search results along with Google results within a SharePoint portal.

C#
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Text;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class SharepointGoogleSearchIntegration : System.Web.UI.UserControl
{
    #region PageLoad
    /// <summary>
    /// This is an aspx page,hosted in SharePoint
    /// which renders the search results depending 
    /// on the query string passed from the SharePoint WebPart.
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void Page_Load(object sender, EventArgs e)
    {
        ///Here the query string is fetched & is passed to a hidden varible , which in turn 
        ///passes the value to the Google-API to fetch the corresponding search results.
        //Since Sharepoint uses K as the querystring parameter , due to which we have used 
        // K as the Query String parameter , so that same query is used for Portal Search 
        //along with With Search
        if ((Request.QueryString["k"] != null) && 
            ((Request.QueryString["k"] != "")))
        {
            //This is the hidden field which is used as a container for the value
            //fetched from the query string . 
            hdnField.Value = Request.QueryString["k"].ToString();
            hdnField.EnableViewState = true;
        }

        InitalizeScripts();
    }

    #endregion 

    /// <summary>
    /// This method is used to pass the server side value to the 
    /// client side variable
    /// </summary>
    protected void InitalizeScripts()
    {
        String sb = string.Empty;
        // Underneath is the JavaScript which is truncated here & will be 
        // visible when you will download the article.
        sb = "<script type='text/javascript' language="'javascript'">"
        + "function LoadValues()"
        + "{"
        + "var hiddenval = '" + hdnField.Value + "';"
        + "return hiddenval;"     
        + "}" 
        +"</script>";

        Page.RegisterClientScriptBlock("ClientScript", sb.ToString());
    }
}

SharePoint - Google - Search Integration allows the user to view the web results within the SharePoint portal. The user doesn't need to specify the text separately into two search controls. The default SharePoint Search WebPart is used to pass the query to other WebParts which produce the web results at the same time.

In case of any queries, you can revert to me at "pankaj.pahuja@gmail.com" or "pankaj_proteans@hotamil.com".

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other Microsoft
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSize of the Google Results Pin
kishore_sharepoint21-Oct-10 19:40
kishore_sharepoint21-Oct-10 19:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.