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
<%#GetProperty(Container.DataItem,"WriterName")%>
code behind:
protected string GetProperty(Object page, string prop)
{
PageData oPage = page as PageData;
if (oPage == null)
return string.Empty;
return oPage.Property[prop].ToString();
}