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.

Wednesday, 29 February 2012

Connectivity with Sql Server with ADO .Net

using System; using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data.SqlClient; namespace MyDataConnectivity{       public partial class Form1 : Form    {        SqlConnection con;        SqlCommand cmd;       ...

Tuesday, 28 February 2012

Check Given No Prime or Not Prime

// Program for prime no using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace primeNo {     public partial class Form1 : Form     {         int i;         public Form1()        ...