コード例 #1
0
        protected void UpdateAccountInfo(CustomersAccInfoTbl pUpdateAccInfo)
        {
            string _err = pUpdateAccInfo.Update(pUpdateAccInfo);

            if (string.IsNullOrEmpty(_err))
            {
                showMessageBox _msg = new showMessageBox(this.Page, "Update", "Customer Account Info Updated");
            }
            else
            {
                showMessageBox _msg = new showMessageBox(this.Page, "Update", "Error updating: " + _err);
            }
        }