Hello everyone, i am creating a web form with textboxes that the user should fill them and with a button called Button1, the data should be inserted into mysql DB.
I have 2 errors.
1. I got an error with
Handles Button1.click
they tell me that Click event is missing. And the second error off course when I click on the insert button nothing is inserted.
I should say that in another page of the web form The data are listed correctly so the connection is good.
I am using VB and asp.net
Any help ?
Thank you.
Imports System.Data.SqlClient
Imports System.Data
Imports System.Data.Odbc
Imports System.Data.OracleClient
Imports System.Configuration
Partial Public Class _Default
Inherits System.Web.UI.Page
Dim connString As String
Private Property GetRingLimit As Object
...
Go to the complete details ...