我在按gridview上的更新按钮时尝试从文本字段中获取值:
以下结果没有输出:
protected void viewStoryTime_OnRowUpdating(object sender, GridViewUpdateEventArgs e)
{
foreach (DictionaryEntry entry in e.NewValues)
{
System.Diagnostics.Debug.WriteLine(entry.Value);
}
}
我做错了什么?
答案 0 :(得分:1)
您应该使用该条目从字典中检索值,这就是问题:
foreach (DictionaryEntry entry in e.NewValues)
{
System.Diagnostics.Debug.WriteLine(e.NewValues[entry.Key])
}