我有一个具有 Title 属性的自定义服务器控件。使用控件时,我想在 aspx 页面中设置标题的值,如下所示:
<cc1:customControl runat="server" Title='<%= PagePropertyValue%>' >
more content
</cc1:customControl>
但是,当我这样做时,我得到的是确切的字符串 <%= PagePropertyValue%> 正在显示,而不是我希望看到的属性值。
所以在尝试了数据绑定表达式之后(如下所示)。我没有得到看起来很糟糕的字符串文字,但我也没有得到任何其他东西。
<cc1:customControl runat="server" Title='<%# PagePropertyValue%>' >
more content
</cc1:customControl>
我需要对我的自定义控件做些什么来获取这种值?或者我需要对页面做些什么。