User Control in a User Control

I have a first user control that contain a second user control. If I cahe the first user control can I still dynamically control the second one or it is cached with the first one therefore can not control it anymore?

Thanks
0
freedom1029
11/9/2003 5:24:20 AM
📁 asp.net.web-forms
📃 93655 articles.
⭐ 1 followers.

💬 1 Replies
👁️‍🗨️ 276 Views

When your first control is cached, its rendered out and its output is stored in the cache.  On every request to the page containing your control that can satisfy it from cache, the output will just simply be inserted - your first control will never be instantiated or run in that case, so the second one wont be either.

Hope this helps,
Mike Volodarsky
Program Manager
IIS Core Server / ASP.NET Runtime

This posting is provided "AS IS" with no warranties, and confers no rights.

Read more about IIS7 on my blog at www.mvolo.com
0
mvolo
11/10/2003 8:00:00 PM