Check duplicate not working

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
crash
User
Posts: 148

Check duplicate not working

Post by crash »

I'm trying to prevent a duplicate record. My field updates as an auto-update from the user.
I've ticked the Check Duplicate box... but it still adds in the field from the autoupdate.

How do I set this that it will tell the user there is a duplicate record.
There are no tips in the help file... even under Row_UpdateConflict

Any help please.
Thanks


MichaelG
User
Posts: 1095

Post by MichaelG »

Auto-Update Values are not checked for duplicate. You can add your checking in Row_Inserting / Row_Updating server events.

If you write your own AutoUpdate method, you should make sure the value is unique.


Post Reply