View Single Post
  #4 (permalink)  
Old Oct 14th, 2004, 03:06
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,608
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
??::wink::razz::sad:[xx(]:mad::mad:??:

How to make a DELETE button that will delete all the data inside the RECORDSET that i have specified?
Code: Select all
 
<!!--My recordset to display all data inside userlistSort.mdb--> 
<%
set admin = Server.CreateObject("ADODB.Recordset")
admin.ActiveConnection = MM_AdminRegister_STRING
admin.Source = "SELECT * FROM userlistSort"
admin.CursorType = 0
admin.CursorLocation = 2
admin.LockType = 3
admin.Open()
admin_numRows = 0
%>