Inline Data-Binding asp.net tags not executing
问题 My problem is I used to be able to do this, < div runat="server" visible='<%#CallAFunctionThatReturnsBoolean() %>' > and CallAFunctionThatReturnsBoolean() will be called in Page_Load when the control's DataBind function gets called implicitly and the div's visibility will be set correctly. Now for some reason this doesn't happen anymore, and to make it work I would have to either call Page.DataBind() in my base Page class or Me.DataBind() in the Page_Load sub in that page, but I don't really