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
protected PageList languageList;
private void Page_Load(object sender, System.EventArgs e)
{
if(Configuration.EnableGlobalizationSupport && CurrentPage.PageLink.IsValue())
{
languageList.DataSource = Global.EPDataFactory.GetLanguageBranches(CurrentPage.PageLink);
languageList.DataBind();
}
else
Visible = false;
}