Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WebForm 网页中有一个中继器,它为 html 表生成行。该表的列显示来自源的绑定值,例如<%# Eval("name") %>. 一个 html 列将显示每一行的计算值。值未绑定到数据源中的任何列。该值是在转发器的 OnItemDataBound 事件期间计算的。我不想在源中创建一个虚拟列,仅用于显示它。
<%# Eval("name") %>
呈现页面时如何显示这些值?
在代码中声明一个受保护的属性或字段,您应该能够在以下内容中访问它: <%# RunningTotal %>
<%# RunningTotal %>
Protected int RunningTotal {get; set;} void OnItemDataBound(object s, EventArgs e) { RunningTotal += .... }