Exemple #1
0
 protected void ValidateSlug(object source, ServerValidateEventArgs args)
 {
     if (Post.DoesSlugExist(args.Value))
     {
         args.IsValid = false;
     }
 }
Exemple #2
0
 private bool DoesSlugAlreadyExist(string slug)
 {
     return(Post.DoesSlugExist(slug));
 }