0

按下gridview上的更新按钮时,我试图从文本字段中获取值: 在此处输入图像描述

以下结果没有输出:

protected void viewStoryTime_OnRowUpdating(object sender, GridViewUpdateEventArgs e)
{
    foreach (DictionaryEntry entry in e.NewValues)
    {
        System.Diagnostics.Debug.WriteLine(entry.Value);
    }
}

我究竟做错了什么?

4

1 回答 1

1

您应该使用该条目从字典中检索值,这就是问题所在:

foreach (DictionaryEntry entry in e.NewValues)
{

  System.Diagnostics.Debug.WriteLine(e.NewValues[entry.Key])

}
于 2013-07-09T22:05:40.597 回答