Ask a Question related to ASP, Design and Development.
-
mark4asp #1
Global variables - application variables vs include file
What are the best methods for using global constants and variables?
I've noticed that many people put all global constants in a file and
include that file on every page. This is the best way of doing it - is
it not? Once the application has loaded the page it is cached and is
immediately available for other pages.
With global variables - the best thing to do would be to use
application variables - so long as there weren't too many declared.
Is there another (easy) way of using global variables apart from using
application variables?
mark4asp Guest
-
Global Variables
I would like to know the preferred way in which to define, store, and retrieve global varialbes in asp.net applications. I have read through past... -
Global variables in AS3
The documentation for AS3 tells me that a variable set as 'public' will be available everywhere. If I set public var myvar:String; at the top of... -
Global Variables and scope
Ok, I'm creating a fairly large RIA using many components set on a page. They all share a common list. It is a Project list that is displayed in a... -
Global Variables problem
Hi there.. i know this is a very newb question, but any way... need to know something. I had declared a global variable this way: on... -
How can I see global variables with ProjectBuilder
Loris Cecchinelli wrote: Menu->Debug->Expressions->varl. -
CJM #2
Re: Global variables - application variables vs include file
Yes, Application variables are a good use for global variables. And yes, too
many application variable can eventually have an impact on the server, so
you must be reasonable.
Things like connection strings, paths and other CONSTANTS are ideal fodder
for application variables. So are VARIABLES that need to be available to all
users (ie. across all sessions), eg. a Hit-Count.
However, I'd query what you mean by 'global variables'. You could be meaning
a variable that is 'global' for one user/one session. In this case, Session
variables might be in order.
To take this argument further, you might choose to avoid session variables
(because they can have a hit on the server), in which case you can use DBs
and Querystrings to maintain state.
I hope this all makes some sense...! lol
Chris
"mark4asp" <mark4asp#killspam#@ntlworld.com> wrote in message
news:5ucblv411c2iv3u5tak931u0l1n4uc5so7@4ax.com...> What are the best methods for using global constants and variables?
>
> I've noticed that many people put all global constants in a file and
> include that file on every page. This is the best way of doing it - is
> it not? Once the application has loaded the page it is cached and is
> immediately available for other pages.
>
> With global variables - the best thing to do would be to use
> application variables - so long as there weren't too many declared.
> Is there another (easy) way of using global variables apart from using
> application variables?
>
CJM Guest



Reply With Quote

