all groups > asp.net caching > april 2006
Cascading Style Sheet Is So Hazardous To Your Privacy
Posted by Radium at 4/30/2006 8:53:14 PM
Cascading Style Sheet [.css] is so hazardous to your privacy. It allows
others on the internet to see your monitor and files. It allows them to
copy images on your monitor to their computers. It also allows them to
copy files from your computer to their computers. It is dangerous.
Avoid at all c... more >>
Chaching with Location="None"
Posted by tronn at 4/30/2006 7:35:02 AM
I read thefollowing in "C# and .NET" on Safari Books:
----
<%@ OutputCache Location="None" VaryByParam="*" VaryByControl="*"%>
Note that its caching is turned off by setting Location to None. The result
is that only the control is cached.
---
Does the above really mean that I will have a ... more >>
can caching trigger System.OutOfMemoryException ?
Posted by John A Grandy at 4/26/2006 1:42:46 PM
Does ASP.NET 2.0 caching begin utilizing the pagefile if the web server runs
extremely low on RAM ?
Is it possible for an ASP.NET 2.0 caching implementation to trigger a
System.OutOfMemoryException ?
... more >>
temporary internet files
Posted by Mark at 4/20/2006 6:43:03 PM
Is there a way in asp.net to delete the temporary internet files from IE?
Thanks.
... more >>
Caching Master Pages
Posted by Opa at 4/19/2006 9:26:02 AM
Hi,
I have a master page which contain an xml based tab menu. I'm trying to cache
these pages, with output caching, but the compiler says this is not valid.
So how do I cache a master page?... more >>
is there any limit to how long of a string SqlDataReader.GetString() can return?
Posted by Daniel at 4/18/2006 8:41:35 PM
is there any limit to how long of a string SqlDataReader.GetString() can
return?
... more >>
Caching thumbnails
Posted by Peter Afonin at 4/18/2006 12:19:53 AM
Hello,
I'm making my first image gallery in ASP.NET. I've never worked with images
in ASP.NET before. Everything is going well so far, but what's bothering me
is thumbnails flickering when the user reloads the page. Example -
http://www.russiannature.com/gallery2.aspx
I've heard about the t... more >>
all sessions lost after deleting folders
Posted by Filip at 4/13/2006 2:02:01 AM
I have a big problem,
I'm developing a filemanager in Asp.NET 2.0 C#, as a filemanager do , I
delete,add,rename folders and files. After weeks of searching te problem why
the session is lost everytime I do an action like delete.. Finally I found
it . It causes the
appDomain to restart. T... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
what permissions does a windows service need to execute another process? System.Diagnostics.Process process = System.Diagnostics.Process.Start(info);
Posted by Daniel at 4/12/2006 3:46:52 PM
what permissions does a windows service need to execute another process?
System.Diagnostics.Process process = System.Diagnostics.Process.Start(info);
just local administrator? any specific permitions?
... more >>
Refreshing cache on other server
Posted by JL at 4/11/2006 2:11:02 PM
Hi,
I am working on an application that resides on 3 web servers. The user
controls (e.g. drop-downs) on those servers are cached.
I have to build an admin page where I can see all cached items, and select
the ones to refresh.
Is it possible that when I am on the admin page on serve... more >>
CacheDependency not working
Posted by Eniac0 NO[at]SPAM gmail.com at 4/11/2006 7:35:59 AM
Hello, I have created a web service that uses a file for storing its
constants.
So what i do is caching the file in memory and whenever the actual file
changes, I reload the cache.
The problem is that .net doesn't seem to notice when i change the file.
so the update constant file is not re... more >>
XSLT Caching
Posted by Floris van Haaster at 4/10/2006 5:12:04 PM
Hi all,
What I have:
I have a website and in the code I generate a xml document.
I also have a couple of xsl files and then I use the following lines to
generate the website from the xml and xsl:
xslTran.Load(serv.MapPath("default.xsl"))
xslTran.Transform(xmldoc, Nothing, Response.Outpu... more >>
Cache XML between pages
Posted by csgraham74 at 4/10/2006 3:33:12 AM
Hi guys,
i have been building a web application in asp.net. in this application
we pass large amounts of xml between pages. my hardware/network guy has
told me that due to our infrastructure we cannot use session variables
to store xml between pages. i have therefore been using the cache to
s... more >>
Static Member starts failing...
Posted by akshay at 4/6/2006 12:18:01 PM
I facing a Static Member become Null on second call every now and then. -
I have one dataset made as Static Member. [_dsCacheHolder]
Each call to a function only returns a COPY Dataset.Copy() of the static
variable.
[public static PA_PropertyStructure GetCacheStructure()]
GetCacheStructure ... more >>
|