Updation Should Reflect at same time
hi every1
i am stuck at 1 place...i want whatever updation i do it should be reflected at the same time in table(i am using table to display all records)then if i delete 1 record frm this table it shd be reflected at the same time in table....bt its not working i am using following codeplz help me....m waiting fr ur response....
code is
'd there is 1 html table in which i displayed all these records 'd there is 1 command button deactivate....w hen i click on this i pass row id 'd above procedure is called.....
hi every1
i am stuck at 1 place...i want whatever updation i do it should be reflected at the same time in table(i am using table to display all records)then if i delete 1 record frm this table it shd be reflected at the same time in table....bt its not working i am using following codeplz help me....m waiting fr ur response....
code is
Code:
SqlCommand cmd; string str; conn.Open(); str = "update cur_month_ach set active = 0 where rowid=" + rwid + ""; cmd = new SqlCommand(str, conn); int temp = cmd.ExecuteNonQuery(); conn.Close();
Comment