hmm . . .i haven't tried in ASP Scripts, but if in
VB Projects you can use this :
Use reference : ADO also ADO DDL and Security the code like this :
Dim cn as ADODB.Connections
Dim ct as New Catalog 'this from DDL and security class
Dim Tbl as Table
'----------- First Set The Connection ------------ Then ----------
sub GET_TBL()
set ct.ActiveConnection = cn
For each Tbl in ct.Tables
'fill table name in listbox
list1.additem Tbl.Name
Next
set ct = nohing
end sub
if succeeded you can convert it in your ASP scripts. Hope this is can help to solve your problems. bye