I have a project that utilizes a number of FormViews and SQLDataSources. I would like the default behavior of the SQLDataSource to insert values that are empty as null. I know I can do this by creating an insert parameter for each parameter, but this gets really old for having to do this for update and insert on every parameter that could be empty.
<InsertParameters>
<asp:Parameter Name="Name" ConvertEmptyStringToNull="true" />
</InsertParameters>
Is there any setting in the web.config or on the SQLDataSource I could set?