Do you have some advice or link for ASP.NET 2.0?
I have problem to insert row with parametrized insert comand. I can't update
value of parameter like with sql insert command:
With SQL Server DB This is possible:
sqlInsertCommand1.Parameters["@param"].Value = paramvalue;
but with MSAcces DB I didn't have success trying to do like that.
Can somebody explain me how to update parameter in Insert Command with
AccessDataSource
Thanks in Advance