summaryrefslogtreecommitdiff
path: root/www/iasp/PLIST
blob: 40356a2dedf184a4e50434b4be2b51fcf94ef856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
@comment $NetBSD: PLIST,v 1.5 2005/05/03 16:00:39 wiz Exp $
${IASP}/README_EN
${IASP}/WEB-INF/web.xml
${IASP}/admin/JSManager.jar
${IASP}/admin/docs/features/admin.html
${IASP}/admin/docs/features/application.html
${IASP}/admin/docs/features/apptuner.html
${IASP}/admin/docs/features/db.html
${IASP}/admin/docs/features/image/admin.gif
${IASP}/admin/docs/features/image/app.gif
${IASP}/admin/docs/features/image/app1.gif
${IASP}/admin/docs/features/image/app1a.gif
${IASP}/admin/docs/features/image/app2.gif
${IASP}/admin/docs/features/image/app3.gif
${IASP}/admin/docs/features/image/app4.gif
${IASP}/admin/docs/features/image/app5.gif
${IASP}/admin/docs/features/image/app6.gif
${IASP}/admin/docs/features/image/app7.gif
${IASP}/admin/docs/features/image/appx.gif
${IASP}/admin/docs/features/image/appx2.gif
${IASP}/admin/docs/features/image/appx3.gif
${IASP}/admin/docs/features/image/console.gif
${IASP}/admin/docs/features/image/console1.gif
${IASP}/admin/docs/features/image/console2.gif
${IASP}/admin/docs/features/image/db.gif
${IASP}/admin/docs/features/image/db1.gif
${IASP}/admin/docs/features/image/db2.gif
${IASP}/admin/docs/features/image/engine1.gif
${IASP}/admin/docs/features/image/engine2.gif
${IASP}/admin/docs/features/image/iasp-logo.gif
${IASP}/admin/docs/features/image/license.gif
${IASP}/admin/docs/features/image/license1.gif
${IASP}/admin/docs/features/image/license2.gif
${IASP}/admin/docs/features/image/loadb1.gif
${IASP}/admin/docs/features/image/log.gif
${IASP}/admin/docs/features/image/log1.gif
${IASP}/admin/docs/features/image/log2.gif
${IASP}/admin/docs/features/image/log3.gif
${IASP}/admin/docs/features/image/log4.gif
${IASP}/admin/docs/features/image/login.gif
${IASP}/admin/docs/features/image/mac-rca1.gif
${IASP}/admin/docs/features/image/mac-rca2.gif
${IASP}/admin/docs/features/image/proxy.gif
${IASP}/admin/docs/features/image/proxy01.gif
${IASP}/admin/docs/features/image/proxy1.gif
${IASP}/admin/docs/features/image/proxy2.gif
${IASP}/admin/docs/features/image/proxy3.gif
${IASP}/admin/docs/features/image/proxy4.gif
${IASP}/admin/docs/features/image/proxy5.gif
${IASP}/admin/docs/features/image/proxy6.gif
${IASP}/admin/docs/features/image/security.gif
${IASP}/admin/docs/features/image/security1.gif
${IASP}/admin/docs/features/image/security2.gif
${IASP}/admin/docs/features/image/security3.gif
${IASP}/admin/docs/features/image/servlet.gif
${IASP}/admin/docs/features/image/servlet1.gif
${IASP}/admin/docs/features/image/servlet2.gif
${IASP}/admin/docs/features/mac_rca.html
${IASP}/admin/docs/features/remoteconsole.html
${IASP}/admin/docs/features/security.html
${IASP}/admin/docs/features/servlet.html
${IASP}/admin/images/add_current.gif
${IASP}/admin/images/add_notcurrent.gif
${IASP}/admin/images/admin_current.gif
${IASP}/admin/images/admin_notcurrent.gif
${IASP}/admin/images/ado_current.gif
${IASP}/admin/images/ado_notcurrent.gif
${IASP}/admin/images/app.gif
${IASP}/admin/images/app_current.gif
${IASP}/admin/images/app_notcurrent.gif
${IASP}/admin/images/apperr.gif
${IASP}/admin/images/delete_current.gif
${IASP}/admin/images/delete_notcurrent.gif
${IASP}/admin/images/dir.gif
${IASP}/admin/images/direrror.gif
${IASP}/admin/images/file.gif
${IASP}/admin/images/help_current.gif
${IASP}/admin/images/help_notcurrent.gif
${IASP}/admin/images/iasp-logo.gif
${IASP}/admin/images/pro_current.gif
${IASP}/admin/images/pro_notcurrent.gif
${IASP}/admin/images/security_current.gif
${IASP}/admin/images/security_notcurrent.gif
${IASP}/admin/images/servlet_current.gif
${IASP}/admin/images/servlet_notcurrent.gif
${IASP}/admin/index.html
${IASP}/connector.sh
${IASP}/default.htm
${IASP}/default.html
${IASP}/docs/addons/asp2java/asp2java.htm
${IASP}/docs/addons/components/iaspchart/iasp_chart.htm
${IASP}/docs/addons/components/iaspchart/iasp_chartvb.htm
${IASP}/docs/addons/components/iaspchart/iaspchart.asp
${IASP}/docs/addons/components/iaspexec/hc_bird.gif
${IASP}/docs/addons/components/iaspexec/iasp_exec.htm
${IASP}/docs/addons/components/iaspexec/iasp_execjs.htm
${IASP}/docs/addons/components/iaspexec/iasp_execvb.htm
${IASP}/docs/addons/components/iaspexec/iaspexecjs.asp
${IASP}/docs/addons/components/iaspexec/iaspexecvb.asp
${IASP}/docs/addons/components/iaspfileup/iasp_dictionary.htm
${IASP}/docs/addons/components/iaspfileup/iasp_fileup.htm
${IASP}/docs/addons/components/iaspfileup/iasp_safile.htm
${IASP}/docs/addons/components/iaspgrid/cellobject.htm
${IASP}/docs/addons/components/iaspgrid/columnobject.htm
${IASP}/docs/addons/components/iaspgrid/columnrangeobject.htm
${IASP}/docs/addons/components/iaspgrid/dbdrv.htm
${IASP}/docs/addons/components/iaspgrid/errorconstants.htm
${IASP}/docs/addons/components/iaspgrid/extendedfeatures.htm
${IASP}/docs/addons/components/iaspgrid/fontobject.htm
${IASP}/docs/addons/components/iaspgrid/gridobject.htm
${IASP}/docs/addons/components/iaspgrid/headerobject.htm
${IASP}/docs/addons/components/iaspgrid/iasp_grid.htm
${IASP}/docs/addons/components/iaspgrid/installation.htm
${IASP}/docs/addons/components/iaspgrid/linedia.gif
${IASP}/docs/addons/components/iaspgrid/objectmodeldiag.htm
${IASP}/docs/addons/components/iaspgrid/sample-1.gif
${IASP}/docs/addons/components/iaspgrid/sample-1.htm
${IASP}/docs/addons/components/iaspgrid/sample-2.gif
${IASP}/docs/addons/components/iaspgrid/sample-2.htm
${IASP}/docs/addons/components/iaspgrid/sample-3.gif
${IASP}/docs/addons/components/iaspgrid/sample-3.htm
${IASP}/docs/addons/components/iaspgrid/sample-4.gif
${IASP}/docs/addons/components/iaspgrid/sample-4.htm
${IASP}/docs/addons/components/iaspgrid/sample-4a.gif
${IASP}/docs/addons/components/iaspgrid/sample-5.gif
${IASP}/docs/addons/components/iaspgrid/sample-5.htm
${IASP}/docs/addons/components/iaspgrid/sample-5a.gif
${IASP}/docs/addons/components/iaspgrid/sample.gif
${IASP}/docs/addons/components/iaspgrid/sample.htm
${IASP}/docs/addons/components/iaspgrid/samples/addnew.gif
${IASP}/docs/addons/components/iaspgrid/samples/backward.gif
${IASP}/docs/addons/components/iaspgrid/samples/cancel.gif
${IASP}/docs/addons/components/iaspgrid/samples/database/gridtest.mdb
${IASP}/docs/addons/components/iaspgrid/samples/delete.gif
${IASP}/docs/addons/components/iaspgrid/samples/down.gif
${IASP}/docs/addons/components/iaspgrid/samples/edit.gif
${IASP}/docs/addons/components/iaspgrid/samples/forward.gif
${IASP}/docs/addons/components/iaspgrid/samples/sample1.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample2.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample3.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample3left.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample3right.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample4.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample4error.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample5.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample5left.asp
${IASP}/docs/addons/components/iaspgrid/samples/sample5right.asp
${IASP}/docs/addons/components/iaspgrid/samples/samples.asp
${IASP}/docs/addons/components/iaspgrid/samples/save.gif
${IASP}/docs/addons/components/iaspgrid/samples/up.gif
${IASP}/docs/addons/components/iaspgrid/tableobject.htm
${IASP}/docs/addons/components/iasphttp/getfile.asp
${IASP}/docs/addons/components/iasphttp/header.asp
${IASP}/docs/addons/components/iasphttp/iasp_http.htm
${IASP}/docs/addons/components/iaspimage/iasp_image.htm
${IASP}/docs/addons/components/iaspimage/iasp_imagevb.htm
${IASP}/docs/addons/components/iaspimage/iaspimage.asp
${IASP}/docs/addons/components/iaspinet/iaspinet.asp
${IASP}/docs/addons/components/iaspinet/iaspinet.htm
${IASP}/docs/addons/components/iaspinet/iaspinetdoc.htm
${IASP}/docs/addons/components/iaspmail/iasp_mail.htm
${IASP}/docs/addons/components/iaspmail/iasp_mailjs.htm
${IASP}/docs/addons/components/iaspmail/iasp_mailvb.htm
${IASP}/docs/addons/components/iaspmail/iaspmailjs.asp
${IASP}/docs/addons/components/iaspmail/iaspmailvb.asp
${IASP}/docs/addons/components/iaspmail/iaspmailviewjs.htm
${IASP}/docs/addons/components/iaspmail/iaspmailviewvb.htm
${IASP}/docs/addons/components/iaspnntp/iasp_nntp.htm
${IASP}/docs/addons/components/iaspnntp/nntp1.asp
${IASP}/docs/addons/components/iaspnntp/nntp2.asp
${IASP}/docs/addons/components/iaspnntp/nntp3.asp
${IASP}/docs/addons/components/iaspnntp/nntp4.asp
${IASP}/docs/addons/components/iaspnntp/nntp5.asp
${IASP}/docs/addons/components/iasppop3/iasp_pop3.htm
${IASP}/docs/addons/components/iasppop3/iasppop3js.asp
${IASP}/docs/addons/components/iasppop3/iasppop3js.htm
${IASP}/docs/addons/components/iasppop3/iasppop3vb.asp
${IASP}/docs/addons/components/iasppop3/iasppop3vb.htm
${IASP}/docs/addons/components/iasppop3/iasppop3viewjs.htm
${IASP}/docs/addons/components/iasppop3/iasppop3viewvb.htm
${IASP}/docs/addons/components/iasppop3/jdel.asp
${IASP}/docs/addons/components/iasppop3/jdeljs.htm
${IASP}/docs/addons/components/iasppop3/jmesr.asp
${IASP}/docs/addons/components/iasppop3/jmesrjs.htm
${IASP}/docs/addons/components/iasppop3/vbdel.asp
${IASP}/docs/addons/components/iasppop3/vbdel.htm
${IASP}/docs/addons/components/iasppop3/vbmesr.asp
${IASP}/docs/addons/components/iasppop3/vbmesr.htm
${IASP}/docs/addons/components/iaspsock/iasp_sock.htm
${IASP}/docs/addons/components/iaspsock/iaspsock.asp
${IASP}/docs/addons/components/iaspsock/iaspsockvb.htm
${IASP}/docs/addons/components/iaspupload/iasp_upload.htm
${IASP}/docs/addons/components/iaspupload/iasp_uploaddictionary.htm
${IASP}/docs/addons/components/iaspupload/iasp_uploadfile.htm
${IASP}/docs/addons/components/iaspupload/iasp_uploadvb.htm
${IASP}/docs/addons/components/iaspupload/upload.asp
${IASP}/docs/addons/components/iaspupload/uploadForm.asp
${IASP}/docs/addons/components/iaspxmldom/iaspxmldom.htm
${IASP}/docs/aspdevtools.htm
${IASP}/docs/aspref.htm
${IASP}/docs/components.htm
${IASP}/docs/content.htm
${IASP}/docs/contentaddons.htm
${IASP}/docs/contentasp2aspnet.htm
${IASP}/docs/faq.htm
${IASP}/docs/fixes.htm
${IASP}/docs/iasp/config/WinInst.htm
${IASP}/docs/iasp/config/apache.htm
${IASP}/docs/iasp/config/cfgnetware.htm
${IASP}/docs/iasp/config/configuring_the_zeus_web_server4.0.htm
${IASP}/docs/iasp/config/domino.htm
${IASP}/docs/iasp/config/iis3.htm
${IASP}/docs/iasp/config/iis4.htm
${IASP}/docs/iasp/config/iis5.htm
${IASP}/docs/iasp/config/images/ws2_nt_addjaspservlet.gif
${IASP}/docs/iasp/config/images/ws2_nt_addservlet.gif
${IASP}/docs/iasp/config/images/ws2_nt_javaengine.gif
${IASP}/docs/iasp/config/images/ws2_nt_loadjaspservlet.gif
${IASP}/docs/iasp/config/images/ws2_nt_servlet_alias.gif
${IASP}/docs/iasp/config/images/ws2_nt_servlet_alias1.gif
${IASP}/docs/iasp/config/images/ws2_nt_servlet_alias2.gif
${IASP}/docs/iasp/config/images/ws2_nt_servlet_alias3.gif
${IASP}/docs/iasp/config/images/ws2_nt_servlets_config.gif
${IASP}/docs/iasp/config/images/ws2_nt_setup.gif
${IASP}/docs/iasp/config/images/ws2_nt_unloadjaspservlet.gif
${IASP}/docs/iasp/config/images/ws3-addresource.gif
${IASP}/docs/iasp/config/images/ws3-cfgwebapp.gif
${IASP}/docs/iasp/config/images/ws3-cfgwebapp1.gif
${IASP}/docs/iasp/config/images/ws3-cfgwebapp2.gif
${IASP}/docs/iasp/config/images/ws3-cfgwebapp3.gif
${IASP}/docs/iasp/config/images/ws3-cfgwebapp4.gif
${IASP}/docs/iasp/config/images/ws3-defaultsrv.gif
${IASP}/docs/iasp/config/images/ws3-servlet.gif
${IASP}/docs/iasp/config/images/ws3-servlet1.gif
${IASP}/docs/iasp/config/images/ws3-servlet2.gif
${IASP}/docs/iasp/config/images/ws3-servlet3.gif
${IASP}/docs/iasp/config/images/ws3-servlet4.gif
${IASP}/docs/iasp/config/images/ws3-servlet5.gif
${IASP}/docs/iasp/config/images/ws3-servlet6.gif
${IASP}/docs/iasp/config/images/ws3-servlet7.gif
${IASP}/docs/iasp/config/images/ws3-servlet8.gif
${IASP}/docs/iasp/config/images/ws3-setresourcename.gif
${IASP}/docs/iasp/config/images/ws3-start.gif
${IASP}/docs/iasp/config/images/ws35-ad.gif
${IASP}/docs/iasp/config/images/ws35-addresource.gif
${IASP}/docs/iasp/config/images/ws35-cfgwebapp.gif
${IASP}/docs/iasp/config/images/ws35-cfgwebapp1.gif
${IASP}/docs/iasp/config/images/ws35-cfgwebapp2.gif
${IASP}/docs/iasp/config/images/ws35-defaultsrv.gif
${IASP}/docs/iasp/config/images/ws35-setresourcename.gif
${IASP}/docs/iasp/config/iplanet.htm
${IASP}/docs/iasp/config/iserver.htm
${IASP}/docs/iasp/config/jserv.htm
${IASP}/docs/iasp/config/jserv1.0.htm
${IASP}/docs/iasp/config/jserv1.12.htm
${IASP}/docs/iasp/config/jws11.htm
${IASP}/docs/iasp/config/macInst.htm
${IASP}/docs/iasp/config/mactomcat.htm
${IASP}/docs/iasp/config/netware.htm
${IASP}/docs/iasp/config/nsnetware.htm
${IASP}/docs/iasp/config/ohttpd.htm
${IASP}/docs/iasp/config/sambar.htm
${IASP}/docs/iasp/config/servgate.htm
${IASP}/docs/iasp/config/sunws.htm
${IASP}/docs/iasp/config/supported.htm
${IASP}/docs/iasp/config/tomcat.htm
${IASP}/docs/iasp/config/unixInst.htm
${IASP}/docs/iasp/config/verify.htm
${IASP}/docs/iasp/config/web390Inst.htm
${IASP}/docs/iasp/config/weblogic.htm
${IASP}/docs/iasp/config/website.htm
${IASP}/docs/iasp/config/websphere2_nt4.htm
${IASP}/docs/iasp/config/websphere35.htm
${IASP}/docs/iasp/config/websphere3_nt4.htm
${IASP}/docs/iasp/config/websphere_as400.htm
${IASP}/docs/iasp/config/websphere_s390.htm
${IASP}/docs/iasp/config/webstar_servletexec.htm
${IASP}/docs/iasp/config/webten_servletexec.htm
${IASP}/docs/iasp/config/xitami.htm
${IASP}/docs/iasp/config/zeus.htm
${IASP}/docs/iasp/config/zeus_318.htm
${IASP}/docs/iasp/config/zeus_jrun.htm
${IASP}/docs/iasp/config/zeus_jserv.htm
${IASP}/docs/iasp/faq/asp2rjaxado.htm
${IASP}/docs/iasp/faq/gq00.htm
${IASP}/docs/iasp/faq/gq01.htm
${IASP}/docs/iasp/faq/gq02.htm
${IASP}/docs/iasp/faq/gq03.htm
${IASP}/docs/iasp/faq/gq04.htm
${IASP}/docs/iasp/faq/gq05.htm
${IASP}/docs/iasp/faq/gq06.htm
${IASP}/docs/iasp/faq/gq07.htm
${IASP}/docs/iasp/faq/gq08.htm
${IASP}/docs/iasp/faq/gq09.htm
${IASP}/docs/iasp/faq/gq10.htm
${IASP}/docs/iasp/faq/gq11.htm
${IASP}/docs/iasp/faq/gq12.htm
${IASP}/docs/iasp/faq/gq13.htm
${IASP}/docs/iasp/faq/gq14.htm
${IASP}/docs/iasp/faq/gq15.htm
${IASP}/docs/iasp/faq/gq16.htm
${IASP}/docs/iasp/faq/gq17.htm
${IASP}/docs/iasp/faq/gq18.htm
${IASP}/docs/iasp/faq/gq19.htm
${IASP}/docs/iasp/faq/gq2.htm
${IASP}/docs/iasp/faq/gq20.htm
${IASP}/docs/iasp/faq/gq21.htm
${IASP}/docs/iasp/faq/gq22.htm
${IASP}/docs/iasp/faq/gq23.htm
${IASP}/docs/iasp/faq/gq24.htm
${IASP}/docs/iasp/faq/gq25.htm
${IASP}/docs/iasp/faq/gq26.htm
${IASP}/docs/iasp/faq/gq3.htm
${IASP}/docs/iasp/faq/gq4.htm
${IASP}/docs/iasp/faq/gq5.htm
${IASP}/docs/iasp/faq/gq7.htm
${IASP}/docs/iasp/faq/gq8.htm
${IASP}/docs/iasp/faq/gq9.htm
${IASP}/docs/iasp/faq/iq1.htm
${IASP}/docs/iasp/faq/iq3.htm
${IASP}/docs/iasp/faq/iq4.htm
${IASP}/docs/iasp/features/admin.htm
${IASP}/docs/iasp/features/adointerface.htm
${IASP}/docs/iasp/features/adoruntime.htm
${IASP}/docs/iasp/features/application.htm
${IASP}/docs/iasp/features/apptuner.htm
${IASP}/docs/iasp/features/createobject.htm
${IASP}/docs/iasp/features/db.htm
${IASP}/docs/iasp/features/error_ref.htm
${IASP}/docs/iasp/features/image/admin.gif
${IASP}/docs/iasp/features/image/app.gif
${IASP}/docs/iasp/features/image/app1.gif
${IASP}/docs/iasp/features/image/app1a.gif
${IASP}/docs/iasp/features/image/app2.gif
${IASP}/docs/iasp/features/image/app3.gif
${IASP}/docs/iasp/features/image/app4.gif
${IASP}/docs/iasp/features/image/app5.gif
${IASP}/docs/iasp/features/image/app6.gif
${IASP}/docs/iasp/features/image/app7.gif
${IASP}/docs/iasp/features/image/appx.gif
${IASP}/docs/iasp/features/image/appx2.gif
${IASP}/docs/iasp/features/image/appx3.gif
${IASP}/docs/iasp/features/image/console.gif
${IASP}/docs/iasp/features/image/console1.gif
${IASP}/docs/iasp/features/image/console2.gif
${IASP}/docs/iasp/features/image/db.gif
${IASP}/docs/iasp/features/image/db1.gif
${IASP}/docs/iasp/features/image/db2.gif
${IASP}/docs/iasp/features/image/engine1.gif
${IASP}/docs/iasp/features/image/engine2.gif
${IASP}/docs/iasp/features/image/iasp-logo.gif
${IASP}/docs/iasp/features/image/license.gif
${IASP}/docs/iasp/features/image/license1.gif
${IASP}/docs/iasp/features/image/license2.gif
${IASP}/docs/iasp/features/image/loadb1.gif
${IASP}/docs/iasp/features/image/loadbalance.gif
${IASP}/docs/iasp/features/image/loadflow.gif
${IASP}/docs/iasp/features/image/log.gif
${IASP}/docs/iasp/features/image/log1.gif
${IASP}/docs/iasp/features/image/log2.gif
${IASP}/docs/iasp/features/image/log3.gif
${IASP}/docs/iasp/features/image/log4.gif
${IASP}/docs/iasp/features/image/login.gif
${IASP}/docs/iasp/features/image/mac-rca1.gif
${IASP}/docs/iasp/features/image/mac-rca2.gif
${IASP}/docs/iasp/features/image/proxy.gif
${IASP}/docs/iasp/features/image/proxy01.gif
${IASP}/docs/iasp/features/image/proxy1.gif
${IASP}/docs/iasp/features/image/proxy2.gif
${IASP}/docs/iasp/features/image/proxy3.gif
${IASP}/docs/iasp/features/image/proxy4.gif
${IASP}/docs/iasp/features/image/proxy5.gif
${IASP}/docs/iasp/features/image/proxy6.gif
${IASP}/docs/iasp/features/image/security.gif
${IASP}/docs/iasp/features/image/security1.gif
${IASP}/docs/iasp/features/image/security2.gif
${IASP}/docs/iasp/features/image/security3.gif
${IASP}/docs/iasp/features/image/servlet.gif
${IASP}/docs/iasp/features/image/servlet1.gif
${IASP}/docs/iasp/features/image/servlet2.gif
${IASP}/docs/iasp/features/jscomp_err.htm
${IASP}/docs/iasp/features/jsruntime_err.htm
${IASP}/docs/iasp/features/loadbalance.htm
${IASP}/docs/iasp/features/mac_rca.htm
${IASP}/docs/iasp/features/objrun_err.htm
${IASP}/docs/iasp/features/override.htm
${IASP}/docs/iasp/features/precompiler.htm
${IASP}/docs/iasp/features/rca.htm
${IASP}/docs/iasp/features/security.htm
${IASP}/docs/iasp/features/servlet.htm
${IASP}/docs/iasp/features/vbscomp_err.htm
${IASP}/docs/iasp/features/vbsruntime_err.htm
${IASP}/docs/iasp/images/addon_off.gif
${IASP}/docs/iasp/images/addon_on.gif
${IASP}/docs/iasp/images/arrow.gif
${IASP}/docs/iasp/images/backgrds.gif
${IASP}/docs/iasp/images/conf1.gif
${IASP}/docs/iasp/images/conf2.gif
${IASP}/docs/iasp/images/conf3.gif
${IASP}/docs/iasp/images/conf4.gif
${IASP}/docs/iasp/images/conf5.gif
${IASP}/docs/iasp/images/conf6.gif
${IASP}/docs/iasp/images/conf7.gif
${IASP}/docs/iasp/images/conn1.gif
${IASP}/docs/iasp/images/conn_apache.gif
${IASP}/docs/iasp/images/conn_iis.gif
${IASP}/docs/iasp/images/conn_netscape.gif
${IASP}/docs/iasp/images/conn_xitami.gif
${IASP}/docs/iasp/images/halcyon.gif
${IASP}/docs/iasp/images/halcyonlogo.gif
${IASP}/docs/iasp/images/help_logo.gif
${IASP}/docs/iasp/images/iasp-logo.gif
${IASP}/docs/iasp/images/iasp.gif
${IASP}/docs/iasp/images/iasp_off.gif
${IASP}/docs/iasp/images/iasp_on.gif
${IASP}/docs/iasp/images/iaspcomp.gif
${IASP}/docs/iasp/images/iis301.gif
${IASP}/docs/iasp/images/iis302.gif
${IASP}/docs/iasp/images/iis303.gif
${IASP}/docs/iasp/images/iiwaabt1.gif
${IASP}/docs/iasp/images/image10netware.gif
${IASP}/docs/iasp/images/image11netware.gif
${IASP}/docs/iasp/images/image12netware.gif
${IASP}/docs/iasp/images/image13netware.gif
${IASP}/docs/iasp/images/image1netware.gif
${IASP}/docs/iasp/images/image2netware.gif
${IASP}/docs/iasp/images/image3netware.gif
${IASP}/docs/iasp/images/image4netware.gif
${IASP}/docs/iasp/images/image5netware.gif
${IASP}/docs/iasp/images/image6netware.gif
${IASP}/docs/iasp/images/image7netware.gif
${IASP}/docs/iasp/images/image8netware.gif
${IASP}/docs/iasp/images/image9netware.gif
${IASP}/docs/iasp/images/isapi1.gif
${IASP}/docs/iasp/images/isapi2.gif
${IASP}/docs/iasp/images/iws-alias.gif
${IASP}/docs/iasp/images/iws-filter.gif
${IASP}/docs/iasp/images/iws-servlet.gif
${IASP}/docs/iasp/images/rjax_off.gif
${IASP}/docs/iasp/images/rjax_on.gif
${IASP}/docs/iasp/images/sambar-1.gif
${IASP}/docs/iasp/images/sambar-2.gif
${IASP}/docs/iasp/images/servletexec1.gif
${IASP}/docs/iasp/images/servletexec2.gif
${IASP}/docs/iasp/images/servletexec3.gif
${IASP}/docs/iasp/images/servletgateway.gif
${IASP}/docs/iasp/images/servletio.gif
${IASP}/docs/iasp/images/sunweb1.gif
${IASP}/docs/iasp/images/sunweb2.gif
${IASP}/docs/iasp/images/sunweb3.gif
${IASP}/docs/iasp/images/sunweb4.gif
${IASP}/docs/iasp/images/sunweb5.gif
${IASP}/docs/iasp/images/sunweb6.gif
${IASP}/docs/iasp/images/sunweb7.gif
${IASP}/docs/iasp/images/sunweb8.gif
${IASP}/docs/iasp/images/tested.gif
${IASP}/docs/iasp/images/textlogo.gif
${IASP}/docs/iasp/images/totop.gif
${IASP}/docs/iasp/images/watch.gif
${IASP}/docs/iasp/images/watch1.gif
${IASP}/docs/iasp/images/webten1.gif
${IASP}/docs/iasp/images/webten2.gif
${IASP}/docs/iasp/images/webten3.gif
${IASP}/docs/iasp/images/zeus.gif
${IASP}/docs/iasp/images/zeus1.gif
${IASP}/docs/iasp/images/zeus2.gif
${IASP}/docs/iasp/images/zeus3.gif
${IASP}/docs/iasp/images/zeus4.gif
${IASP}/docs/iasp/images/zeusa.gif
${IASP}/docs/iasp/images/zeusb.gif
${IASP}/docs/iasp/images/zeusc.gif
${IASP}/docs/iasp/images/zeusd.gif
${IASP}/docs/iasp/samples/database/AccessDB.mdb
${IASP}/docs/iasp/samples/database/BIBLIO.MDB
${IASP}/docs/iasp/samples/database/CloudscapeDB.sql
${IASP}/docs/iasp/samples/database/CloudscapeDB/cloudscape.db
${IASP}/docs/iasp/samples/database/CloudscapeDB/db.lck
${IASP}/docs/iasp/samples/database/CloudscapeDB/log/log.ctrl
${IASP}/docs/iasp/samples/database/CloudscapeDB/log/log3.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800256.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800257.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800258.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800259.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800260.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800261.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800262.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800263.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800264.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800265.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800266.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800267.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800268.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800269.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800270.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800271.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800272.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800273.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800274.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800275.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800276.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800277.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800278.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800279.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800280.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800281.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800282.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800283.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800284.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800285.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800286.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800287.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800288.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800289.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800290.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800291.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800292.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800293.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800294.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800295.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800296.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800297.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800298.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800299.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800310.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800311.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800312.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800313.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800314.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800315.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/C945997800316.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800300.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800301.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800302.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800303.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800304.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800305.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800306.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800307.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800308.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0/D945997800309.dat
${IASP}/docs/iasp/samples/database/CloudscapeDB/service.properties
${IASP}/docs/iasp/samples/database/InformixDB.sql
${IASP}/docs/iasp/samples/database/MysqlDB.sql
${IASP}/docs/iasp/samples/database/OracleDB.sql
${IASP}/docs/iasp/samples/database/PostgresDB.sql
${IASP}/docs/iasp/samples/database/SqlserverDb.sql
${IASP}/docs/iasp/samples/database/SybaseDB.sql
${IASP}/docs/iasp/samples/database/ndPhonebook.mdb
${IASP}/docs/iasp/samples/database/studentreg.mdb
${IASP}/docs/iasp/samples/html/ado.htm
${IASP}/docs/iasp/samples/html/adrotatorjs.htm
${IASP}/docs/iasp/samples/html/adrotatorvb.htm
${IASP}/docs/iasp/samples/html/animalsjs.htm
${IASP}/docs/iasp/samples/html/animalsvb.htm
${IASP}/docs/iasp/samples/html/aspemailjs.htm
${IASP}/docs/iasp/samples/html/aspemailvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/adoqueryvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/adotestvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/adrotatorjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/adrotatorvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/americandatetimevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/americannumbervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/animalsjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/animalsvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniregisterjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniregistervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniregordispjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniregordispvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniselectdbjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/aniselectdbvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/aspchartvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/aspimagevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/authordejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/authordevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/authorsjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/authorsvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/bayshorejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/bayshorevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/beanjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/beanparamjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/beanparamvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/beanvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/chinadatetimevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/chinanumbervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/classjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/classparamjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/classparamvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/classvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/createfilejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/createfilevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/createjarjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/createjarvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/currencyvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/datetimevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/dbinfodejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/dbinfodevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/dbinfojs.htm
${IASP}/docs/iasp/samples/html/aspsrc/dbinfovb.htm
${IASP}/docs/iasp/samples/html/aspsrc/demonativevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/designtbjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/designtbvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/emailjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/emailvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/empdisplayvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/employeevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/empregistervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/formjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/formvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/gifjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/gifvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/hellojs.htm
${IASP}/docs/iasp/samples/html/aspsrc/hellovb.htm
${IASP}/docs/iasp/samples/html/aspsrc/infofolderjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/infofoldervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/infojs.htm
${IASP}/docs/iasp/samples/html/aspsrc/infovb.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarbeanjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarbeanparamjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarbeanparamvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarbeanvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/jarvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/jdeljs.htm
${IASP}/docs/iasp/samples/html/aspsrc/jmegsrjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/loginvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/mainjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/mainvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/multidefaultjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/multidefaultvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/multiscrollingjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/multiscrollingvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/newfileiovb.htm
${IASP}/docs/iasp/samples/html/aspsrc/newmailjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/newmailvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/newtbjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/newtbvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/nwauthentication.htm
${IASP}/docs/iasp/samples/html/aspsrc/opencnnjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/opencnnvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/openfilejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/openfilevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/openjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/opentbjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/opentbvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/openvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/operatejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/operatevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/optjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/optvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/procjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/procvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/publisherdejs.htm
${IASP}/docs/iasp/samples/html/aspsrc/publisherdevb.htm
${IASP}/docs/iasp/samples/html/aspsrc/publishersjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/publishersvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/redirectjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/redirectvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/serverjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/servervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/stringformatvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/studdisplayjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/studdisplayvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/studregisterjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/studregistervb.htm
${IASP}/docs/iasp/samples/html/aspsrc/tropicsjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/tropicsvb.htm
${IASP}/docs/iasp/samples/html/aspsrc/viewmailjs.htm
${IASP}/docs/iasp/samples/html/aspsrc/viewmailvb.htm
${IASP}/docs/iasp/samples/html/authorsjs.htm
${IASP}/docs/iasp/samples/html/authorsvb.htm
${IASP}/docs/iasp/samples/html/createobjjs.htm
${IASP}/docs/iasp/samples/html/createobjvb.htm
${IASP}/docs/iasp/samples/html/dbinfojs.htm
${IASP}/docs/iasp/samples/html/dbinfovb.htm
${IASP}/docs/iasp/samples/html/email.htm
${IASP}/docs/iasp/samples/html/employee.htm
${IASP}/docs/iasp/samples/html/fileiojs.htm
${IASP}/docs/iasp/samples/html/fileiovb.htm
${IASP}/docs/iasp/samples/html/general.htm
${IASP}/docs/iasp/samples/html/international.htm
${IASP}/docs/iasp/samples/html/internationalrun.htm
${IASP}/docs/iasp/samples/html/internationalview.htm
${IASP}/docs/iasp/samples/html/login.htm
${IASP}/docs/iasp/samples/html/loginvb.htm
${IASP}/docs/iasp/samples/html/multiscrollingjs.htm
${IASP}/docs/iasp/samples/html/multiscrollingvb.htm
${IASP}/docs/iasp/samples/html/overview/adoquery.htm
${IASP}/docs/iasp/samples/html/overview/adotest.htm
${IASP}/docs/iasp/samples/html/overview/adrotator.htm
${IASP}/docs/iasp/samples/html/overview/animate.htm
${IASP}/docs/iasp/samples/html/overview/cdo.htm
${IASP}/docs/iasp/samples/html/overview/createjar.htm
${IASP}/docs/iasp/samples/html/overview/createobj.htm
${IASP}/docs/iasp/samples/html/overview/dbcfg.htm
${IASP}/docs/iasp/samples/html/overview/demonative.htm
${IASP}/docs/iasp/samples/html/overview/email.htm
${IASP}/docs/iasp/samples/html/overview/employee.htm
${IASP}/docs/iasp/samples/html/overview/fileio.htm
${IASP}/docs/iasp/samples/html/overview/form.htm
${IASP}/docs/iasp/samples/html/overview/helloworld.htm
${IASP}/docs/iasp/samples/html/overview/image/authors1.gif
${IASP}/docs/iasp/samples/html/overview/image/authors2.gif
${IASP}/docs/iasp/samples/html/overview/international.htm
${IASP}/docs/iasp/samples/html/overview/login.htm
${IASP}/docs/iasp/samples/html/overview/process.htm
${IASP}/docs/iasp/samples/html/overview/server.htm
${IASP}/docs/iasp/samples/html/overview/studentreg.htm
${IASP}/docs/iasp/samples/html/overview/tropics.htm
${IASP}/docs/iasp/samples/html/publishersjs.htm
${IASP}/docs/iasp/samples/html/publishersvb.htm
${IASP}/docs/iasp/samples/html/studentjs.htm
${IASP}/docs/iasp/samples/html/studentvb.htm
${IASP}/docs/iasp/samples/html/viewcode.asp
${IASP}/docs/iasp/samples/html/webaccessjs.htm
${IASP}/docs/iasp/samples/html/webaccessvb.htm
${IASP}/docs/iasp/samples/jscript/ado/adojavas.inc
${IASP}/docs/iasp/samples/jscript/ado/animals/animals.asp
${IASP}/docs/iasp/samples/jscript/ado/animals/default.htm
${IASP}/docs/iasp/samples/jscript/ado/animals/gif.asp
${IASP}/docs/iasp/samples/jscript/ado/animals/head.html
${IASP}/docs/iasp/samples/jscript/ado/animals/main.asp
${IASP}/docs/iasp/samples/jscript/ado/animals/register.asp
${IASP}/docs/iasp/samples/jscript/ado/animals/selectdb.asp
${IASP}/docs/iasp/samples/jscript/ado/authors/authors.asp
${IASP}/docs/iasp/samples/jscript/ado/authors/default.asp
${IASP}/docs/iasp/samples/jscript/ado/dbinfo/dbinfo.asp
${IASP}/docs/iasp/samples/jscript/ado/dbinfo/default.asp
${IASP}/docs/iasp/samples/jscript/ado/gif/boa.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/crit.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/duke.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/fish.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/houscat.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/jach.gif
${IASP}/docs/iasp/samples/jscript/ado/gif/ocelot.gif
${IASP}/docs/iasp/samples/jscript/ado/multiscrolling/default.asp
${IASP}/docs/iasp/samples/jscript/ado/multiscrolling/multiscrolling.asp
${IASP}/docs/iasp/samples/jscript/ado/publishers/default.asp
${IASP}/docs/iasp/samples/jscript/ado/publishers/publishers.asp
${IASP}/docs/iasp/samples/jscript/ado/studentreg/arcbul1a.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/arcbul2a.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/arcbul3a.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/arcsepd.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/arctile.jpg
${IASP}/docs/iasp/samples/jscript/ado/studentreg/bs00877a.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/display.asp
${IASP}/docs/iasp/samples/jscript/ado/studentreg/pe01644a.gif
${IASP}/docs/iasp/samples/jscript/ado/studentreg/register.asp
${IASP}/docs/iasp/samples/jscript/ado/studentreg/student.html
${IASP}/docs/iasp/samples/jscript/ado/studentreg/studentindex.html
${IASP}/docs/iasp/samples/jscript/ado/webaccess/blank.asp
${IASP}/docs/iasp/samples/jscript/ado/webaccess/default.htm
${IASP}/docs/iasp/samples/jscript/ado/webaccess/designtb.asp
${IASP}/docs/iasp/samples/jscript/ado/webaccess/newtb.asp
${IASP}/docs/iasp/samples/jscript/ado/webaccess/open.asp
${IASP}/docs/iasp/samples/jscript/ado/webaccess/opencnn.asp
${IASP}/docs/iasp/samples/jscript/ado/webaccess/opentb.asp
${IASP}/docs/iasp/samples/jscript/email/email.asp
${IASP}/docs/iasp/samples/jscript/email/logo.gif
${IASP}/docs/iasp/samples/jscript/email/newmail.asp
${IASP}/docs/iasp/samples/jscript/email/newmail.html
${IASP}/docs/iasp/samples/jscript/email/opt.asp
${IASP}/docs/iasp/samples/jscript/email/viewmail.asp
${IASP}/docs/iasp/samples/jscript/general/adrotator/ad.asp
${IASP}/docs/iasp/samples/jscript/general/adrotator/adrot2.txt
${IASP}/docs/iasp/samples/jscript/general/adrotator/building.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/halcyon.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/hc_bird.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/klg.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/netscape.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/npps_tall_ani.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/protoview.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/redirect.asp
${IASP}/docs/iasp/samples/jscript/general/adrotator/rjax.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/sun.gif
${IASP}/docs/iasp/samples/jscript/general/adrotator/surprise.gif
${IASP}/docs/iasp/samples/jscript/general/animate/bayshore.asp
${IASP}/docs/iasp/samples/jscript/general/animate/natpark.gif
${IASP}/docs/iasp/samples/jscript/general/animate/nyc.gif
${IASP}/docs/iasp/samples/jscript/general/animate/nzealand.gif
${IASP}/docs/iasp/samples/jscript/general/animate/rock.gif
${IASP}/docs/iasp/samples/jscript/general/animate/rotate4.html
${IASP}/docs/iasp/samples/jscript/general/animate/swirl.gif
${IASP}/docs/iasp/samples/jscript/general/createjar/createjar.asp
${IASP}/docs/iasp/samples/jscript/general/createjar/foo.jar
${IASP}/docs/iasp/samples/jscript/general/createobj/bean.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/beanparam.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/buttons.jar
${IASP}/docs/iasp/samples/jscript/general/createobj/class.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/classparam.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/default.htm
${IASP}/docs/iasp/samples/jscript/general/createobj/democreateobject.java
${IASP}/docs/iasp/samples/jscript/general/createobj/democreateobjectbeaninfo.java
${IASP}/docs/iasp/samples/jscript/general/createobj/jar.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/jarbean.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/jarbeanparam.asp
${IASP}/docs/iasp/samples/jscript/general/createobj/logo.gif
${IASP}/docs/iasp/samples/jscript/general/createobj/readme.txt
${IASP}/docs/iasp/samples/jscript/general/fileio/createfile.asp
${IASP}/docs/iasp/samples/jscript/general/fileio/default.htm
${IASP}/docs/iasp/samples/jscript/general/fileio/info.asp
${IASP}/docs/iasp/samples/jscript/general/fileio/infofolder.asp
${IASP}/docs/iasp/samples/jscript/general/fileio/openfile.asp
${IASP}/docs/iasp/samples/jscript/general/fileio/operate.asp
${IASP}/docs/iasp/samples/jscript/general/fileio/test.txt
${IASP}/docs/iasp/samples/jscript/general/form/form.asp
${IASP}/docs/iasp/samples/jscript/general/helloworld/helloworld.asp
${IASP}/docs/iasp/samples/jscript/general/process/hsdemo.dll
${IASP}/docs/iasp/samples/jscript/general/process/proc.asp
${IASP}/docs/iasp/samples/jscript/general/process/proc.java
${IASP}/docs/iasp/samples/jscript/general/process/procasp.dll
${IASP}/docs/iasp/samples/jscript/general/process/process.htm
${IASP}/docs/iasp/samples/jscript/general/server/server.asp
${IASP}/docs/iasp/samples/jscript/general/tropics/arubaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/arubainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/arubamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/ashmoreflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/ashmoreinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/ashmoremap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/attrib.java
${IASP}/docs/iasp/samples/jscript/general/tropics/australiaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/australiainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/australiamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bahamasflag.fi.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bahamasflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bahamasinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/bahamasmap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bakerflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bakerinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/bakermap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/barbadosflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/barbadosinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/barbadosmap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/barbudaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/barbudainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/barbudamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bermudaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/bermudainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/bermudamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/britishvirginflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/britishvirgininfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/britishvirginmap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/cookflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/cookinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/cookmap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/coralseaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/coralseainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/coralseamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/dolphin.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/fijiflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/fijiinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/fijimap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/jamaicaflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/jamaicainfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/jamaicamap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/macauflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/macauinfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/macaumap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/pspbrwse.jbf
${IASP}/docs/iasp/samples/jscript/general/tropics/scuba.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/solomonflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/solomoninfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/solomonmap.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/tropics.asp
${IASP}/docs/iasp/samples/jscript/general/tropics/tropics.htm
${IASP}/docs/iasp/samples/jscript/general/tropics/virginflag.gif
${IASP}/docs/iasp/samples/jscript/general/tropics/virgininfo.txt
${IASP}/docs/iasp/samples/jscript/general/tropics/virginmap.gif
${IASP}/docs/iasp/samples/vbscript/ado/adoquery/ado/adovbs.inc
${IASP}/docs/iasp/samples/vbscript/ado/adoquery/adoquery.asp
${IASP}/docs/iasp/samples/vbscript/ado/adotest/Global.asa
${IASP}/docs/iasp/samples/vbscript/ado/adotest/adotest.asp
${IASP}/docs/iasp/samples/vbscript/ado/adovbs.inc
${IASP}/docs/iasp/samples/vbscript/ado/animals/animals.asp
${IASP}/docs/iasp/samples/vbscript/ado/animals/default.htm
${IASP}/docs/iasp/samples/vbscript/ado/animals/gif.asp
${IASP}/docs/iasp/samples/vbscript/ado/animals/head.html
${IASP}/docs/iasp/samples/vbscript/ado/animals/main.asp
${IASP}/docs/iasp/samples/vbscript/ado/animals/register.asp
${IASP}/docs/iasp/samples/vbscript/ado/animals/selectdb.asp
${IASP}/docs/iasp/samples/vbscript/ado/authors/authors.asp
${IASP}/docs/iasp/samples/vbscript/ado/authors/default.asp
${IASP}/docs/iasp/samples/vbscript/ado/dbinfo/dbinfo.asp
${IASP}/docs/iasp/samples/vbscript/ado/dbinfo/default.asp
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/arcbul1a.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/arcbul2a.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/arcbul3a.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/arcsepd.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/arctile.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/bs00877a.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/default.htm
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/display.asp
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/employee.asp
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/employee.html
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/pe01644a.gif
${IASP}/docs/iasp/samples/vbscript/ado/employeereg/register.asp
${IASP}/docs/iasp/samples/vbscript/ado/gif/boa.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/crit.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/duke.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/fish.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/houscat.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/jach.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/ocelot.gif
${IASP}/docs/iasp/samples/vbscript/ado/gif/tiger.gif
${IASP}/docs/iasp/samples/vbscript/ado/multiscrolling/default.asp
${IASP}/docs/iasp/samples/vbscript/ado/multiscrolling/multiscrolling.asp
${IASP}/docs/iasp/samples/vbscript/ado/publishers/default.asp
${IASP}/docs/iasp/samples/vbscript/ado/publishers/publishers.asp
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/arcbul1a.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/arcbul2a.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/arcbul3a.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/arcsepd.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/arctile.jpg
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/bs00877a.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/display.asp
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/pe01644a.gif
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/register.asp
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/student.html
${IASP}/docs/iasp/samples/vbscript/ado/studentreg/studentindex.html
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/blank.asp
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/default.htm
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/designtb.asp
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/newtb.asp
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/open.asp
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/opencnn.asp
${IASP}/docs/iasp/samples/vbscript/ado/webaccess/opentb.asp
${IASP}/docs/iasp/samples/vbscript/email/email.asp
${IASP}/docs/iasp/samples/vbscript/email/logo.gif
${IASP}/docs/iasp/samples/vbscript/email/newmail.asp
${IASP}/docs/iasp/samples/vbscript/email/newmail.html
${IASP}/docs/iasp/samples/vbscript/email/opt.asp
${IASP}/docs/iasp/samples/vbscript/email/viewmail.asp
${IASP}/docs/iasp/samples/vbscript/general/adrotator/ad.asp
${IASP}/docs/iasp/samples/vbscript/general/adrotator/adrot2.txt
${IASP}/docs/iasp/samples/vbscript/general/adrotator/building.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/halcyon.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/hc_bird.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/klg.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/netscape.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/npps_tall_ani.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/protoview.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/redirect.asp
${IASP}/docs/iasp/samples/vbscript/general/adrotator/rjax.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/sun.gif
${IASP}/docs/iasp/samples/vbscript/general/adrotator/surprise.gif
${IASP}/docs/iasp/samples/vbscript/general/animate/bayshore.asp
${IASP}/docs/iasp/samples/vbscript/general/animate/natpark.gif
${IASP}/docs/iasp/samples/vbscript/general/animate/nyc.gif
${IASP}/docs/iasp/samples/vbscript/general/animate/nzealand.gif
${IASP}/docs/iasp/samples/vbscript/general/animate/rock.gif
${IASP}/docs/iasp/samples/vbscript/general/animate/rotate4.html
${IASP}/docs/iasp/samples/vbscript/general/animate/swirl.gif
${IASP}/docs/iasp/samples/vbscript/general/createjar/createjar.asp
${IASP}/docs/iasp/samples/vbscript/general/createjar/foo.jar
${IASP}/docs/iasp/samples/vbscript/general/createobj/bean.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/beanparam.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/buttons.jar
${IASP}/docs/iasp/samples/vbscript/general/createobj/class.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/classparam.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/default.htm
${IASP}/docs/iasp/samples/vbscript/general/createobj/democreateobject.java
${IASP}/docs/iasp/samples/vbscript/general/createobj/democreateobjectbeaninfo.java
${IASP}/docs/iasp/samples/vbscript/general/createobj/jar.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/jarbean.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/jarbeanparam.asp
${IASP}/docs/iasp/samples/vbscript/general/createobj/logo.gif
${IASP}/docs/iasp/samples/vbscript/general/createobj/readme.txt
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.asp
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.c
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.class
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.dll
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.dsp
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.dsw
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.h
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.java
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.ncb
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.opt
${IASP}/docs/iasp/samples/vbscript/general/demonative/demonative.plg
${IASP}/docs/iasp/samples/vbscript/general/demonative/mssccprj.scc
${IASP}/docs/iasp/samples/vbscript/general/fileio/createfile.asp
${IASP}/docs/iasp/samples/vbscript/general/fileio/default.htm
${IASP}/docs/iasp/samples/vbscript/general/fileio/info.asp
${IASP}/docs/iasp/samples/vbscript/general/fileio/infofolder.asp
${IASP}/docs/iasp/samples/vbscript/general/fileio/logo.gif
${IASP}/docs/iasp/samples/vbscript/general/fileio/openfile.asp
${IASP}/docs/iasp/samples/vbscript/general/fileio/operate.asp
${IASP}/docs/iasp/samples/vbscript/general/fileio/readme.txt
${IASP}/docs/iasp/samples/vbscript/general/fileio/test.txt
${IASP}/docs/iasp/samples/vbscript/general/form/form.asp
${IASP}/docs/iasp/samples/vbscript/general/helloworld/helloworld.asp
${IASP}/docs/iasp/samples/vbscript/general/process/hsdemo.dll
${IASP}/docs/iasp/samples/vbscript/general/process/proc.asp
${IASP}/docs/iasp/samples/vbscript/general/process/proc.java
${IASP}/docs/iasp/samples/vbscript/general/process/procasp.dll
${IASP}/docs/iasp/samples/vbscript/general/process/process.htm
${IASP}/docs/iasp/samples/vbscript/general/server/server.asp
${IASP}/docs/iasp/samples/vbscript/general/tropics/arubaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/arubainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/arubamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/ashmoreflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/ashmoreinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/ashmoremap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/attrib.java
${IASP}/docs/iasp/samples/vbscript/general/tropics/australiaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/australiainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/australiamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bahamasflag.fi.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bahamasflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bahamasinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/bahamasmap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bakerflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bakerinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/bakermap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbadosflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbadosinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbadosmap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbudaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbudainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/barbudamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bermudaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/bermudainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/bermudamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/britishvirginflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/britishvirgininfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/britishvirginmap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/cookflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/cookinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/cookmap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/coralseaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/coralseainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/coralseamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/dolphin.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/fijiflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/fijiinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/fijimap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/jamaicaflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/jamaicainfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/jamaicamap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/macauflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/macauinfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/macaumap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/pspbrwse.jbf
${IASP}/docs/iasp/samples/vbscript/general/tropics/scuba.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/solomonflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/solomoninfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/solomonmap.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/tropics.asp
${IASP}/docs/iasp/samples/vbscript/general/tropics/tropics.htm
${IASP}/docs/iasp/samples/vbscript/general/tropics/virginflag.gif
${IASP}/docs/iasp/samples/vbscript/general/tropics/virgininfo.txt
${IASP}/docs/iasp/samples/vbscript/general/tropics/virginmap.gif
${IASP}/docs/iasp/samples/vbscript/international/americandatetime.asp
${IASP}/docs/iasp/samples/vbscript/international/americannumber.asp
${IASP}/docs/iasp/samples/vbscript/international/chinadatetime.asp
${IASP}/docs/iasp/samples/vbscript/international/chinanumber.asp
${IASP}/docs/iasp/samples/vbscript/international/currency.asp
${IASP}/docs/iasp/samples/vbscript/international/datetime.asp
${IASP}/docs/iasp/samples/vbscript/international/stringformat.asp
${IASP}/docs/iasp/samples/vbscript/login/index.htm
${IASP}/docs/iasp/samples/vbscript/login/login.asp
${IASP}/docs/iasp/samples/vbscript/login/nwauthentication.java
${IASP}/docs/iasp/support/access.htm
${IASP}/docs/iasp/support/ado.htm
${IASP}/docs/iasp/support/asp3.htm
${IASP}/docs/iasp/support/builtinobj.htm
${IASP}/docs/iasp/support/cloudscape.htm
${IASP}/docs/iasp/support/engine.htm
${IASP}/docs/iasp/support/generic.htm
${IASP}/docs/iasp/support/iasp_comp.htm
${IASP}/docs/iasp/support/informix.htm
${IASP}/docs/iasp/support/instcomp.htm
${IASP}/docs/iasp/support/jdbc/access.htm
${IASP}/docs/iasp/support/jdbc/cloud.htm
${IASP}/docs/iasp/support/jdbc/informix.htm
${IASP}/docs/iasp/support/jdbc/jdbcdrivers.htm
${IASP}/docs/iasp/support/jdbc/mysql.htm
${IASP}/docs/iasp/support/jdbc/oracle.htm
${IASP}/docs/iasp/support/jdbc/postgres.htm
${IASP}/docs/iasp/support/jdbc/sql.htm
${IASP}/docs/iasp/support/jdbc/sybase.htm
${IASP}/docs/iasp/support/jdkver.htm
${IASP}/docs/iasp/support/keywords.htm
${IASP}/docs/iasp/support/main.htm
${IASP}/docs/iasp/support/mysql.htm
${IASP}/docs/iasp/support/oracle.htm
${IASP}/docs/iasp/support/precompiler.htm
${IASP}/docs/iasp/support/server.htm
${IASP}/docs/iasp/support/sql.htm
${IASP}/docs/iasp/support/sybase.htm
${IASP}/docs/index.htm
${IASP}/docs/install.htm
${IASP}/docs/overview.htm
${IASP}/docs/relnotes.htm
${IASP}/docs/samples.htm
${IASP}/docs/style.css
${IASP}/docs/usingiasp.htm
${IASP}/iasp-classpath.conf
${IASP}/iasp-common.conf
${IASP}/icon/adminstart.ico
${IASP}/icon/adminstop.ico
${IASP}/icon/iaspstart.ico
${IASP}/icon/iaspstop.ico
${IASP}/icon/iservice.ico
${IASP}/icon/uservice.ico
${IASP}/icon/wizard.ico
${IASP}/index.htm
${IASP}/index.html
${IASP}/lib/activation.jar
${IASP}/lib/asp2j.jar
${IASP}/lib/balance.jar
${IASP}/lib/ejbcorba.jar
${IASP}/lib/hado.jar
${IASP}/lib/iasp_chart.jar
${IASP}/lib/iasp_exec.jar
${IASP}/lib/iasp_fileup.jar
${IASP}/lib/iasp_grid.jar
${IASP}/lib/iasp_http.jar
${IASP}/lib/iasp_image.jar
${IASP}/lib/iasp_inet.jar
${IASP}/lib/iasp_mail.jar
${IASP}/lib/iasp_nntp.jar
${IASP}/lib/iasp_pop3.jar
${IASP}/lib/iasp_sock.jar
${IASP}/lib/iasp_upload.jar
${IASP}/lib/iasp_xmldom.jar
${IASP}/lib/iasplib.jar
${IASP}/lib/jndi.jar
${IASP}/lib/jsdk.jar
${IASP}/lib/mail.jar
${IASP}/lib/pop3.jar
${IASP}/lib/rjax.jar
${IASP}/lib/rjaxADODB.jar
${IASP}/lib/samples.jar
${IASP}/mod_iasp.conf
${IASP}/properties/ODBC.INI
${IASP}/properties/browscap.ini
${IASP}/properties/cdonts.properties.default
${IASP}/properties/dbserver.properties.default
${IASP}/properties/ejb.properties.default
${IASP}/properties/loadbalance.properties.default
${IASP}/properties/msmq.properties.default
${IASP}/properties/rules.properties.default
${IASP}/properties/security.properties.default
${IASP}/properties/server.properties.default
${IASP}/properties/servlets.properties.default
${IASP}/servlets/Counter.java
${IASP}/servlets/DateServlet.java
${IASP}/servlets/EchoServlet.java
${IASP}/servlets/FileUploadServlet.java
${IASP}/servlets/GifUploadServlet.java
${IASP}/servlets/HelloWorldServlet.java
${IASP}/servlets/InlineServlet.java
${IASP}/servlets/KeepAliveServlet.java
${IASP}/servlets/MailServlet.java
${IASP}/servlets/NullServlet.java
${IASP}/servlets/PhoneServlet.java
${IASP}/servlets/ProtectedServlet.java
${IASP}/servlets/RedirectLoadBalServlet.java
${IASP}/servlets/RedirectServlet.java
${IASP}/servlets/ReleaseFormServlet.java
${IASP}/servlets/SessionServlet.java
${IASP}/servlets/SimpleFormServlet.java
${IASP}/servlets/SimpleServlet.java
${IASP}/servlets/SnoopServlet.java
${IASP}/servlets/UpperCaseFilter.java
${IASP}/servlets/phonelist
${IASP}/start-admin.sh
${IASP}/start-server.sh
${IASP}/stop-admin.sh
${IASP}/stop-server.sh
share/examples/rc.d/iasp
share/examples/rc.d/iasp_admin
@dirrm ${IASP}/servlets
@dirrm ${IASP}/properties
@dirrm ${IASP}/lib
@dirrm ${IASP}/icon
@dirrm ${IASP}/docs/iasp/support/jdbc
@dirrm ${IASP}/docs/iasp/support
@dirrm ${IASP}/docs/iasp/samples/vbscript/login
@dirrm ${IASP}/docs/iasp/samples/vbscript/international
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/tropics
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/server
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/process
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/helloworld
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/form
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/fileio
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/demonative
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/createobj
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/createjar
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/animate
@dirrm ${IASP}/docs/iasp/samples/vbscript/general/adrotator
@dirrm ${IASP}/docs/iasp/samples/vbscript/general
@dirrm ${IASP}/docs/iasp/samples/vbscript/email
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/webaccess
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/studentreg
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/publishers
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/multiscrolling
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/gif
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/employeereg
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/dbinfo
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/authors
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/animals
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/adotest
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/adoquery/ado
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado/adoquery
@dirrm ${IASP}/docs/iasp/samples/vbscript/ado
@dirrm ${IASP}/docs/iasp/samples/vbscript
@dirrm ${IASP}/docs/iasp/samples/jscript/general/tropics
@dirrm ${IASP}/docs/iasp/samples/jscript/general/server
@dirrm ${IASP}/docs/iasp/samples/jscript/general/process
@dirrm ${IASP}/docs/iasp/samples/jscript/general/helloworld
@dirrm ${IASP}/docs/iasp/samples/jscript/general/form
@dirrm ${IASP}/docs/iasp/samples/jscript/general/fileio
@dirrm ${IASP}/docs/iasp/samples/jscript/general/createobj
@dirrm ${IASP}/docs/iasp/samples/jscript/general/createjar
@dirrm ${IASP}/docs/iasp/samples/jscript/general/animate
@dirrm ${IASP}/docs/iasp/samples/jscript/general/adrotator
@dirrm ${IASP}/docs/iasp/samples/jscript/general
@dirrm ${IASP}/docs/iasp/samples/jscript/email
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/webaccess
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/studentreg
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/publishers
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/multiscrolling
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/gif
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/dbinfo
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/authors
@dirrm ${IASP}/docs/iasp/samples/jscript/ado/animals
@dirrm ${IASP}/docs/iasp/samples/jscript/ado
@dirrm ${IASP}/docs/iasp/samples/jscript
@dirrm ${IASP}/docs/iasp/samples/html/overview/image
@dirrm ${IASP}/docs/iasp/samples/html/overview
@dirrm ${IASP}/docs/iasp/samples/html/aspsrc
@dirrm ${IASP}/docs/iasp/samples/html
@dirrm ${IASP}/docs/iasp/samples/database/vbscript
@dirrm ${IASP}/docs/iasp/samples/database/CloudscapeDB/seg0
@dirrm ${IASP}/docs/iasp/samples/database/CloudscapeDB/log
@dirrm ${IASP}/docs/iasp/samples/database/CloudscapeDB
@dirrm ${IASP}/docs/iasp/samples/database
@dirrm ${IASP}/docs/iasp/samples
@comment Remove any auto-generated images.
@unexec ${RM} -f %D/${IASP}/docs/iasp/images/*.gif
@dirrm ${IASP}/docs/iasp/images
@dirrm ${IASP}/docs/iasp/features/image
@dirrm ${IASP}/docs/iasp/features
@dirrm ${IASP}/docs/iasp/faq
@dirrm ${IASP}/docs/iasp/config/images
@dirrm ${IASP}/docs/iasp/config
@dirrm ${IASP}/docs/iasp
@dirrm ${IASP}/docs/addons/components/iaspxmldom
@dirrm ${IASP}/docs/addons/components/iaspupload
@dirrm ${IASP}/docs/addons/components/iaspsock
@dirrm ${IASP}/docs/addons/components/iasppop3
@dirrm ${IASP}/docs/addons/components/iaspnntp
@dirrm ${IASP}/docs/addons/components/iaspmail
@dirrm ${IASP}/docs/addons/components/iaspinet
@dirrm ${IASP}/docs/addons/components/iaspimage
@dirrm ${IASP}/docs/addons/components/iasphttp
@dirrm ${IASP}/docs/addons/components/iaspgrid/samples/database
@dirrm ${IASP}/docs/addons/components/iaspgrid/samples
@dirrm ${IASP}/docs/addons/components/iaspgrid
@dirrm ${IASP}/docs/addons/components/iaspfileup
@dirrm ${IASP}/docs/addons/components/iaspexec
@dirrm ${IASP}/docs/addons/components/iaspchart
@dirrm ${IASP}/docs/addons/components
@dirrm ${IASP}/docs/addons/asp2java
@dirrm ${IASP}/docs/addons
@dirrm ${IASP}/docs
@dirrm ${IASP}/admin/images
@dirrm ${IASP}/admin/docs/features/image
@dirrm ${IASP}/admin/docs/features
@dirrm ${IASP}/admin/docs
@dirrm ${IASP}/admin
@dirrm ${IASP}/WEB-INF