문제

I have a GridView where the ItemTemplates are just Eval("ColumnName"), how can I access this field after the data has been bound?

I tried gv.Rows[0].Cells[0] etc. but there is nothing there.

Is this because of late binding? or is it just because the Eval is not in a control?

도움이 되었습니까?

해결책 2

I worked it out:

((DataBoundLiteralControl)gv.Rows[0].Cells[0].Controls[0]).Text

다른 팁

You want to get the data in the event 'RowCommand' or 'RowDataBind'?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top