在GridView上按Update时从编辑TextBox获取输入

时间:2013-07-09 21:56:59

标签: c# asp.net gridview

我在按gridview上的更新按钮时尝试从文本字段中获取值: enter image description here

以下结果没有输出:

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

我做错了什么?

1 个答案:

答案 0 :(得分:1)

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

foreach (DictionaryEntry entry in e.NewValues)
{

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

}