London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
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???