Results 1 to 2 of 2
Related
-
help for create an account Forum: Myspace Forum
Replies: 2 -
Create (not add) an attachment Forum: PHP Forum
Replies: 0 -
how do you create a graphic that only.... Forum: HTML Forum
Replies: 4
-
06-12-2009, 03:39 AM #1
How to create web service with C#
How to create web service with C#
-
08-14-2012, 05:51 AM #2
Re: How to create web service with C#
Creating Web services in C# is very easy. The following code is an example:
using System.Web.Services;
Public class AWebService: WebService
{
public AWebService
{
// constructor code
}
public void BusinessLogicMethod () {
// code here
}
[WebMethod (Description=""A Web Method"", EnableSession=false)]
Public int WebServiceMethod ()
{
// code here
}
}
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum