这是我的代码:
<myOwnCtrls:SocialLabel ID="SocialLabel1" CustomName="<%=CurrentPage.Titolo %>" runat="server" />
但在SocialLabel1
上,如果我写了CustomName
的内容,则会打印<%=CurrentPage.Titolo %>
,而不是CurrentPage.Titolo
的内容。
为什么呢?如何在不传递背后代码的情况下实现呢?
答案 0 :(得分:2)
您可以在纯HTML控件中执行此操作,但不能在用户控件中执行此操作。您必须在代码后面分配CustomName:
SocialLabel1.CustomName = CurrentPage.Titolo;