C#将搜索框链接到其他网站的搜索框

时间:2013-10-28 08:01:35

标签: c# asp.net

有没有办法在您自己的网站内搜索其他网站?

例如,我构建了一个ASP.net页面,其中包含一个搜索框,例如链接到stackoverflow的搜索框,当我输入任何搜索查询时,我会在我的网站上获得结果。

1 个答案:

答案 0 :(得分:1)

有几种方法可以做这样的事情:

我假设其意图是使其与堆栈溢出一起使用

<强> 1。使用StackOverflows内置API(客户端)

您可以找到有关它的一些详细信息here。其中包含有关如何进行搜索的详细信息。您可以使用像jQuery这样的客户端库来执行此操作。

var URL = "http://api.stackoverflow.com/1.1/";
var _url = URL + 'users?filter=locrizak';

$.ajax({
    dataType: 'jsonp',
    jsonp: 'jsonp', // <--- add this
    url: _url,
    success: function(val) {
        console.log('success');
    },
    error: function(val) {
        console.log('error');
        console.log(arguments);
    }
 });

<强> 2。使用StackOverflows内置API(服务器端)

static void SearchStackOverflow(string y)
{
    var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://api.stackoverflow.com/1.1/search?intitle=" + Uri.EscapeDataString(y));
    httpWebRequest.AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip;
    httpWebRequest.Method = "GET";
    var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
    string responseText;
    using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
    {
        responseText = streamReader.ReadToEnd();
    }
    var result = (SearchResult)new JavaScriptSerializer().Deserialize(responseText, typeof(SearchResult));
    .... do something with result ...
 }
 class SearchResult
 {
      public List<Question> questions { get; set; }
 }
 class Question
 {
      public string title { get; set; }
      public int answer_count { get; set; }
 }

第3。使用屏幕刮板(当API可用时不理想)

这可以通过Selenium或Watin等工具完成。 Here is a guide to help you get started with Selenium.