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/]

 

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. ... One of the first things to learn in ASP is how to create output. ...
[http://www.aspisfun.com/course/course03.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/]

 

Acylation-stimulating protein (ASP): structure-fun...[Biochem J ...
Acylation-stimulating protein (ASP or C3adesArg) is a potent lipogenic factor in
human ... Thus both ASP and C3a are bioactive across species but are not ...
[http://www.ncbi.nlm.nih.gov/pubmed/10432298]

 

Welcome to SFSKIDS

[http://www.sfskids.org/templates/splash.asp]

 

Fun With Spot
Welcome to Spot's home page. It's time to have fun with Spot the dog.
[http://www.funwithspot.com/house.asp?locale=UK]

 

glish.com : CSS layout techniques
Know anybody in NY city that needs a web developer with XML/XSLT, ASP, SQL, ....
<div id="title"><h1>CSS Layout Techniques: for Fun and Profit</h1></div> ...
[http://www.glish.com/css/]

 

The Metropolitan Museum of Art - Explore & Learn
Listen, look, and create your own sketch in this fun activity for all ages. ...
Games, a movie, and more—have some fun while you learn about paintings by ...
[http://www.metmuseum.org/explore/justforfun.asp]

 

BFBC Newsletter Signup
Day, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31 ...
[http://preferences.fun.ea.com/ea/mf_BattlefieldBC.asp]

 

Nutrition Explorations: Kids
Play Fueled for Fun: Help Sophie and Billy get ready for the big track event!
Nutrition for Kids · Make Creamy Orangesicle Pops · Check out NFL Rush for fun ...
[http://www.nutritionexplorations.org/kids/main.asp]


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]