all groups > asp.net caching > june 2004
Refreshing without resubmitting
Posted by Nathan Sokalski at 6/30/2004 2:44:58 AM
When form data is submitted to an ASP page using the POST method, it is not
visible in the URL, but it is still resubmitted if the user clicks the
Refresh button. This can cause statistical data to be accidentally submitted
multiple times, making the results incorrect. I would like like the user ... more >>
caching images (corrupting)
Posted by VR at 6/23/2004 8:11:01 PM
Hi, I have a dynamic image generation code that uses the Graphics and Bitmap
objects to create a .jpeg output.
The first time the code runs the image is correctly generated and added to
Cache("MyImage") and to my web page, but when I run it again, the image is
not regenerated, it's retreived f... more >>
The right way to cache
Posted by shelld00d NO[at]SPAM yahoo.com at 6/23/2004 5:28:15 AM
Hi,
I have a user control that generates a menu. The menu changes
depending on the type of user that logs on. The user's type is stored
in a cookie which I set from my login page.
Now, on all my pages (except the login), I have put in a user control
that I created which generates a menu for... more >>
Clear Browser Cache
Posted by Pradeep D at 6/23/2004 3:39:01 AM
Hi,
Is there a way to clear the browser cache programmatically, i'm my page, i have written nothing to cache anything. i want the page to load a fresh everytime. kindly give in your comments.
Pradeep... more >>
Caching a user control
Posted by shelld00d NO[at]SPAM yahoo.com at 6/23/2004 2:29:55 AM
Hi,
I have written a user control that generates a menu depending on the
type of user that has logged in to my site. The information about the
user is stored in a cookie.
The control works great, but now I want it to be cached as it will
always be the same for a particular user group. So I ... more >>
want to disable back button functionality in Asp
Posted by _thedebugger at 6/22/2004 9:36:49 PM
Hi friends
I am facing one problem. I know its possible but Dont know how to do it.
I have one page where I am getting some values from user. After user submit
this form to one java servlet, it returns me some responseText which I am
displaying to the user.
On this page if user presess the ... more >>
Custom class loaded from cache returns an object by reference
Posted by Thomas Christensen at 6/18/2004 3:26:01 PM
The item was not posted first time - trying again...
Hi,
I have a problem with a custom class of mine. My situation is this: I have a class
public class Something
{
public int Id;
public string Text;
public ArrayList arrList;
New(int IdToRetrieve)
{
if(Cac... more >>
Need to break cache to preview
Posted by casaubon at 6/18/2004 10:58:01 AM
Basically I need for users of my CMS to be able to preview pages live right from the DB. They're always making little changes so that text lines up correctly etc and they want to preview the changes often.
If i cache the pages they can't preview them. Is there a way i can break the cache just f... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Caching.CacheDependency Problem
Posted by DotNetJunkies User at 6/15/2004 7:41:05 AM
I have the following code:
myCache = CType(context.Cache(cacheName), WebControls.Table)
If myCache Is Nothing Then
callProcessMenu()
context.Cache.Insert(cacheName, ucTblMainMenu, New Caching.CacheDependency(_ucXMLSchema)))
myCache = CType(conte... more >>
help me
Posted by nht at 6/13/2004 7:29:47 PM
Hi,i'm a chinese. Who can tell me where has news which is chinese. I'm poor
at English.
... more >>
Data Access caching
Posted by Mani at 6/9/2004 2:24:02 PM
Hi, What would be the best way to populate a drop down list,
I use a three tier design, build a business object after retrieving
sqldatareader from the database. then after adding to the drop-down as a
listItem, I add this to the cache.
I found this to be faster than a dataset being bound direct... more >>
performance and want to use one more machine
Posted by ken at 6/2/2004 9:21:05 PM
Dear all
i have a web aspx application run on a IIS with backend sql2000, however i think they may be too many users and the performance become low. So what can improve the performance
Can i use one more machine to share loading? if so, how to do this
regar
ken... more >>
|