Hi, I'm new with ASP.Net and I made a form in ASP.Net with various textboxes fields:
txtDesc
txtFecha
txtTarea
txtSup
txtDept
txtAna
txtAdies
txtProc
txtEPP
txtPaso
txtRisk
txtCond
I wanted the values entered in the fields of my ASP.Net form to be saved in a table I've created in my database named
Impact_Safety_Analysis.mdb.
The table
Impact_Safety_Analysis has the following fields:
Id (I'm not using this field for the form)
Description
Fecha
Tarea
Supervisor
Department
Analysis
Adiestramiento
Procedure
EPP Recomendado
Secuencia de Pasos
Riesgos
Conducta Segura
Also I'm creating a ASP.Net form where I want users to edit data and another to view the data using the same fields I've mentioned earlier.
How can I make this into
VB.Net code? Any help here would be appreciated.