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ページがあります。リピーターが付いています。この繰り返しの中で、ページの非表示フィールドに格納されている値に、反復の1つでアクセスできる必要があります。
以下のスクリプトまで取得しましたが、ページの非表示フィールドコントロールにアクセスする方法がわかりません。
<%# Container.ItemIndex == 0 ? "in " HIDDENFIELD.VALUE : "" %>
誰か助けてくれませんか。ありがとう!
スクリプトの構文は次のとおりです
<%# condition ? truepart : falsepart %>
hiddenfieldのIDが必要です
hiddenfield
<%# Container.ItemIndex == 0 ? HiddenFieldID.value : "" %>