473,806 Members | 2,605 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 3727
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
2433
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
1298
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
1233
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
1410
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
1007
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
11904
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
2025
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
9719
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
10623
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10371
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10373
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9192
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
5546
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
4330
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
3852
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3010
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.