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

try
{
SqlConnecion cn=new SqlConnection("Data
source=.;database=Studentdetail;uid=sa;pwd=sa");
SqlCommand cmd=new SqlCommand();
cn.Open();
string qry;
qry="insert into Table values('"+ TextBox1.Text +"','"+
TextBox2.Text +"')";
cmd=new(qry,cn);
cmd.cmd.ExecuteNonQuery();


cn.Close();
}
catch(Exception ex)
{
Responce.Write(ex.Message.ToString());
}

Is This Answer Correct ?    0 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is autopostback in asp net?

1031


Explain About duration in caching technique

1056


Can the validation occurs in server-side or client-side? If the validation occurs why should we do?

1034


Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?

982


How to do parallel database export in remote SQL Server in ESSL time track. It is working for local server but not working for remote SQL Server

6619


What are the difference between overriding and overloading?

1070


Can you explain architecture of your project ?

1115


How to change Master page in ASP.Net using code?

1057


What is the flow of processing of the request? : asp.net mvc

1022


What is DataGrid wheater its a Server Control or something else ?

1074


What is applicatio domain?

1000


What is IPostBack? How to use it?

1091


Explain Authentication mechanism in dotnet

1031


How many web.config files can I have in an application?

970


Where can I get information on cookies in asp.net?

1005