| | Rating Thread /
Thread Starter | Last Post  | Replies | Views |
|  | What is faster, reading a saved DataSet from an Application.Get() or
reading the same DataSet from HttpCache?
AT
|
12-06-2003 05:43 AM
Jerry III | 4 | 28 |
|  | I am using System.Web.HttpContext.Current.Cache.Insert to add objects to the
cache.
System.Web.HttpContext.Current.Cache.Insert(sKey, oObject,...
Craig
|
12-05-2003 07:58 PM
Alvin Bruney | 6 | 39 |
|  | Question 1: What is the difference between using Cache/Session/Application vs using a Class (shared) variable?
Question 2: I have a class that...
Jay Lindsay
|
12-05-2003 08:32 AM
Jerry III | 12 | 41 |
|  | Hi,
I'm hoping that someone can help me with this problem I'm having. I am
developing a website for an airport that is composed entirely of
separate...
AT
|
12-04-2003 04:45 PM
Anders Borum | 3 | 34 |
|  | Hello. I'm writing an aspx page that reads a file from
disk and writes the file out through the
Response.WriteBinary() method. This allows me to...
Adam B
|
12-04-2003 10:56 AM
Adam B | 0 | 25 |
|  | Hi!
I have a several aspx pages. When you log off I use
SignOut(). But if you then use the URL/address bar in IE
and choose a page that you just...
Marcus Olsson
|
12-03-2003 07:25 PM
Anders Borum | 1 | 43 |
|  | Is there a way to have the cache update itself?
B
|
12-03-2003 03:17 PM
Jerry III | 1 | 26 |
|  | When a user's Session expires, I'd like to remove certain things from
the Cache. For instance, some data items I've stored using the...
AT
|
12-02-2003 05:18 AM
Teemu Keiski | 1 | 23 |
|  | Hi!,
First I will explain what i am doing.
Basically i have two pages.
1) List all the records he has to do work, and he can sort by anyfield.
2)...
Reddy
|
11-25-2003 10:28 PM
Alvin Bruney | 1 | 20 |
|  | I need to cache a dataset. When stepping through the
locals show that it works, however, when i get to point
where I need to bind the data i receive...
ALPO
|
11-25-2003 10:20 PM
Alvin Bruney | 1 | 25 |
|  | Dear all,
I'm new to Session.SessionID in Global.asax.vb I wanted to
use the sessionID in "Application_AuthenticateRequest" to
check for sessionID...
Mae
|
11-22-2003 12:00 PM
Mark Fitzpatrick | 1 | 25 |
|  | hi all,
what i want to do is the folowing:
I don't want the pages to be cached, this way when a user presses the IE
back button, the page is fetched...
Naim Rizk
|
11-21-2003 11:16 AM
Ender699 (AT) pandora (DOT) be | 4 | 24 |
|  | Has anyone experienced any problems with the use of
Response.Cache.SetVaryByCustom within their code?
I have page which is set to cache the contents...
DV
|
11-21-2003 04:47 AM
DV | 0 | 30 |
|  | Hi!
Could you help me to understand next fact...
I open in LDASM System.Web.dll and read:
..method /*060002D7*/ public hidebysig specialname...
Alexander Inochkin
|
11-21-2003 03:20 AM
Alexander Inochkin | 3 | 25 |
|  | Hi!
Please help me to create my own Cache() object...
When I create like this
System.Web.Caching _ca = new System.Web.Caching.Cache();
I get not...
Alexander Inochkin
|
11-19-2003 04:32 AM
AT | 7 | 33 |
|  | We have a .NET page that accesses a Microsoft Access file.
With vb.net, we create a "pass-through" query using the
querydef object. The problem today...
TerriJH
|
11-18-2003 02:25 PM
Alvin Bruney | 1 | 28 |
|  | Ok, I'm out of ideas and I have been working with 2 other people on
this. I ma basically in charge of updating the front end of this
application.
I...
AT
|
11-18-2003 12:01 PM
Jon Paugh | 1 | 31 |
|  | i have dozens of web forms and user controls that use the page directive
caching. i recently made design changes to most of the files. however...
Henry
|
11-18-2003 11:42 AM
Jon Paugh | 1 | 21 |
|  | is asp.net code ever sent to the browser
arturo perez
|
11-17-2003 11:45 PM
Alvin Bruney | 1 | 31 |
|  | When I try to cache an object with a file dependency path
which contains the period character '.' and encoded spaces
(%20), an HttpException is...
John Meyer
|
11-17-2003 11:06 PM
John Meyer | 0 | 27 |
|  | Hi,
I am trying to set up fragment caching by using the VaryByControl attribute
in a page directive in an ascx file. At the same time I also need...
Joseph
|
11-14-2003 03:07 AM
AT | 3 | 28 |
|  | Take a common example of using the cache:
DataSet MyData = Cache;
if(MyData == null){
MyData = new MyDataSet();
SomeAdapter.Fill(MyData); // Lengthy...
Jimmy [Used-Disks]
|
11-11-2003 12:45 PM
Jimmy [Used-Disks] | 3 | 24 |
|  | I have a set of global data which I want to cache, but I'm concerned about
how the Cache object stores its items. I do not want this global data to...
Jimmy [Used-Disks]
|
11-11-2003 09:15 AM
Jimmy [Used-Disks] | 12 | 45 |
|  | Hi:
After executing the Page_init event of a page, the session is being
lost. When I put a breakpoint in the Session_end event of the
global.asax...
AT
|
11-11-2003 06:44 AM
AT | 3 | 25 |
|  | hi
i want to maintain a collection of pointers ( the pointers should
point to session variables, hidden fields in an ASP.NET page). The
collection...
AT
|
11-10-2003 11:10 AM
Alvin Bruney | 1 | 28 |
|  | hi
is there any way to invalidate the cached output of a user control?
All I found up to now about invalidation the cache concerned either
complete...
Stefan Rinner
|
11-09-2003 11:31 AM
Stefan Rinner | 0 | 28 |
|  | Currently i using the ASP Component which is Server
Objects ASP Bundle, Software Artisans ASPStudio and
Persits ASP Component for our the web site....
yeow
|
11-05-2003 10:24 PM
yeow tan | 2 | 28 |
|  | I can't seem to figure out how to make this work. I need some sort of
design for a composite control that will allow the following things to
happen...
Aaron Prohaska
|
11-05-2003 07:40 PM
Aaron Prohaska | 1 | 26 |
|  | Do you mean how to send emails with SmtpMail using a server that demands
authentication? If yes,...
Teemu Keiski
|
11-04-2003 01:37 AM
Teemu Keiski | 0 | 23 |
|  | Can you tell me how to use this function? Can't find an
example ANYWHERE.
I don't understand the input parameter to this function.
For example, if...
bob chiverton
|
11-03-2003 08:26 PM
Alvin Bruney | 5 | 39 |
|  | Hi
I want to know,
- the difference between both the caching mechanism.
- Where is the caching data stored in each situation.
- Will HttpRuntime...
aqrila
|
11-03-2003 02:43 PM
Alvin Bruney | 3 | 21 |
|  | Hello All,
I would like to know is there any way I can expire the cached version of a
page depending on parameter?
My requirement is I am caching...
Salim
|
11-03-2003 11:54 AM
Monsur | 1 | 22 |
|  | I have a site where it allows user to login with ID and
pin to access there information. After navigating various
aspx pages, when the user click...
Joe K.
|
11-02-2003 05:05 PM
Alvin Bruney | 4 | 19 |
|  | First time i'm loading pages, the page is enormously slow. This is
because ASP.NET is compiling the aspx file right there. Thereafter,
the pages...
AT
|
10-30-2003 09:38 PM
Mark Fitzpatrick | 1 | 21 |
|  | Hi
I,m gonna explain my scenario problem:
I've got an user control that i want to cache in diferent
pages attending to the value of a parameter x,...
quique
|
10-30-2003 05:48 AM
quique | 0 | 23 |
|  | Hello,
There are a number of well-known techniques for performing ASP.NET cache
invalidation when a database table is updated. I discuss one that is...
Eron Wright
|
10-29-2003 05:31 PM
Eron Wright | 0 | 21 |
|  | Hi, I have no idea how to write .bat scripts, can you help me write one?
Here is a pseudo code of what I would like the .bat script do.
For...
Lucas Cowald
|
10-27-2003 11:10 AM
Alvin Bruney | 1 | 19 |
|  | Hello,
How can one copy an XmlDocument "A" into another
XmlDocument "B"
When I say "copy", I mean to replace the XmlDocument "A"
completely by the...
itsme
|
10-27-2003 10:24 AM
Johan De Paepe | 1 | 32 |
|  | Hi there,
I have a user control that brings back some links from a database
based on a combination of querystring parms, so I'm using VaryByParm
to...
AT
|
10-27-2003 06:58 AM
AT | 0 | 23 |
|  | Hi,
My Script to run a Command-Line from ASP does not work. No errors are
returned either.
It is on IIS. The directory where the script exists is on...
Lucas Cowald
|
10-24-2003 08:03 PM
Alvin Bruney | 1 | 23 |
|  | I am trying to implement Partical Caching in a User Control that gets data
from DB and populates a combo based on:
1) GroupKey : An int Property that...
Manish Jain
|
10-23-2003 07:03 AM
Manish Jain | 0 | 20 |
|  | Hi,
Using ASP and VBScript. How to convert JPEG image into a binary data? Is it
possible with a command from ASP / VBScript without having to put it...
Lucas Cowald
|
10-22-2003 12:15 PM
Steinar Herland | 1 | 21 |
|  | I've got an application that uses data caching of a DataTable object for
special offers. There's an offerlisting page which displays all the...
Janaka
|
10-22-2003 07:40 AM
Janaka | 0 | 22 |
|  | Hi,
I need to RUN/execute a Command-Line command from an ASP page.
This is the command:
sse45.exe -i k:\o\2.wmv -o k:\o\2.shh -w 128 -df 0 -m 2...
Lucas Cowald
|
10-22-2003 07:15 AM
Lucas Cowald | 0 | 29 |
|  | Hi,
I am developing an online book store with shopping cart.
My shopping cart is represented as a Xml server control
and I am using an XSLT to...
unknown
|
10-22-2003 05:49 AM
Arulvendan.S | 1 | 31 |
|  | Ok, here's the thing:
I have got a top menu, category list, and related sites list in three
separate user controls. These are used on a majority of...
AT
|
10-21-2003 05:06 PM
AT | 0 | 25 |
|  | I have a page that makes 3 database calls and 1 web service call to
another internet server. To get the page to load in a reasonable
amount of time,...
AT
|
10-21-2003 04:41 PM
AT | 0 | 19 |
|  | hi,i have a Classic ASP project.but i want to use ASP.NET
Tecnologies from now.I have many Session value which are
write in Classic Asp.So I cant...
Furkan
|
10-21-2003 12:56 PM
eAndy | 2 | 17 |
|  | I believe you to pass the forms authentication cookie from one machine to
another
so that they do not need to login to the box again. The following...
AT
|
10-21-2003 08:26 AM
AT | 0 | 26 |
|  | Hello,
I am storing an XmlDocument into the session.
Each time I want to store the XmlDocument into session, I
should clear the session object and...
itsme
|
10-20-2003 10:17 AM
Wim Hollebrandse | 2 | 26 |