转发器页脚模板内的 ASP 文字
我认为通过尝试将文字添加到转发器的页脚模板中以便我稍后可以填充它是不可能的......
<FooterTemplate>
<asp:Literal ID="panelFooter" runat="server"></asp:Literal>
</FooterTemplate>
I think this is not possible by trying to add a literal into a footer template of a repeater so that I can fill it later on...
<FooterTemplate>
<asp:Literal ID="panelFooter" runat="server"></asp:Literal>
</FooterTemplate>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
Text
属性数据绑定到代码隐藏中的方法的结果。在此示例中,我们将在页脚中显示产品总数:在隐藏代码中,我们将创建一个方法来计算数量并将其返回给
Literal
控件。请注意,我们不需要通过 ID 来查找控件。我们只是返回 s
string
并且数据绑定语法将在代码隐藏中调用我们的方法并将结果放入控件中。You can data bind the
Text
attribute to the result of a method in your code-behind. In this example we are going to display the total number of products in the footer:In the code-behind we are going to create a method that calculates the number and returns it for the
Literal
control.Notice that we don't need to find the control by its ID. We are just returning s
string
and the data binding syntax will call our method in code-behind and put the result inside the control.