Click here to Skip to main content
15,891,567 members
Please Sign up or sign in to vote.
2.00/5 (4 votes)
See more:
hi,

I have three textboxes in windows form and I want to save values in database entered in textboxes.

Technology is C#


What should i do ??
Posted
Comments
shakil0304003 1-Mar-11 10:48am    
what you tried? use google 1st!!!

First, have you decided on a database?
Second, the simplest approach would be to bind the textboxes to the data source.

You have samples here[^], based on the approach you take.
 
Share this answer
 
I would have done something like this:

private void LetsDoIt()
{
   while(TestedAndOk() == false)
   {
       WriteSomeCode();
   }
}


And if you are facing problems in starting/writing code, I would refer to msdn, cp, google. In this case, I would start with this article [^]on CP.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900