Hi,
I've been trying to add mass delete linkbutton to a template page. It was easy to add checkboxes / gather IDs on postback, and I even found method that looks promising: LinqDataSource.Delete(IDictionary keys,IDictionary oldKeys)
All that I get is InvalidCastException: cannot get from System.Int32 to System.String
I know it's not strictly dynamic data question, but I can think of the situation as extending standard templates that DynamicData uses. Are there some specific requirements that 'keys' must adhere to, other than hashtable (simplest object implementing IDictionary) containing IDs to delete? I'm not sure too about that second oldKeys param.