我有一个像这样的 GridView:
<asp:GridView ID="gvwStudents" runat="server"
AutoGenerateColumns="False" DataKeyNames="ID"
ShowHeader="False" onrowdeleting="gvwStudents_RowDeleting">
<Columns>
<asp:BoundField DataField="FirstName" />
<asp:BoundField DataField="LastName" />
<asp:BoundField DataField="Email" />
<asp:CommandField ShowDeleteButton="True" DeleteText="Remove" />
</Columns>
</asp:GridView>
以下是我创建 GridView 绑定到的 DataTable 的方法,以便您知道我正在处理的数据:
private DataTable MakeStudentsTable()
{
DataTable students = new DataTable();
DataColumn ID = students.Columns.Add("ID", typeof(int));
ID.AutoIncrement = true;
DataColumn firstName = students.Columns.Add("FirstName", typeof(string));
DataColumn lastName = students.Columns.Add("LastName", typeof(string));
DataColumn email = students.Columns.Add("Email", typeof(string));
return students;
}
为什么,哦,为什么 RowDeleting 事件的 EventArgs 中没有传入任何键?我需要从触发此事件时保持会话状态的 ADO.NET 数据表中删除记录。
为什么这不起作用?DataKeys 是否仅在使用 DataSource 控件时才有效?