README.md

December 5, 2022 ยท View on GitHub

User-Defined Types in ASP

Description

So far as I have seen, there is no vbscript equivalent of the VB user defined type.

More Info

Submitted On
ByJeffrey Katz
LevelBeginner
User Rating4.0 (8 globes from 2 users)
CompatibilityASP (Active Server Pages), VbScript (browser/client side)

Category |Miscellaneous World |ASP / VbScript Archive File |

Source Code

So far as I have seen, there is no vbscript equivalent of the VB user defined type.
I.E.
<hr>
private type usrInfo
  Name as string
  Address as string
  Phone as string
end type
dim users(999) as usrInfo
<hr>
Anyone with experiance: Is there a way around this?