I have a table in my database called users, have created a Cancel Membership button so that a registered user would be able to cancel his membership whenever he wants.

How do i achieve this.My database has a table called users with fields - FirstName, LastName, EMail,Password. Users normally login with their Email and password details. So please i need a code that will be behind the Cancel Membership button and NOT only explanations.

This is the code i used behind my Cancel Membership button but it does not seem to work:

Code:
Protected Sub btnCancelMem_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCancelMem.Click 
 
 
        'var to store the email address 
        Dim EMail As String = txtEMail.Text 
        'var to store the password 
        Dim Password As String = txtPassword.Text 
        'connect to the database table selecting records matching this email    address and password 
        Dim ThisUser As New DatabaseTable(ThisSite.DatabaseName, "delete from users where email='" & EMail & "' and UserPassword='" & Password & "'", "#PN", "#PW") 
        
         
    End Sub.