using System;
using System.Collections; using System.Linq; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; using System.Xml.Linq;
/// <summary>
/// Summary description for WSHellowWorld /// </summary> [WebService(Namespace = " http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. [System.Web.Script.Services.ScriptService] public class WSHellowWorld : System.Web.Services.WebService {
public WSHellowWorld()
{
//Uncomment the following line if using designed components
//InitializeComponent(); }
[WebMethod]
public string HelloWorld() { return "Hello World"; }
}
|
<asp:ScriptManager ID="ScriptManager1" runat="server" > <Services> <asp:ServiceReference Path="~/WebService/WSHellowWorld.asmx"/> </Services> </asp:ScriptManager> |