Is there a setting which will deny inserting row if that row already exists (excluding ID)?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to check it in your application, you can use ASPxGridView.RowInserting event. Just set
e.Cancelto true if you want to deny row insert. However, this will not prevent direct sql row insert or inserting from some other piece of code in your application.