If you're using ASP.NET 2.0 you should use page caching with post cache substitution
to generate the URL that's different for each user. Here's the link for that:
http://beta.asp.net/QUICKSTART/aspnet/doc/caching/output.aspx#postcache
If you're still in v1.x then you'll have to resort to page fragement caching,
which is a way to cache the rendered controls. It's not exactly what you
want, but it's probabaly the closest thing. Check MSDN for docs on Page Fragement
Caching.
-Brock
DevelopMentor
http://staff.develop.com/ballen
> hello,
> i have a asp.net portal with ~ 5 - 100 logins / minute
[quoted text clipped - 13 lines]
>
> I know i can cache with
Xavier - 01 Aug 2005 15:26 GMT
thanks
> If you're using ASP.NET 2.0 you should use page caching with post cache substitution
> to generate the URL that's different for each user. Here's the link for that:
[quoted text clipped - 27 lines]
> >
> > I know i can cache with