Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi!
I think you would need to do something like this:
int count = 0;
foreach (PropertyData prop in CurrentPage.Property)
{
if (prop.IsPropertyData)
{
count++;
}
}
Regards
Per Gunsarfs
EPiServer CMS Development Team
How can I get the number of user defined properties for a page?
CurrentPage.Property.Count gives the count of all inbuilt as well as user defined properties, but I want only those porperties tha the user has made.
Thanks in advance