我确定这是基本的,但我无法弄清楚。
这不起作用-绑定表达式作为字符串传递给控件:
<uc:usercontrol runtat="server" message='<%#Me.protectedVariable%>'/>
后面的代码包括 page_load 中的 Page.Databind() 调用。
但这确实有效:
<uc:usercontrol runat="server" id="usercontrol1"/>
在 page_load 后面的代码中:
usercontrol1.message = Me.protectedVariable
我必须从代码隐藏中绑定吗?这是页面生命周期问题吗?