摘要:
The mutil-key example:public class MKey : IDbObject{ [DbKey(IsDbGenerate = false), Length(50)] public string Name; [DbKey(IsDbGenerate = false)] public int Age; public bool Gender;} 阅读全文
摘要:
/**//*如果使用if (e.Row.RowState == DataControlRowState.Edit)作为判断条件,那么如果当前行恰好是交替行时,条件不成立-即便当前行确实也处于编辑状态*/4 if ((e.Row.RowState & DataControlRowState.Edit) != 0)5 {6 e.Row.Cells[0].BackColor = System.D... 阅读全文
摘要:
需要override bool Equals(object obj) 阅读全文
摘要:
<EditItemTemplate> <asp:CheckBoxList ID="cblXueke" runat="server" DataTextField="Id" DataValueField="FullName" RepeatDirection="Horizontal" RepeatLayout="Flow"> </asp:CheckBoxList> ... 阅读全文