我想从中获取专栏(Description)
。DataRowView
我有以下代码。
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.DataItem != null)
{
DataRowView dataRowView = ???????????
string description = dataRowView["Description"] as string;
}
}
如何??????????
用适当的代码替换?