After the last post on PHP web service now we develop a web service with Visual Studio 2013 in C#. Let's start by creating a ASP.NET project. In the next screen wee choose an Empty application. Now in we add a new item to our project. And next choose Web Service By now the Visual Studio have created the basic structure of our web service with one method called HelloWorld as an example. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace WebApplication2 { /// <summary> /// Summary description for WebService1 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. ...