Hat denn niemand das SDK installiert? Siehe Cache Klasse, hier ein Sample 
daraus:

void ShowCachedItems()
{
     // Declare variables.
     string strCacheContents;
     string strName;

     // Display all the items stored in the ASP.NET cache.
     strCacheContents = "<b>The ASP.NET application cache contains:</b><br/>";
     foreach(DictionaryEntry objItem in Cache)
     {
         strName = objItem.Key.ToString();
         if(strName.Substring(0, 7) != "System.")
         {
             strCacheContents = strName + " + " + Cache[strName].ToString() 
+ "<br/>";
        Response.Write(strCacheContents);
         }
     }
    divCacheContents.InnerHtml = strCacheContents;
}

Chris

At 11:42 AM 8/25/2002 +0200, you wrote:
>gut Idee, aber wie? *nixblick* *gg*
>
>Gru�,
>Micha
>----- Original Message -----
>From: "Christoph Wille" <[EMAIL PROTECTED]>
>To: "aspDEdotnet" <[EMAIL PROTECTED]>
>Sent: Sunday, August 25, 2002 11:26 AM
>Subject: [aspdedotnet] Re: ViewState
>
>
>At 10:52 AM 8/25/2002 +0200, you wrote:
> >ich habe jetzt das DS in meinem ViewState gespeichert - jetzt habe ich
> >festgestellt, dass der ViewState ja immer per HiddenField mitgef�hrt
>wird...
> >Bei einem gro�en DS sind das dann schon ne ganze Menge an KB's ... gibt es
> >da keine andre M�glichkeit (z.B. viewstate auf dem Server speichern oder
> >so..)?
>
>Ab in den Cache damit.
>
>Chris


| [aspdedotnet] als [email protected] subscribed
| http://www.dotnetgerman.com/archiv/aspdedotnet/ = Listenarchiv
| Sie k�nnen sich unter folgender URL an- und abmelden:
| http://www.dotnetgerman.com/listen/aspDEdotnet.asp

Antwort per Email an