Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to Insert a TextBox value in to Sql database using C#
coding?

Answer Posted / anand

SqlConnection con = new SqlConnection();

con.ConnectionString = "data source=anand\\sqlexpress.
initial catalog=Database1;integrated security=sspi;";

SqlCommand myCommand = new SqlCommand();

myCommand.CommandText = "Insert into
usr(firstname,lastname,dob,phno,email,Address,state,bgroup)
Values('" + firstname.Text + "','" + lastname.Text + "'," +
dob.Text + "," + phno.Text + ",'" + email.Text + "','" +
Address.Text + "','" + state.Text + "','" + bgroup.Text + "')";

myCommand.Connection = con;

con.Open();

myCommand.ExecuteNonQuery();

con.Close();

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List the major built-in objects in asp.net?

1047


Define a multilingual website?

1020


What are validator? How do you disable them?

1204


What are ASHX files?

1151


Is asp.net easy to learn?

1046


To display data in the combo box, prior to setting the Data Source, what kind of property on a Combo Box do you set with a column name?

1093


What are the two properties that are common on every validation control?

1102


What are the different types of proxy patterns?

1205


Explain diff. Betn dataset and recordset?

1062


What is an asp.net web form?

1156


What is difference between session and cookies in asp net?

1110


What is the behavior of a Web browser when it receives an invalid element?

1148


What are the navigation ways between pages available in ASP.NET?

1078


What is session in asp.net?

1007


What is caching? What are different ways of caching in asp.net?

1387