コード例 #1
0
 public int UpdatePassword(string password, int userID)
 {
     //returns number of rows affected again( (0 nothing changed, 1+ entires changed)
     return(tabUserTableAdapter.UpdateUserPassword(password, userID));
 }
コード例 #2
0
 public int UpdatePassword(string password, int userID)
 {
     return(tabUserAdapter.UpdateUserPassword(password, userID));
 }