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

SqlConnection con = new SqlConnection();
con.ConnectionString = "connection string(path)";
try
{
con.Open();
SqlCommand cmd = new SqlCommand("insert into emp_detail values(' " + tb1.Text + " ',' " + tb2.Text + " ',' " + tb3.Text + " ')", con);
cmd.ExecuteNonQuery();
con.Close();
}
catch (Exception ex)
{
throw new Exception(ex.ToString());
}

Is This Answer Correct ?    66 Yes 26 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can exception be handled with out the use of try catch?

961


What is a gridview in asp.net?

972


IN an ASP.NET Web application if there is any error, how can you debug?

1029


What is server infrastructure?

1063


Please briefly explain the usage of global.asax?

920


What is asp.net globalization?

938


What is cas?

1005


how to write html code with ssl

2067


What is the mvc model?

976


What tags do you need to add within the asp:datagrid tags to bind columns manually? Give an example.

997


How does asp net store session ids by default?

939


Why do we need master page in asp.net?

909


Why would anyone need to implement their own hashtable or linked list?

2908


In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?

1022


Why we are using mvc instead of asp.net? : Asp.Net MVC

987