Modifying Application Object variables in ASP.Net

  • Thread starter Thread starter Brian Bender
  • Start date Start date
B

Brian Bender

I have a static class in my VB.Net ASP app. In this class I want to
modify application object variables. What do I need to reference in
order for this class to see the application object?

Thanks,

Brian Bender

www.brianbender.com
 
Hi Brian,

Why don't do the opposite? Keeping the variables on this static class may be
a better idea that keep them on the Application . If you change the UI to a
windows app. for example you would have to change the code of the static
class, but if you keep the variables on a static class it needs not to
change.

Hope this help,
 
Back
Top