Would it be wise to save some (about 20) variables in the application ?
(like this on Global.asa):
Sub Application_OnStart
Application("Table_BG_Color") = "FFFFFF"
...
End Sub
They will not be changed, so I just want
to avoid including it as a file or
accesing some database
Good or Bad idea ?
(like this on Global.asa):
Sub Application_OnStart
Application("Table_BG_Color") = "FFFFFF"
...
End Sub
They will not be changed, so I just want
to avoid including it as a file or
accesing some database
Good or Bad idea ?
Comment