Can someone point me to, or show me a "Simple" Example of how to add a record to a database? I'm Using Asp.net with WebMatrix and the code wizards are enormous! There has to be a simpler way to do this!
Thx in advance!!
Dim objConnection as OleDbConnection
objConnection = New OleDbConnection(connString)
objConnection.Open()
End Sub
Sub AddDeceased(sender As Object, e As EventArgs)
Dim AddProfile as string
AddProfile = "INSERT INTO Profiles (First_Name, Last_Name) VALUES (@First_Name, @Last_Name)"
Bookmarks