all groups > asp.net caching > june 2006
SqlDataSource and Caching problems
Posted by masmith at 6/29/2006 3:14:02 PM
I have a ASP.NET web page with a SqlDataSource configured with the select
pointing to a stored procedure. This works as expected and using the
SqlDataSource_Selected event I test how many rows selected by:
Debug.WriteLine(e.AffectedRows);
When viewing the page I find the following:
When ... more >>
Refresh Webform
Posted by NN at 6/27/2006 11:41:49 AM
Hello, I have a problem :)
I have a webform in which I have the event Onload that refers to a script
that find in a database for an image and then show it in the WebForm. The
problem is that I want to repeat the search automatically every 5 seconds. I
Already tried with <meta http-equiv="refre... more >>
ASP.NET/ CONTRACT/ FL
Posted by OMNI GROUP at 6/26/2006 6:39:37 PM
OMNI GROUP
tgugger@sbcglobal.net
419-537-9447
ASP.NET/ CONTRACT/... more >>
Can I used caching with personalization?
Posted by Bhavini at 6/7/2006 11:25:01 PM
Hi All,
I am new to ASP.NET 2.0, I want to use caching with my application. But in
my application user can personalize layout (colors, themes etc). So can I use
Output caching in this case, or I will need to use data catching only?
I wonder if output caching will be used, all users will ge... more >>
Connection string password in clear text in ASP.NET Config Setting
Posted by Lars at 6/7/2006 12:19:01 PM
We have encrypted the connection string in web.config, however if you look at
ASP.NET Configuration Settings in IIS Manager, the connection string
including the password is there in clear text.
Does anyone know how to avoid this?
Thanks!... more >>
Help I *want* caching but IE won't give it to me (consistently.)
Posted by Mark S. at 6/7/2006 12:00:00 AM
On a static page I have:
<script type="text/javascript"
src="http://myServer/default.aspx?siteID=1"></script>
The aspx page (c# dotnet 2.0) builds a custom javascript file and returns it
to the browser. default.aspx only needs to be built once, per query string,
and then I would like the b... more >>
page output caching and url rewriting with IHttpHandler
Posted by Jason at 6/5/2006 7:45:02 AM
I have page output caching setup in my web.config like this:
<outputCacheProfiles>
<add name="Static" duration="300" enabled="true" location="Server"
varyByParam="url,id" />
</outputCacheProfiles>
This works fine for most of my pages. However, I am also using a custom
http handler to do... more >>
|