November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi!
I possible reason for this could be the start publish date. Since you don't set a start publish date DateTime.Now will be used as StartPublish date.
What that means is that the page will have a start publish that is basically the same as the time the request is made. And with a bit of (un)luck the page will be seen as not published and hence not visible for user with only read access to the page. We've made some improvents to handle this scenario better that will be included in SP2. It's a bit tricky though, since the date is saved and read from the database, and the database granuality isn't as good as ASP.NET:s, hence you can loose or gain one or two milliseconds on the date.
So, try adding a start publish time slightly in the past and see if it makes a difference.
a.StartPublish = DateTime.Now.AddMinutes(-1)
Regards
Per Gunsarfs
EPiServer CMS development team
Helloh, I'm experiencing a somewhat odd problem. Have a page list and a button, the button adds a page programatically. And the pagelist is databound. But the Page list doesn't show the newly added page.
Codebehind (stripped down):
(ItemTemplate)
(%# Container.CurrentPage.PageName %)
(/ItemTemplate)
(/EPiServer:PageList)
(asp:Button Text="add" OnClick="click" runat="server" /)
(/asp:Content)