icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Monday, 29 July 2013

How call Class’s Property, List Property using Web Service

How call Class’s Property, List Property  using Web Service First we create a web services which  name MyWebService.cs  is   in Website and call its another  Website………………. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; /// <summary> /// Summary description for MyWebService /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo =...

Saturday, 27 July 2013

Connectivity with Sql Server 2008 using Web Services………………………..

Connectivity  with Sql Server 2008 using Web Services……………………….. First we create  WebMethod in Web Service which  web service name is  WebService.cs and Method name is Login……………………………………. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; using System.Data.SqlClient; using System.Data; /// <summary> /// Summary description for WebService ///...