Site Map       
Home
Web Services
XML in .NET
XML Schema
XSLT and XPath
XML Serialization
Database and XML
XML Query
ASP.NET
Contact Info

.NET Notes

Sample Code for this Program can be found at the bottom right hand side of this page.

Please visit our Partner....

 

Google Web Service XML Related Top Ten

Web Services
1XML Web Services Basics
2MSDN Web Services Developer Center
3XML Web Services - MDC
4What is Web services? - A Word Definition From the Webopedia ...
5Amazon.com: Professional XML Web Services: Vivek Chopra, Zaev ...
6Dare Obasanjo aka Carnage4Life - XML Web Services
7Web Services @ W3C
8webservices.xml.com: Second Generation Web Services
9webservices.xml.com: A Web Services Primer
10XML Web Services - ASP.NET Forums
XML
1XML - Wikipedia, the free encyclopedia
2XML Tutorial
3XML From the Inside Out -- XML development, XML resources, XML ...
4XML.com: A Technical Introduction to XML
5Extensible Markup Language (XML)
6Extensible Markup Language (XML) 1.0 (Fourth Edition)
7Focus Area News | XML.org focus area community
8xml.apache.org
9The XML FAQ
10XML Developer Center
XML Schema
1W3C XML Schema
2XML Schema Part 0: Primer Second Edition
3XML Schema Part 1: Structures Second Edition
4XML schema - Wikipedia, the free encyclopedia
5XML Schema Tutorial
6Introduction to XML Schemas
7XML.com: Using W3C XML Schema
8XML.com: Profiling XML Schema
9XML Schema Tools
10XML Schema | O'Reilly Media
XSLT and XPath
1XSLT and XPath Quick Reference
2XSLT 2, XPath 2, XQuery 1 ... Yeeaahhhhhh! - O'Reilly XML Blog
3World Wide Web Consortium Issues XSLT 2.0, XPath 2.0, XQuery 1.0 ...
4The Extensible Stylesheet Language Family (XSL)
5XML.com: What Is XSLT
6XSLT and XPath Quick Reference
7Amazon.com: XSLT and XPath On The Edge, Unlimited Edition: Jeni ...
8XSLT/XPath Training Material
9XPath, XQuery, and XSLT Function Reference
10Using XPath and XSLT to Generate Programs
XML Serialization
1XML Serialization in the .NET Framework
2System.Xml.Serialization Namespace ()
3XmlSerializer Class (System.Xml.Serialization)
4XML Serialization in C#
5XML Serialization Using C# :: DotNetJohn
64GuysFromRolla.com - XML Serialization in ASP.NET
7XML Serialization
8CodeProject: Load and save objects to XML using serialization ...
9XML Serialization in ASP.NET
10InformIT: XML Serialization > An Overview of XML Serialization
Database and XML
1XML database - Wikipedia, the free encyclopedia
2XML & Databases
3Database - Programmer's Heaven
4rpbourret.com - XML Database Products
5Open Source Native XML Database
6Open Source Native XML Database
7XML representation of a relational database
8National Digital Forecast Database XML/SOAP Service - NOAA's ...
9XML.com: XML and Database Mapping in .NET
10Oracle Berkeley DB XML
SOAP
1SOAP - Wikipedia, the free encyclopedia
2Soap (TV series) - Wikipedia, the free encyclopedia
3SOAP Tutorial
4SOAP Specifications
5The Society for Obstetric Anesthesia and Perinatology (SOAP)
6The Society for Obstetric Anesthesia and Perinatology (SOAP)
7"Soap" (1977)
8Sorry
9Apache SOAP
10SOAP Movie Listing - 2008
XML Query
1W3C XML Query (XQuery)
2XQuery 1.0: An XML Query Language
3XML Query (XQuery) Requirements
4XQuery Tutorial
5XQuery: An XML query language
6XQL (XML Query Language)
7Amazon.com: XQuery: The XML Query Language: Michael Brundage: Books
8A Query Language for XML
9XML Query Engine
10Query to XML Samples
ASP.NET
1ASP.NET
2ASP.NET AJAX
3ASP.NET - Wikipedia, the free encyclopedia
4ASP.NET 2.0, 3.5, ASP.NET AJAX, and More | MSDN
5Forums - ASP.NET Forums
6ASP.NET Tutorial
7ASP.NET | Tags | Channel 9
8ASP.NET Script :: Hot Scripts
9ASP.NET - Mono
10ASP.NET.4GuysFromRolla.com
   

'Google Web Service API User Control Sample Code

    Private Function ProcessSearch() As String

        Dim resultIndex As Integer
        Dim resultTotal As Integer
        Dim sTitle As String
        Dim sbOutput As StringBuilder = New StringBuilder()

        Dim search As GoogleApi.GoogleSearchService = 
            New GoogleApi.GoogleSearchService()

        Dim result As GoogleApi.GoogleSearchResult = 
            search.doGoogleSearch(_key, _query, 0, _maxResults, False, "", False, "", "", "")

        resultTotal = result.resultElements.GetUpperBound(0)

        For resultIndex = 0 To resultTotal

            If (result.resultElements(resultIndex).title <> "") Then
                sTitle = result.resultElements(resultIndex).title
            Else
                sTitle = result.resultElements(resultIndex).URL
            End If

            sbOutput.Append(String.Format(_formatString, (resultIndex + 1), 
               sTitle, result.resultElements(resultIndex).URL, 
               result.resultElements(resultIndex).snippet))

        Next resultIndex

        ProcessSearch = sbOutput.ToString()

    End Function

XMLME.COM is a Registered ® Service Mark of Seanco Technology.  Copyright © 2008 Seanco Technology, Inc.  All rights reserved.