2
我使用的是GridView
,它綁定到List<Customer>
。從GridView中的CommandArgument獲取實體對象RowCommand
protected void GridView_RowCommand(object sender, GridViewCommandEventArgs e)
{
Customer customer = (Customer)e.CommandArgument;
DoSomething(customer);
}
如何分配Customer
對象CommandArgument
觸發事件之前:當RowCommand
是由一些按鈕,我希望能夠從e.CommandArgument
檢索當前行的Customer
對象,像這樣被炒魷魚嗎?