Posted by: Vinit on: June 27, 2011
Hi, First Create the database in Sql. After that create web service in asp.net with c#. the code is like below. public class LoginDetails : System.Web.Services.WebService { SqlConnection con = new SqlConnection(“Data Source=SourceName;Initial Catalog=DBName;User id=UserName;Password=Password”); public LoginDetails() { //Uncomment the following line if using designed components //InitializeComponent(); } // Method to get login records from [...]
Comments