To do this, open your trusty MyData database and create a table called tblCustomers with these fields:
ID - autonumber
Customer - text field
State - text field
DateEnrolled - date/time field
Next, create a form page called delete.asp and copy the below code into your page:
<% DIM mySQL, objRS mySQL = "SELECT Username FROM tblCustomers" Set objRS = Server.CreateObject("ADODB.Recordset") objRS.Open mySQL, objConn %>
Please enter the state that you would like to delete:
No comments:
Post a Comment