private bool CheckBallyuser(string strUser, string strPass) { bool bResult; try { var oSecurityAuthenticate = new BallySecurityAuthentication(); var objProperty = new BallySecurityProperty { UserName = strUser, Password = strPass }; if (objProperty.UserName.ToUpper() != "BALLY") { objProperty.Password = oSecurityAuthenticate.EncryptUser(objProperty); bResult = oSecurityAuthenticate.ValidateUser(objProperty); } else bResult = oSecurityAuthenticate.ValidateUser(objProperty); } catch (Exception ex) { bResult = false; ExceptionManager.Publish(ex); } return bResult; }