Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
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 Ben,
It's a little bit hard to understand what your problem is. Can you give som examples of your code?
Tip: If you want to get a value from a page in the PageList you can use Container.CurrentPage.Property[yourPorpertyName].Value (or just Container.CurrentPage[yourPropertyName]).
-Kjetil Simensen
Hi Ben.
You can also use the EPiServer:Property webcontrol to get a value from a page in the PageList. This because the PageList control implements the IPageSource interface.
<EPiServer:PageList PageLink="<%#EPiServer.Core.PageRegerence.StartPage%>" runat="server">
<ItemTemplate>
<EPiServer:Property PropertyName="PageName" runat="server" /> '
</ItemTemplate>
</EPiServer:PageList>
BR,
Tore
hi i have an epi:pagelist and i want to take form it a propery and write its value into image src (both are in the pagelist)
i try to user container to do this but it does`nt work,
b.t.w
i want to change somthing from the server side to the inner control (like the img)
how i can get to the control???