Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

declaring an array in application_onstart

Status
Not open for further replies.

maxpower1

Programmer
Joined
Jul 29, 2001
Messages
488
Location
US
how do you declare an array in Application_OnStart in global.asa?

Application_OnStart() {
var x = new Array(20);

Application("UserArray") = x;

}

I used the above syntax and it says it does not conform with the apartment model???

thanks

 
I think that refers to apartment threading...

Dim Application("aryName")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top