Ex:
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Service : System.Web.Services.WebService
{
public Service () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public string Myconcat(string s1, string s2)
{
return s1 + s2;
}
}
Subscribe to:
Post Comments (Atom)
0 comments
Post a Comment
www.codecollege.NET