views:

28

answers:

1

Can I access the ASP.NET Cache object from Application_Start? I was previously using it in a page render. I though it might be available as an object under the 'Server' object but no luck.

A: 

Use HttpRuntime.Cache.

RichardOD