need help on application variables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I need help on the usage of application variables...

Can I populate application variables through my console application and use
them
in my web application....

Are application variables specific to web solutions only..

can anyone provide more info on this?
 
In short, application variables are specific to a single web application
only and reside in the application state object for that application. You
would not normally load any application variable from a console application.

The preferred approch would be to use web.config to hold your startup
values, or to populate them via global.asax

Read this for some pointers:

http://www.eggheadcafe.com/articles/20030211.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top