Inserting a record to access via asp.net

  • Thread starter Thread starter kalib
  • Start date Start date
K

kalib

I am trying to add a record in the access97 database to a table that is linked to another. Is there an example of such ?
 
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
 
Back
Top