I have a formview control, and on the ItemCreated
event, I am "priming" some of the fields with default values.
However, when I try to use the formview to insert, before the ItemInserting
event gets called, for some reason it calls ItemCreated
first. That results in the fields being over-written with the default values right before the insert happens.
How do I get it to not call the ItemCreated
event before the ItemInserting
event?