<%@ WebService Class="NewsService" %> Imports System Imports System.Web.Services _ Public Class NewsService : Inherits WebService Public Function GetNews() As String() Dim arrNews( 2 ) As String arrNews( 0 ) = "Visit superexpert.com for ASP.NET News!" arrNews( 1 ) = "Visit AspWorkshops.com for ASP.NET Training!" arrNews( 2 ) = "Visit superexpertControls.com for ASP.NET Controls!" Return arrNews End Function End Class