Search:
Namespaces
Discussions
.NET v1.1
Feedback
ASPAlliance Times: Caching in ASP.NET
Messages
Related Types
This message was discovered on
ASPFriends.com 'aspngcommunity' list
.
aspmagazine@ls.asplists.com (ASPAlliance Times Text)
|
Click here to reveal e-mail address
= YOUR ID
|
http://www.aspalliance.com/subscribe.asp
The ASPAlliance Times
26 April 2002 Issue
This newsletter is never sent unsolicited.
Want to unsubscribe? Want to change from text format to HTML format or vice versa?
Go here:
http://ASPAlliance.com/newsletter/
**********************************************************************
SPONSOR: cyScape, Inc.
** FREE DOWNLOAD - NEW BROWSERHAWK COMPONENT FOR BROWSER COMPATIBILITY **
** FREE DOWNLOAD - DETECT FLASH, CONNECTION SPEED, SCREEN SIZE & MORE **
BrowserHawk 5.03 is here! This component makes it easy to build cross-browser friendly web pages. Easily detect plug-ins, screen and browser window size, *disabled* cookies/JavaScript/ActiveX, DHTML, CSS, XML, SSL key sizes, and DNS lookups. Detects hundreds of browsers, search engines and WAP/i-Mode/PDA devices with 100+ properties. Even provides BROWSER STATISTICS and reports not available anywhere else. Click now for a live demo and your FREE trial!!
http://www.cyscape.com/free.asp?q=asal-206
**********************************************************************
Contents:
1. Editor's Comments
2. Feature: ASP.NET Caching Features
3. Announcements
4. New Articles on ASPAlliance.com
5. Contest: WIN Camtasia, Dundas Charts, or Books from Apress, New Riders, QUE, SAMS and WROX!
**********************************************************************
1. Editor's Comments
By: Steven Smith (
Click here to reveal e-mail address
)
ASPAlliance is undergoing some improvements, in case you haven't noticed. In the last week, we've begun showing columnist biography information and pictures linked from the columnist listing on the left side of the home page. We're also featuring columnists with their picture in the right side of the page. Most of the columnists don't have their information updated yet, but hopefully that won't take too long. Coming up soon, we going to have discussion forums and a calendar of community events as well. If you have ideas for features you would like to see, or any suggestions at all, please let me know.
Take care,
Steve
**********************************************************************
2. Feature: ASP.NET Caching Features
By: Rey Nunez (
Click here to reveal e-mail address
)
When clients access an ASP.NET page, there are basically two ways to provide them with the information they need:
the ASP.NET page can either obtain information from server resources, such as from data that has been persisted to a database, or
the ASP.NET page can obtain information from within the application.
Retrieving information from a resource outside the application will require more processing steps, and will therefore require more time and resources on the server than if the information can be obtained from within the application space.
If the information that will be sent to the browser has already been prepared by a previous request, the application will be able to retrieve that information faster if it has been stored in memory, somewhere along the request/response stream.
Known as caching, this technique can be used to temporarily store page output or application data either on the server or on the client, which can then be re-used to satisfy subsequent requests and thus avoid the overhead of re-creating the same information.
Caching is particularly suitable when you expect to return the same information in the same format for many different requests.
ASP.NET provides the following types of caching that can be used to build highly responsive Web applications:
Output caching, which caches the dynamic response generated by a request.
Fragment caching, which caches portions of a response generated by a request.
Data caching, which allows developers to programmatically retain arbitrary data across requests.
Complete Article
http://aspalliance.com/aspxtreme/webapps/aspcachingfeatures.aspx
**********************************************************************
Steven Smith teaches Introducing ASP.NET in Chicago May 15-17. Seating is limited, so learn more about this class and register today! Mention that you saw the class listed in this newsletter and receive an additional $100 off your tuition!
http://ASPSmith.com/classes/
**********************************************************************
3. Announcements
Microsoft Announces .NET Code Wise Community
This week, Microsoft announced their new .NET Code Wise Community, which is "your resource for third-party tips, code samples, advice, and news from .NET experts." ASP Alliance is one of several websites that are a part of this group. Read more below!
http://www.gotdotnet.com/team/codewise/default.aspx
Microsoft ASP.NET Connections Conference 2002
New Orleans, April 30 - May 3 2002
Sure there are other conferences for the ASP developer, but no other conference puts it all together like Microsoft ASP.NET Connections:
· Cutting-edge sessions by Microsoft and leading third-party ASP & ASP.NET gurus.
· Access to the latest in ASP.NET information.
· Free admission to concurrently run VB Connections and WindDev.
· Numerous chances to network with speakers and other attendees.
· Free software, conference bag, book, t-shirt, and CD.
· Microsoft® ASP.NET Connections hospitality: breakfast, sit down lunches, awesome parties.
http://www.asp-connections.com/asp/default.asp?refer=aspalliance
New Sample Chapters on ASPAlliance.com:
http://ASPAlliance.com/chapters/
Steven Smith teaches Introducing ASP.NET in Chicago May 15-17.
http://ASPSmith.com/classes/
Charles Carroll teaches Meet and Conquer ASP.NET in Dallas, TX April 22-24, and ASP.NET Tips and Tricks April 24-26. Find out more and register today at:
http://ASPTraining.com/
Regular Expression Library (by ASPSmith.com)
Search for regular expressions by keyword or substring, build and test your own, add to the library and rate current expressions!
http://regexlib.com/
ASP.NET Lists @ ASPFriends.com:
Announcements:
http://aspfriends.com/aspfriends/aspngcommunity.asp
VS.NET:
http://aspfriends.com/aspfriends/aspngvs.asp
New Users:
http://aspfriends.com/aspfriends/aspngstart.asp
Any .NET Question:
http://aspfriends.com/aspfriends/aspngfreeforall.asp
Review Books:
http://www.aspfriends.com/aspfriends/review-books.asp
Other Review Lists:
http://www.aspfriends.com/aspfriends/reviews.asp
**********************************************************************
4. New Articles on ASPAlliance.com (12)
We've added 12 new articles since our last newsletter!
ASP.NET Caching Features
by Rey Nuñez
http://www.aspalliance.com/aspxtreme/webapps/aspcachingfeatures.aspx
GDI+ : Brushes
by Philip Quinn
http://www.aspalliance.com/wisemonk/view.aspx?id=AG042102
File uploading with .NET
by Damian Manifold
http://www.aspalliance.com/damianm/article/2/article.aspx
Basic WSDL
by Lance Robinson
http://www.aspalliance.com/lance/wsdl.asp
SQLXML over HTTP
by Lance Robinson
http://www.aspalliance.com/lance/sqlserver.asp
Eliminate VB COM+ Bottlenecks
by Steven Smith
http://www.aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=15
Opinion: Why I Chose C#
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=27
Optional Parameters in C#
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=33
Caching ASP.NET Pages
by Rey Nuñez
http://aspalliance.com/aspxtreme/webapps/aspoutputcache.aspx
Interview: Joe Mayo
by Jesudas Chinnathampi (Das)
http://aspalliance.com/authors/joemayo.aspx
SQL: Select Birthdays in Range
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=34
Review: ASP.NET Unleashed
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=32
*** ALL NEW Articles: ***
http://aspalliance.com/newarticles.aspx
**********************************************************************
5. Contest: Win FREE Software and Books!
Our prize list now includes software from Dundas and TechSmith, as well as books from Apress, New Riders, QUE, SAMS and WROX. Registering to win is EASY, just follow this link and sign in (register first if you haven't). Winner gets choice of any prize available. Look for your name in the next week's newsletter to see if you won.
http://aspalliance.com/contest.aspx
Last week's winner: Chris Garrett -
Click here to reveal e-mail address
Are you planning to attend ASPNetConnections in New Orleans April 30 - May 3?
No 85%
Don't Know 12%
Yes 3%
**********************************************************************
To modify your subscription settings online, go to:
http://ASPAlliance.com/newsletter/
|
Click here to reveal e-mail address
= YOUR ID
|
http://www.aspalliance.com/subscribe.asp
Reply to this message...
aspmagazine@ls.asplists.com (ASPAlliance Times Text)
|
Click here to reveal e-mail address
= YOUR ID
|
http://www.aspalliance.com/subscribe.asp
The ASPAlliance Times
26 April 2002 Issue
This newsletter is never sent unsolicited.
Want to unsubscribe? Want to change from text format to HTML format or vice versa?
Go here:
http://ASPAlliance.com/newsletter/
**********************************************************************
SPONSOR: cyScape, Inc.
** FREE DOWNLOAD - NEW BROWSERHAWK COMPONENT FOR BROWSER COMPATIBILITY **
** FREE DOWNLOAD - DETECT FLASH, CONNECTION SPEED, SCREEN SIZE & MORE **
BrowserHawk 5.03 is here! This component makes it easy to build cross-browser friendly web pages. Easily detect plug-ins, screen and browser window size, *disabled* cookies/JavaScript/ActiveX, DHTML, CSS, XML, SSL key sizes, and DNS lookups. Detects hundreds of browsers, search engines and WAP/i-Mode/PDA devices with 100+ properties. Even provides BROWSER STATISTICS and reports not available anywhere else. Click now for a live demo and your FREE trial!!
http://www.cyscape.com/free.asp?q=asal-206
**********************************************************************
Contents:
1. Editor's Comments
2. Feature: ASP.NET Caching Features
3. Announcements
4. New Articles on ASPAlliance.com
5. Contest: WIN Camtasia, Dundas Charts, or Books from Apress, New Riders, QUE, SAMS and WROX!
**********************************************************************
1. Editor's Comments
By: Steven Smith (
Click here to reveal e-mail address
)
ASPAlliance is undergoing some improvements, in case you haven't noticed. In the last week, we've begun showing columnist biography information and pictures linked from the columnist listing on the left side of the home page. We're also featuring columnists with their picture in the right side of the page. Most of the columnists don't have their information updated yet, but hopefully that won't take too long. Coming up soon, we going to have discussion forums and a calendar of community events as well. If you have ideas for features you would like to see, or any suggestions at all, please let me know.
Take care,
Steve
**********************************************************************
2. Feature: ASP.NET Caching Features
By: Rey Nunez (
Click here to reveal e-mail address
)
When clients access an ASP.NET page, there are basically two ways to provide them with the information they need:
the ASP.NET page can either obtain information from server resources, such as from data that has been persisted to a database, or
the ASP.NET page can obtain information from within the application.
Retrieving information from a resource outside the application will require more processing steps, and will therefore require more time and resources on the server than if the information can be obtained from within the application space.
If the information that will be sent to the browser has already been prepared by a previous request, the application will be able to retrieve that information faster if it has been stored in memory, somewhere along the request/response stream.
Known as caching, this technique can be used to temporarily store page output or application data either on the server or on the client, which can then be re-used to satisfy subsequent requests and thus avoid the overhead of re-creating the same information.
Caching is particularly suitable when you expect to return the same information in the same format for many different requests.
ASP.NET provides the following types of caching that can be used to build highly responsive Web applications:
Output caching, which caches the dynamic response generated by a request.
Fragment caching, which caches portions of a response generated by a request.
Data caching, which allows developers to programmatically retain arbitrary data across requests.
Complete Article
http://aspalliance.com/aspxtreme/webapps/aspcachingfeatures.aspx
**********************************************************************
Steven Smith teaches Introducing ASP.NET in Chicago May 15-17. Seating is limited, so learn more about this class and register today! Mention that you saw the class listed in this newsletter and receive an additional $100 off your tuition!
http://ASPSmith.com/classes/
**********************************************************************
3. Announcements
Microsoft Announces .NET Code Wise Community
This week, Microsoft announced their new .NET Code Wise Community, which is "your resource for third-party tips, code samples, advice, and news from .NET experts." ASP Alliance is one of several websites that are a part of this group. Read more below!
http://www.gotdotnet.com/team/codewise/default.aspx
Microsoft ASP.NET Connections Conference 2002
New Orleans, April 30 - May 3 2002
Sure there are other conferences for the ASP developer, but no other conference puts it all together like Microsoft ASP.NET Connections:
· Cutting-edge sessions by Microsoft and leading third-party ASP & ASP.NET gurus.
· Access to the latest in ASP.NET information.
· Free admission to concurrently run VB Connections and WindDev.
· Numerous chances to network with speakers and other attendees.
· Free software, conference bag, book, t-shirt, and CD.
· Microsoft® ASP.NET Connections hospitality: breakfast, sit down lunches, awesome parties.
http://www.asp-connections.com/asp/default.asp?refer=aspalliance
New Sample Chapters on ASPAlliance.com:
http://ASPAlliance.com/chapters/
Steven Smith teaches Introducing ASP.NET in Chicago May 15-17.
http://ASPSmith.com/classes/
Charles Carroll teaches Meet and Conquer ASP.NET in Dallas, TX April 22-24, and ASP.NET Tips and Tricks April 24-26. Find out more and register today at:
http://ASPTraining.com/
Regular Expression Library (by ASPSmith.com)
Search for regular expressions by keyword or substring, build and test your own, add to the library and rate current expressions!
http://regexlib.com/
ASP.NET Lists @ ASPFriends.com:
Announcements:
http://aspfriends.com/aspfriends/aspngcommunity.asp
VS.NET:
http://aspfriends.com/aspfriends/aspngvs.asp
New Users:
http://aspfriends.com/aspfriends/aspngstart.asp
Any .NET Question:
http://aspfriends.com/aspfriends/aspngfreeforall.asp
Review Books:
http://www.aspfriends.com/aspfriends/review-books.asp
Other Review Lists:
http://www.aspfriends.com/aspfriends/reviews.asp
**********************************************************************
4. New Articles on ASPAlliance.com (12)
We've added 12 new articles since our last newsletter!
ASP.NET Caching Features
by Rey Nuñez
http://www.aspalliance.com/aspxtreme/webapps/aspcachingfeatures.aspx
GDI+ : Brushes
by Philip Quinn
http://www.aspalliance.com/wisemonk/view.aspx?id=AG042102
File uploading with .NET
by Damian Manifold
http://www.aspalliance.com/damianm/article/2/article.aspx
Basic WSDL
by Lance Robinson
http://www.aspalliance.com/lance/wsdl.asp
SQLXML over HTTP
by Lance Robinson
http://www.aspalliance.com/lance/sqlserver.asp
Eliminate VB COM+ Bottlenecks
by Steven Smith
http://www.aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=15
Opinion: Why I Chose C#
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=27
Optional Parameters in C#
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=33
Caching ASP.NET Pages
by Rey Nuñez
http://aspalliance.com/aspxtreme/webapps/aspoutputcache.aspx
Interview: Joe Mayo
by Jesudas Chinnathampi (Das)
http://aspalliance.com/authors/joemayo.aspx
SQL: Select Birthdays in Range
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=34
Review: ASP.NET Unleashed
by Steven Smith
http://aspalliance.com/stevesmith/articles/ViewArticle.aspx?id=32
*** ALL NEW Articles: ***
http://aspalliance.com/newarticles.aspx
**********************************************************************
5. Contest: Win FREE Software and Books!
Our prize list now includes software from Dundas and TechSmith, as well as books from Apress, New Riders, QUE, SAMS and WROX. Registering to win is EASY, just follow this link and sign in (register first if you haven't). Winner gets choice of any prize available. Look for your name in the next week's newsletter to see if you won.
http://aspalliance.com/contest.aspx
Last week's winner: Chris Garrett -
Click here to reveal e-mail address
Are you planning to attend ASPNetConnections in New Orleans April 30 - May 3?
No 85%
Don't Know 12%
Yes 3%
**********************************************************************
To modify your subscription settings online, go to:
http://ASPAlliance.com/newsletter/
|
Click here to reveal e-mail address
= YOUR ID
|
http://www.aspalliance.com/subscribe.asp
| [aspngcommunity] member
Click here to reveal e-mail address
= YOUR ID
|
http://www.asplists.com/asplists/aspngcommunity.asp
= JOIN/QUIT
|
http://www.asplists.com/search
= SEARCH Archives
Reply to this message...
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com