Merhaba Arkadaşlar,
Herkezin elininin altında olması için Google API Dükkanı adresini paylaşmak istedim. Diğer web search ile ilgili uyğulamaları ve .dll leri bir kaç gün içinde paylaşmış olacağım.
Şuanlık örnek olacak herkezin rahatlıkla yapabileceği kodu aşağıda bula bilirsiniz. Elbette bunu kodun aynısını Google sayfalarındada aratsanız çıkacak, takip edenler için direk kod vermek işini görmesi güzel olur diye bende buradan paylaşıyorum.
https://www.google.com/jsapi bu adresteki kodu inceleyip içerisindeki cssleri ve Script kodlarını kendinize görede değiştire bilirsiniz.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jqGoogle.aspx.cs" Inherits="WebApplication4.jqGoogle" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Hello World - Google Web Search API Sample</title>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script language="Javascript" type="text/javascript">
//<!
google.load('search', '1');
function OnLoad() {
// Create a search control
var searchControl = new google.search.SearchControl();
//Add in a full set of searchers
var localSearch = new google.search.LocalSearch();
searchControl.addSearcher(localSearch);
searchControl.addSearcher(new google.search.WebSearch());
searchControl.addSearcher(new google.search.VideoSearch());
searchControl.addSearcher(new google.search.BlogSearch());
searchControl.addSearcher(new google.search.NewsSearch());
searchControl.addSearcher(new google.search.ImageSearch());
searchControl.addSearcher(new google.search.BookSearch());
searchControl.addSearcher(new google.search.PatentSearch());
//Set the Local Search center point
localSearch.setCenterPoint("Turkish, TR");
//tell the searcher to draw itself and tell it where to attach
searchControl.draw(document.getElementById("searchcontrol"));
//xecute an inital search
searchControl.execute("Developer");
}
google.setOnLoadCallback(OnLoad);
//]]>
</script>
</head>
<body>
<div id="searchcontrol">
Loading</div>
</body>
</html>
Herkezin elininin altında olması için Google API Dükkanı adresini paylaşmak istedim. Diğer web search ile ilgili uyğulamaları ve .dll leri bir kaç gün içinde paylaşmış olacağım.
Şuanlık örnek olacak herkezin rahatlıkla yapabileceği kodu aşağıda bula bilirsiniz. Elbette bunu kodun aynısını Google sayfalarındada aratsanız çıkacak, takip edenler için direk kod vermek işini görmesi güzel olur diye bende buradan paylaşıyorum.
https://www.google.com/jsapi bu adresteki kodu inceleyip içerisindeki cssleri ve Script kodlarını kendinize görede değiştire bilirsiniz.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jqGoogle.aspx.cs" Inherits="WebApplication4.jqGoogle" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Hello World - Google Web Search API Sample</title>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script language="Javascript" type="text/javascript">
//<!
google.load('search', '1');
function OnLoad() {
// Create a search control
var searchControl = new google.search.SearchControl();
//Add in a full set of searchers
var localSearch = new google.search.LocalSearch();
searchControl.addSearcher(localSearch);
searchControl.addSearcher(new google.search.WebSearch());
searchControl.addSearcher(new google.search.VideoSearch());
searchControl.addSearcher(new google.search.BlogSearch());
searchControl.addSearcher(new google.search.NewsSearch());
searchControl.addSearcher(new google.search.ImageSearch());
searchControl.addSearcher(new google.search.BookSearch());
searchControl.addSearcher(new google.search.PatentSearch());
//Set the Local Search center point
localSearch.setCenterPoint("Turkish, TR");
//tell the searcher to draw itself and tell it where to attach
searchControl.draw(document.getElementById("searchcontrol"));
//xecute an inital search
searchControl.execute("Developer");
}
google.setOnLoadCallback(OnLoad);
//]]>
</script>
</head>
<body>
<div id="searchcontrol">
Loading</div>
</body>
</html>
Yorumlar
Yorum Gönder
Sizin düşünceleriniz önemlidir.