I need to insert a row with a DATE value. How do I set its default value to Now()
or similar?
views:
67answers:
1
+1
A:
Unfortunately, the only way to set the default value of a AccessDataSource parameter to something variable is in the code-behind:
myAccessDataSource.InsertParameters("date").DefaultValue = DateTime.Now
Chris Pebble
2009-10-23 22:02:39