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.
我有一个 C#/ASP 页面。它上面有一个中继器。在这个重复中,我需要能够在其中一次迭代中访问存储在页面隐藏字段中的值。
我已经了解了以下脚本,但无法弄清楚如何访问页面上的隐藏字段控件。
<%# Container.ItemIndex == 0 ? "in " HIDDENFIELD.VALUE : "" %>
任何人都可以帮忙吗?谢谢!
脚本语法如下
<%# condition ? truepart : falsepart %>
你需要hiddenfield的身份证
hiddenfield
<%# Container.ItemIndex == 0 ? HiddenFieldID.value : "" %>