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.
通常、データを gridview 列にバインドする方法は次のとおりです。
Text='<%# Bind("regionName") %>'
代わりにインデックスでバインドするにはどうすればよいですか? 例えば:
Text='<%# Bind(1) %>'
その理由は、データソースに 2D リストを使用しており、2D リストには列名がないためです。
以下を使用しましたが、List<string[]>リピーター内で機能しましたが、グリッドビューについてはわかりません:
List<string[]>
Text='<%# Eval("[1]")%>'