views:

46

answers:

1

hey guys can anyone tell me how to read data from cache saved in microsoft velocity from classic asp?

if above is not possible, then what if i use memcache instead. then is it possible and worth it to read memcache from classic asp

thanks in advance

+1  A: 

The AppFabric caching client libraries are .NET-only, you can't use them directly from ASP.

You might be able to get round this if you were to write a COM-visible object in .NET (a facade, effectively) that you could instantiate in your ASP pages that would talk to the AppFabric cache.

PhilPursglove