global vars in ASP.NET

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

Guest

Hi,
I’m desperate to have a solution for this problem. This is a system critical
order entry application and I simply need to have a bunch of global (public)
variables to store information before it gets written to the database. I have
tried public structures defined in a VB module just to latter learn that they
(the strucs) would be static and so available to all users in the network so
a order entered in one computer would be the same in all other computers in
the network …..NOT the effect one would be looking for….What can I do ?

Thanks

C.Fleury
 
So, in fact, you don't want truly global variables. You want variables that
are global to all pages, but unique to each user, right?

Try Session.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
I have tried public structures defined in a VB module just to latter learn
that they
(the strucs) would be static and so available to all users in the network

Funny that - you'd almost think they were global variables... :-)
 
Exactly....That's what I need...

Your name is familiar (apart from this group) !!! Have you done Clipper in
the past ?

Thanks
C.Fleury
 
Your name is familiar (apart from this group) !!! Have you done Clipper in
the past ?

Afraid not, C. My experience is fairly limited to Microsoft products and
development. I DID start out with a Borland C++ compiler, but that was a
decade ago!

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 

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