Hi Rudi,
You can specify a default display insert value for the desired column in the SmartDataSource control Insert parameters. In Design mode open the editor for the SmartDataSource Insert query, select the desired parameter in the Parameters list and fill in the DefaultValue field.
If you have any other questions, we will be more than happy to help you.Best wishes,Adillis SupportAdillis - IT solutions http://adillis.com
protected void SmartDBView1_DataBindingChildren(SmartDBView sender, EventArgs e) { System.Data.DataRowView row = sender.DataItem as System.Data.DataRowView; if (sender.CurrentMode == SmartDBViewMode.Insert && row != null) { row["ProductName"] = "Product" + (new Random()).Next(); } }