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.
TabelRowsIDをで生成するように設定するにはどうすればよいDataGrid/DataListですか?のすべての行に自分で行IDを割り当てたいDataList。
TabelRows
DataGrid/DataList
DataList
コントロールにイベントのハンドラーをアタッチItemDataBoundします。
ItemDataBound
<asp:DataGrid OnItemDataBound="myGrid_ItemDataBound" ...>
次のようにハンドラメソッドを宣言します。
protected void myGrid_ItemDataBound(object sender, DataGridItemEventArgs e) { e.Item.Attributes.Add("id", "some_id"); }