AI OnAI Off
PropertyCriteriaCollection coll = new PropertyCriteriaCollection();
string alphabet = "abcdefghijklmnopqrstuvwxyzæøå123456789";
foreach (char c in alphabet.ToCharArray())
{
PropertyCriteria crit = new PropertyCriteria();
crit.Name = "PageExternalURL";
crit.Value = c.ToString();
crit.IsNull = false;
crit.Type = PropertyDataType.String;
crit.StringCondition = EPiServer.Filters.StringCompareMethod.Contained;
crit.Required = false;
coll.Add(crit);
}