Sir, I want your help in the following subject.
1)I like to know what is meant by webservice?
2)which of the html function they normally represent?
Take a look to the following line:-
<%@ WebService Language="C#" CodeBehind="~/App_Code/Slideshow.cs" Class="Slideshow" %>
what is meant by CodeBehind?
What is the use of Class="Slideshow"?
Loading

Sanjeeb LenkaPosted Sep 5, 2013, 7:04 AM
What is Web Service?
A Web Service is a reusable piece of code used to communicate among Heterogeneous Applications.
Once a web service is created and hosted on the server in the internet it can be consumed by any kind of application developed in any technology.
in that line the code behind file is the code file of webservice as you know when we create a aspx page one code behind file is created like that here SlidShow.cs is the codebehind file of the webservice and the code for webservice will be written on that class,
ex link
http://www.c-sharpcorner.com/UploadFile/29d7e0/steps-to-create-a-simple-web-service-and-use-it-in-Asp-Net/