0
Reply

OnInserting

A M

A M

Mar 5 2006 12:06 PM
2k
I have a form with a DetailsView to insert new records in my Access database. I want it to automaticly create a date and time and insert it when a new record is created. But I can't get the function OnInserting to work. I have a SqlDataSourceCommandEventArgs in my code behind file byt I cant get any date.

protected void DetailsView1_ItemInserting(Object sender, SqlDataSourceCommandEventArgs e)

{

e.Command.Parameters["@mydate"].Value = DateTime.Now;

}