嘿,我已经注册了谷歌自定义搜索,并且工作得相当好。
所以基本上它生成了一个Javascript代码供我使用。
我想知道如何通过接受来自查询字符串的值来使其工作?
干杯
答案 0 :(得分:0)
我使用了以下vb.net代码来实现此目的:
google.load('search', '1', { language: 'en' });
google.setOnLoadCallback(function () {
var customSearchControl = new google.search.CustomSearchControl('[your se code here]');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
customSearchControl.execute('<%=server.htmlencode(request.querystring("searchterm"))%>');
}, true);