I'm working with ado in asp.net, and I want to be able to insert a
null into a field that can take nulls.
So I have something like
command.parameters.AddWithValue("@[EMAIL PROTECTED]
",Dbnull.value)
But this gives an error.
It seems like a string is needed, instead of dbnull.value.
Is there any way to insert nulls?
Thanks,
Marvin