Click here to Skip to main content
15,885,760 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to update data after printing it .
for example if admin enter :

previous account=30
added account=40
then:
total account=70

the result will be stored in DB(total account=70) and also will be printed in gridview

but actually after printing ,i want to update previous account=70
how can i do this

C#
SqlConnection con = new SqlConnection(@"");
           SqlCommand command = new SqlCommand();
           command.Connection = con;
           command.CommandText = "update customer set   jj=@a where jj=@d";
           command.Parameters.AddWithValue("@d",name);
           command.Parameters.AddWithValue("@a",total);
           try
           {
               con.Open();
               int i = command.ExecuteNonQuery();
               if (i > 0)
                   con.Close();

           }
           catch(Exception ex)
           {
               throw(ex);
           }
       }
Posted
Updated 27-Jan-13 11:01am
v2

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