CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Global Cache

  1. #1
    Join Date
    Apr 2000
    Location
    Dallas, TX
    Posts
    173

    Global Cache

    Is there a way to set up a Global Cache. That is, I have some info in text files that I want updated whenever the files change but I always want it available regardless of whether a page was accessed.

    I set up a public "MyCache" property in my Global.asax base class but I can't figure out how to access it from my aspx classes.

    Preston Park
    CTT+, MCT, MCSD
    http://www.prestonpark.com/

  2. #2
    Join Date
    May 2002
    Posts
    7

    Re: Global Cache

    you can use for example session("user_name") than in every page you use this variable


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured