fiogf49gjkf0d On your validation, why don't you "Trim" the string to make sure they are not putting a "blank"?
<p>if (string.IsNullOrEmpty(opp.Description.Trim())){
// The Description is blank, throw an exception
throw(new ValidationException("Please provide a valid Opportunity Description"));
}
|