2 回答

TA貢獻1851條經(jīng)驗 獲得超4個贊
在驗證用戶成功登錄之后,即做一個更新的動作.
update [tableName] set [times] = [times] -1 where ....
其實每次在登錄成功之后,就要做一個檢查,看看[times]字段還有多少.還有多少,應(yīng)提前提醒用戶沖賬
另外,用戶登錄之前,也要檢查[times]是否為0,如果為true,不能登錄才行.

TA貢獻1824條經(jīng)驗 獲得超5個贊
string sql = "update 月卡表 set 次數(shù) = 次數(shù) -1 where 用戶名='" + TextBox2.Text.Trim() + "'";
SqlCommand cmd = new SqlCommand(sql, coon); update 語句
string SQL = "select count(*) from 月卡表 where 次數(shù)='" + TextBox3.Text.Trim() + "'";
SqlCommand CMD = new SqlCommand(SQL, coon); select 語句
SqlDataReader reader = cmd.ExecuteReader();
GridView2.DataSource = reader;
你把一個update綁定給GridView2了
- 2 回答
- 0 關(guān)注
- 434 瀏覽
添加回答
舉報