2014. 3. 26. 10:13
protected void gridView_CommandButtonInitialize(object sender, ASPxGridViewCommandButtonEventArgs e) {
    if (e.ButtonType == ColumnCommandButtonType.Update || e.ButtonType == ColumnCommandButtonType.Cancel) {
        e.Visible = false;
    }
}


'ASP.NET' 카테고리의 다른 글

C# MailMessage - SMTP(smtp.gmail.com / 발신자 이메일 설정)  (0) 2014.08.28
C# 외부IP 획득하기  (0) 2014.04.30
C# 배열 선언,초기화  (0) 2014.03.25
C# 정규표현식  (0) 2014.03.20
C# string.format  (0) 2014.03.01
Posted by YKYun