473,698 Members | 2,221 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Caching some Parts of a Page on the Client ?


Is it Possible to Cache Pictures JPG/BMP on the Client Browser ?

The other Elements of the Page should not being cached because they change.

Is it possible to cache parts of a page on the Client but not the whole
page
Nov 18 '05 #1
4 1383
yeap its certainly possible.
All you have to do is put the parts you want to user control.... and use
outputcache directive
you do also have options to specify where the control is cached.... you can
have it as server or client...

look up
http://msdn.microsoft.com/library/de...utputCache.asp

HTH

--
Regards,

HD

"Captain Chaos" <no****@nospam. com> wrote in message
news:bt******** *****@news.t-online.com...

Is it Possible to Cache Pictures JPG/BMP on the Client Browser ?

The other Elements of the Page should not being cached because they change.
Is it possible to cache parts of a page on the Client but not the whole
page

Nov 18 '05 #2
You need Partial-Page Output Caching, or page fragment caching, allows
specific regions of pages to be cached.

"Captain Chaos" <no****@nospam. com> wrote in message news:<bt******* ******@news.t-online.com>...
Is it Possible to Cache Pictures JPG/BMP on the Client Browser ?

The other Elements of the Page should not being cached because they change.

Is it possible to cache parts of a page on the Client but not the whole
page

Nov 18 '05 #3
Thanx for the hint :-)

I have tried it but I think there is only a Server Side caching for these
Partoial thing.

Only some Pictures should be cached on the Client (not on the server)

Or I am doing it wrong.......

I can't see any HTML Statements/META Tags in the HTML Code of the Client
Browser.

How to do it with HTML and without UserControls ?

"Will" <sa******@yahoo .com> schrieb im Newsbeitrag
news:66******** *************** ***@posting.goo gle.com...
You need Partial-Page Output Caching, or page fragment caching, allows
specific regions of pages to be cached.

"Captain Chaos" <no****@nospam. com> wrote in message

news:<bt******* ******@news.t-online.com>...
Is it Possible to Cache Pictures JPG/BMP on the Client Browser ?

The other Elements of the Page should not being cached because they change.
Is it possible to cache parts of a page on the Client but not the whole
page

Nov 18 '05 #4
Everything in a Page is cached on the client, by downloading it to the
Temporary Internet Files folder. Some types of pages, such as ASP pages, may
not be cached because they are dynamic, and headers sent to a browser may
prevent caching of other objects, such as pictures, but by default these are
cached on the client, and only retrieved from the server if they have been
updated on the server.

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

"Captain Chaos" <no****@nospam. com> wrote in message
news:bt******** *****@news.t-online.com...
Thanx for the hint :-)

I have tried it but I think there is only a Server Side caching for these
Partoial thing.

Only some Pictures should be cached on the Client (not on the server)

Or I am doing it wrong.......

I can't see any HTML Statements/META Tags in the HTML Code of the Client
Browser.

How to do it with HTML and without UserControls ?

"Will" <sa******@yahoo .com> schrieb im Newsbeitrag
news:66******** *************** ***@posting.goo gle.com...
You need Partial-Page Output Caching, or page fragment caching, allows
specific regions of pages to be cached.

"Captain Chaos" <no****@nospam. com> wrote in message

news:<bt******* ******@news.t-online.com>...
Is it Possible to Cache Pictures JPG/BMP on the Client Browser ?

The other Elements of the Page should not being cached because they change.
Is it possible to cache parts of a page on the Client but not the whole page


Nov 18 '05 #5

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

Similar topics

9
2205
by: Cyrus D. | last post by:
Hi guys, Let's say I have a page that is primarily HTML but I added a few small parts that are PHP, for example a random banner. The page is in no way PHP driven, it just has some some random stuff like the banner and/or a tip of the day. What bothers me is that the PHP page won't be cached, so if the page has a lot of links and, on average, the user clicks ten links (hitting the back button after he does that) my bandwidth usage...
6
1914
by: Hypo | last post by:
Im relatilvly new to a web programming in general, and here's the situation i have: I have a default page with dynamic content, and one button with onclick code something like this: { // do some processing... Serever.Transfer("second_page.aspx"); // or Response.Redirect("second_page.aspx"); same in
0
2133
by: Martin | last post by:
Hi. I had a very frustrating afternoon and evening but I have got it all under control now so all of a sudden I am in a good mood. I want to share some insights on output caching with you lot. After looking at the use of the OutputCache directive and tinkering with it a bit I found its usability.very limited. Think of it: it is okay for static content. Well that's nice but no big deal. Static content is cheap anyway, the file system...
8
2117
by: Nick Gilbert | last post by:
Hi, Our development web server (Win 2003 Server) seems to be caching the output of various files (CSS and .aspx files) if they have no query string. The moment you put a question mark in the URL, it's fine. The problem is that if you modify a file, it still shows you the old file unless you restart the website or IIS itself. It's definitely not the browser that's caching the files - IIS is actually serving the wrong file.
13
5680
by: Rohit | last post by:
I need to turn off caching in my ASP.NET page. I have set the following code in Page Load event: Response.Cache.SetCacheability(HttpCacheability.NoCache) Still, sometimes the page is retreived from cache. Are there any other options I need to set? TIA Rohit
10
1465
by: BillGatesFan | last post by:
I'm trying to understand ASP.NET caching. I set the Page Output directive to VaryByParams= None and the duration = 60. Now whenever users hit my web app they can see each others data. Is there anyway to cache the page without this happening or am I using Page Output caching in the wrong situation? It's a data entry web app that I'm trying to increase the performance on.
3
2942
by: Purti Malhotra | last post by:
Hi All, In our Web hosting environment we are using Virtual hosting i.e. multiple websites are on one server and multiple domains are pointing to a single website. Issue: We have two domains say “www.Test1.com” and “www.Test2.com” pointing to a single website. Website content is located onto UNCPath i.e. remote location. Domain 1: www.Test1.com points to \\servername\websitefolder\homedirectory
0
1334
by: itfetish | last post by:
We have a web parts intranet at our office here I have been working on. I have been trying to create a way of getting our OCE TDS 600 plotter queue to be a web part on the page, seeing as their is no way of interfacing apart from their 'print exec workgroup' web based program. So I decided to screen scrape, I've done a scrape of the intranet page of print exec workgroup (http://tds600 on our network) seemed to go fine, then i used...
12
2068
by: =?Utf-8?B?RGF2ZQ==?= | last post by:
I'm using ASP.Net with an UpdatePanel. When the screen is exercised via a Web Test, the Web Test shows that the AJAX scripts are downloaded for every partial post back. My impression was that IE would cache these scripts so that the AJAX script download would only occur once. What am I missing?
0
8668
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, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8598
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
9152
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
8855
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
7708
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 projectplanning, coding, testing, and deploymentwithout 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...
1
6515
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4358
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
3037
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
3
1995
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.