Monday, 28 April 2014

I've been hearing about HTML5 for quite some time now, and I especially liked the idea of web sockets. Giving us the ability to send data directly to the user, instead of doing something like polling with AJAX requests seems like a very neat idea. So the other day, I decided that I would try to make a small server and test it out on my localhost. As far as I can tell,...

Monday, 29 July 2013

HR management system project is used in companies for organizing employees inside organization. This system will look after employee recruitment, allocating new employees for a project, career module and admin module. HR management system is managed by HR team for managing employee salaries..etc as explained above. Here we provide Human resource management system project...
Library Management System on Entity Framework Hi All this is Library Management System Developed on DotNet using Entity Framework. System Requirements : windows xp7 or heigher Visual Studio 2010 or heigher Note: just open web project in visual studio and create database by entity data model and run the code. click here below to download this full source code ...

Monday, 17 June 2013

connect to sql database using c# add these library first using System.Data; using System.Data.SqlClient; create string to connect with database string  str = @"Data Source=(local);Initial Catalog=database;Persist Security Info=True;User ID=username;Password=password";  SqlConnection con = new SqlConnection(); //create object to connect sql     SqlCommand cmd = new SqlCommand(); // create object to send command in sql     DataTable dt = new DataTable();  //create...
create database in windows application here is in image given below  you can view how to create sql datbase in windows application. ...
READ GROUP EMAIL USING C#. first Create table for user id and password. like this below tablae name : emailusers : 1. id int unique 2. userid nvarchar 50 3. pass nvarchar 50 when Timer starts. //set timer as you need read all userid and password from table that you create by for loop like this below create connection and retreive all users with pass in grid. then do this code int a; a=grid.rows.count; //grid is id of gridview for(int i=0;i<a;i++) { string id =grid.rows[i].cell[0].value.tostrig() string...

Saturday, 8 June 2013

Send and Receive SMS in .NET using GSM modem This source code is for Send and Receive SMS in .NET using GSM modem. You can use this SMS Application program to send SMS from your PC using GSM modem connected to your computer. Its complete working project code for sending and receiving sms using C#.Net. You can implement this project source code to your project and this...