473,797 Members | 3,204 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Page.Cache vs HttpContext.Cur rent.Cache


What is the difference between Page.Cache and HttpContext.Cur rent.Cache? Do
these access the same thing? Is there any easy way to clear all items in the
cache?

TIA,

Stan
Nov 18 '05 #1
5 3725
They are the same thing.

There is no Clear method for the Cache, so you would have to loop through it
and call Remove on each item to clear it.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"DesignerX" <de********@yah oo-spam-me-not.com> wrote in message
news:6P******** ************@gi ganews.com...

What is the difference between Page.Cache and HttpContext.Cur rent.Cache? Do these access the same thing? Is there any easy way to clear all items in the cache?

TIA,

Stan

Nov 18 '05 #2
I haven't had any luck with the remove method. What will work is something
like the following
Cookie = New HttpCookie("you rcookieidtoremo ve")
Cookie.Values.A dd("yourcookiev alueName,"")
cookie.expires= datetime.now.ad ddays(-5)
HttpContext.Cur rent.Response.C ookies.add(Cook ie)

This method will remove the cookie

"DesignerX" <de********@yah oo-spam-me-not.com> wrote in message
news:6P******** ************@gi ganews.com...

What is the difference between Page.Cache and HttpContext.Cur rent.Cache? Do these access the same thing? Is there any easy way to clear all items in the cache?

TIA,

Stan

Nov 18 '05 #3
vMike wrote:
I haven't had any luck with the remove method. What will work is something
like the following
Cookie = New HttpCookie("you rcookieidtoremo ve")
Cookie.Values.A dd("yourcookiev alueName,"")
cookie.expires= datetime.now.ad ddays(-5)
HttpContext.Cur rent.Response.C ookies.add(Cook ie)

This method will remove the cookie
Cookies have nothing to do with the cache.


"DesignerX" <de********@yah oo-spam-me-not.com> wrote in message
news:6P******** ************@gi ganews.com...
What is the difference between Page.Cache and HttpContext.Cur rent.Cache?


Do
these access the same thing? Is there any easy way to clear all items in


the
cache?

TIA,

Stan


--
mikeb
Nov 18 '05 #4
I don't recall anything in the question about cookies....

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"vMike" <Mi************ ****@noZorY.geZ waYrrenY.com> wrote in message
news:bu******** **@ngspool-d02.news.aol.co m...
I haven't had any luck with the remove method. What will work is something
like the following
Cookie = New HttpCookie("you rcookieidtoremo ve")
Cookie.Values.A dd("yourcookiev alueName,"")
cookie.expires= datetime.now.ad ddays(-5)
HttpContext.Cur rent.Response.C ookies.add(Cook ie)

This method will remove the cookie

"DesignerX" <de********@yah oo-spam-me-not.com> wrote in message
news:6P******** ************@gi ganews.com...

What is the difference between Page.Cache and HttpContext.Cur rent.Cache?

Do
these access the same thing? Is there any easy way to clear all items in

the
cache?

TIA,

Stan


Nov 18 '05 #5
Sorry, you're right. I thought I saw cookie. This will work

dim objItem as DictionaryEntry
dim strName as String

For Each objItem In Cache
strName = objItem.Key.tos tring()
cache.remove(st rName)
Next
"vMike" <Mi************ ****@noZorY.geZ waYrrenY.com> wrote in message
news:bu******** **@ngspool-d02.news.aol.co m...
I haven't had any luck with the remove method. What will work is something
like the following
Cookie = New HttpCookie("you rcookieidtoremo ve")
Cookie.Values.A dd("yourcookiev alueName,"")
cookie.expires= datetime.now.ad ddays(-5)
HttpContext.Cur rent.Response.C ookies.add(Cook ie)

This method will remove the cookie

"DesignerX" <de********@yah oo-spam-me-not.com> wrote in message
news:6P******** ************@gi ganews.com...

What is the difference between Page.Cache and HttpContext.Cur rent.Cache?

Do
these access the same thing? Is there any easy way to clear all items in

the
cache?

TIA,

Stan


Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1586
by: Ryan | last post by:
The real reason for my previous post about intercepting Application_EndRequest (from outside of Global.asax) is because of a need to create a "non persistent page level cache". I can't seem to find an intrinsic property that exposes a Hashtable that gets reset for every page request. If someone knows of such a property, please let me know! Page.Cache is alive through an application domain. ViewState, of course, is persisted between...
3
2432
by: Peter Theill | last post by:
Hi, I'm trying to include the content of a request into an Xml document: if (System.Web.HttpContext.Current.Session != null) { XmlDocument d = new XmlDocument(); d.Load(new XmlTextReader("http://localhost/page.aspx")); } The requested page (page.aspx) is an XHTML page so I'm able to parse it as a
4
1294
by: darrel | last post by:
Karl has helped me in the past in regards to communicating between controls and pages: http://www.openmymind.net/communication/index.html#3.1 I ended up going down the interfaces path and actually got that working fairly well, but, then, in the end, decided that was overkill and that it would perhaps make more sense to start over using a much more simpler communication between pages.
2
1230
by: Mike Orb | last post by:
This is a Framework 1.x question. I'm creating a class that generates HTML element IDs (<foo id='id1'> for example) and need the element IDs to be unique across the page. The reusable class can't access ViewState since it is protected. Note there can be multiple instances of the class rendered on the page. What I need is a way to create an ID that is unique to that page. It does not matter if the IDs that get created the next time thru...
3
2772
by: xzzy | last post by:
A. I need to access: System.Web.HttpContext.Current.Cache but get this error: "Object reference not set to an instance of the object" B. System.Web.HttpContext.Current.Cache is accessible outside of this class.
1
1407
by: =?Utf-8?B?ZGF2ZQ==?= | last post by:
I have an asp.net project with a business layer (project) that has a class called references. It loads up a data set and stores in cache with the following code. _cached = CType(HttpContext.Current.Cache("cached"), String) If HttpContext.Current.Cache("cached") Is Nothing Or _cached <> "loaded" Then MyBase.CreateCommand("SA_GetReferences", _connectionString) _dsReferences = MyBase.ExecDataSet...
1
1006
by: c83 | last post by:
after a user makes FormsAuthentication.SignOut(); Response.Redirect('login.aspx'); it is redirected to the login page. But if in the browser it pushes the Back button the last visited page is shown. i added this in the Global.asax file in the BeginRequest: HttpContext.Current.Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1)); HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache); and even tried adding...
4
11900
by: msch-prv | last post by:
Hello. I am trying to use caching to populate a datalist. The select method of the associated objectdatasource calls up GetRecipePageByRecipeCatID() to request the proper data (I am using custom paging at SQL level so there is a paging idx as well). The code works fine when caching is edited out. Problem. The cache object is only created the first time around. When the dtl ia refreshed, th HttpContext.cache object always returns...
7
2018
by: Andrew Jocelyn | last post by:
Hi I'm running an ASP.NET web application under IIS. I'm inserting a cache object with a file based CacheDependency. I've noticed that when the file changes the Cache object is not always immediately invalidated. e.g. Cache.Insert("myobj", data, new CacheDependency(filePath)); When I make a change to the file 'filePath' and call the object from the cache it is not null. I'm disposing of the FileStream object immediately
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9537
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9066
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4135
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3750
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2934
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.