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 / balakumar

string strconn = @"Data Source=localhost;
Initial Catalog=Bala;
Trusted_Connection=yes;";
SqlConnection conn = new SqlConnection(strconn);
conn.Open();
string insertcommand = "insert into Employee
values('" + TextBox1.Text + "','" + TextBox2.Text + "','" +
TextBox3.Text + "')";
SqlCommand cmd = new SqlCommand(insertcommand, conn);
cmd.ExecuteNonQuery();
conn.Close();

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I have a particular web page in an asp.net application which displays its own error page?

1111


Which method is used to enforce garbage collection in .net?

868


Is redux flux?

949


Can more than one person use the same login?

969


Explain login control and form authentication.

1012


Is it possible for me to change my aspx file extension to some other name?

999


what are configuration files?

1039


Explain method to handle error using HttpError in Web API?

1049


What is difference between datalist and gridview?

1076


How to disable disable browser's Back button in asp.net (JavaScript)?

1131


What is the difference between web.config and machine.config in ASP.NET?

1137


Describe the differences between the lifecycles of Windows services and Standard EXE?

1194


What is a swagger in web api?

1052


How to create discussion forum in asp.net mvc? : Asp.Net MVC

1041


How can we pass info between 2 asp.net pages?

1070