K
Keith G Hicks
In my windows apps I always set a global development variable so that I can
toggle certain blocks of code back and forth between production and
development settings. I'll run some startup code that sets something like
DevVar = TRUE or DevVar = FALSE and then do this in code where needed:
If DevVar Then
....do something
ELSE
... do something else
END IF
I have no idea where to set something like (web.config, some global vb code
unit???) that in an asp.net 2.0 app and what it would be (session var??).
Looking for any advice.
Thanks,
Keith
toggle certain blocks of code back and forth between production and
development settings. I'll run some startup code that sets something like
DevVar = TRUE or DevVar = FALSE and then do this in code where needed:
If DevVar Then
....do something
ELSE
... do something else
END IF
I have no idea where to set something like (web.config, some global vb code
unit???) that in an asp.net 2.0 app and what it would be (session var??).
Looking for any advice.
Thanks,
Keith