I\'m adding a record like this:
Dim pathString As String = HttpContext.Current.Request.MapPath(\"Banking.mdb\")
Dim odbconBanking As New OleDbConnect
You'll want to add
;select scope_identity();
after your query, and run executeScalar to get the value back.
Also, on a completely unrelated note, you really should change your code to use parameterized queries so you don't get caught with SQL injection attacks, or crashes due to inproperly escaped strings concatenated into your sql statement.