1 | <% |
2 | ` list the class member functions by using the subroutine |
3 | printFunction "Public" |
4 | printFunction "Protected" |
5 | printFunction "Private" |
6 | printFunction "Free Standing Function" |
7 | `list the class member variables by using a subroutine |
8 | printData "Public" |
9 | printData "Protected" |
10 | printData "Private" |
11 | end if ` end of outer if |
12 | OBJdbConnection.close ` close connection once everything is done |
13 | %> |
14 | <% listurl = "sp_classes_list.asp?id="&id %> |
15 | <!-- client side script executed in the browser --> |
16 | <script LANGUAGE="VBScript"> |
17 | Sub Window_OnLoad <!-- update the list frame every --> |
18 | window.top.list.navigate("<% = listurl %>") <!-- time a class record is displayed--> |
19 | end sub |
20 | </script> |