Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
I have this code and am trying to update/inset information int the database using the browser but i get this error message."Could not find installable ISAM" what could be the problem ? please advise
VB
Dim con As New OleDbConnection(WebConfigurationManager.ConnectionStrings("Arnold").ConnectionString)
        con.Open()
        Dim Allocate As New OleDbCommand
        Allocate.Connection = con
        Allocate.CommandText = "INSERT INTO TradeInCarTBL(RegNumber,Customer,Make,Model,Color,Type,Transmission,Mileage,Year,Price,Dealer) VALUES('" & TxtRegno.Text & "'," & Txtcustomer.Text & "," & DDLmake.Text & "," & DDLmodel.Text & "," & DDLcolor.Text & "," & DDLType.Text & "," & DDLTransmission.Text & "," & DDLmileage.Text & "," & DDLYear.Text & "," & Txtprice.Text & "," & DDLDealer.Text & ")"
        Allocate.ExecuteNonQuery()
        Response.Redirect("Login.ASPX")
Posted
Updated 26-Sep-11 19:04pm

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900