I want to use the Caching.Cache(...) method, like so:
Cache.Insert(\"Interview Questions\", datatable, sqlcachedep)
or
Syst
You need to do
Page.Cache.Insert()
(I'm assuming you're talking ASP.Net). You're calling on Cache as the class, not as the instance of it.