Demo of the Google Search Service

This demo shows the first 10 Google search results for the search ASP is Fun.


ASPIsFun
Free course in ASP, from setting up the ASP server through advanced techniques.
Sample code too.
[http://www.aspisfun.com/]

 

What Is ASP? ASP Is Fun! Great ASP code, database hints ...
ASP Is Fun! Great ASP code, database hints, techniques, and more. ... ASP is
primary a database access language, which allows you to quickly and easily get
...
[http://www.aspisfun.com/course/course01.html]

 

ASP Is Fun! Great ASP code, database hints, techniques, and more.
ASP Is Fun! Great ASP code, database hints, techniques, and more. ... Have fun
with your ASP coding - it makes any web development MUCH easier! ...
[http://www.lisashea.com/hobbies/asp/]

 

Writing Output in ASP ASP Is Fun! Great ASP code, database hints ...
Writing Output in ASP ASP Is Fun! Great ASP code, database hints, techniques,
and more.
[http://www.lisashea.com/hobbies/asp/article1003.html]

 

Scott on Writing
re: Daylight Savings and ASP.NET Fun Fact 3/8/2009 10:05 AM Sea Cat. I thought "
mission critical" servers ran on GMT -- which doesn't observe such time zone ...
[http://scottonwriting.net/sowblog/posts/13760.aspx]

 

fisher-price.comuslittlepeoplesection.asp?section=FUN - Website Review
Fisher-Price Little People Site Information Fisher Price Little People Family
Reviews. Common Sense Media helps parents find fun and educational websites ...
[http://www.commonsensemedia.org/website-reviews/Fisher-Price-Little-People.html]

 

Ethnologue report for language code:fun
Ethnologue and bibliography information on FulniƓ.
[http://www.ethnologue.com/show_language.asp?code=fun]

 

ASP.net Fun Stuff for April Fools' Day :-) - ASP.NET Forums
does anyone have some cool Stuff for April Fools' day for asp.net 2.0? For
example I remember years ago a windows program with 2 buttons ...
[http://forums.asp.net/ThreadNavigation.aspx?PostID=2265499&NavType=Previous]

 

Aspin: ASP Goofy fun w/ counter + cookie Reviews
a directory of ASP tutorials, applications, scripts, components and articles for
the novice to professional developer.
[http://www.aspin.com/func/review-hot?id=5548610]

 

Welcome to SFSKIDS
SFSKIDS · Home · Site Map · Help! Radio. Search. Instruments of the Orchestra ·
The Music Lab · What's Up at the Symphony · About This Site · Privacy Policy ...
[http://www.sfskids.org/templates/home.asp?pageid=1]


Source Code
<script language="VB" runat="server">
  Sub Page_Load(sender as Object, e as EventArgs)
      Dim search As google.GoogleSearchService = New google.GoogleSearchService()
      Dim result as google.GoogleSearchResult
      
      result = search.doGoogleSearch("license key...", "ASP is Fun", 0, 10, True, "", True, "", "", "")
      
      dlResults.DataSource = result.resultElements
      dlResults.DataBind()
  End Sub
</script>

<asp:DataList runat="server" id="dlResults"
      Font-Name="Verdana" Font-Size="10pt">
  <ItemTemplate>
    <span style="font-size:15pt;font-weight:bold;">
      <%# Container.DataItem.title %>
    </span><br />
    <%# Container.DataItem.summary %><br />
    [<a href="<%# Container.DataItem.URL %>"><%# Container.DataItem.URL %></a>]
  </ItemTemplate>
  
  <SeparatorTemplate>
    <p> </p>
  </SeparatorTemplate>
</asp:DataList>
  


[Return to the article]