up vote 1 down vote favorite
share [g+] share [fb]

We're starting to apply output caching to many of our pages as we start load testing our app. I'm wondering if there is a way to centralize the values we are using, say in the web.config, as we have many pages on which we'll be experimenting with different values.

In general, I just like the idea of being able to change the values in one location... does anyone know if this is possible?

Something like <%@ OutputCache Duration="ValueFromWebConfig" VaryByParam="none" %>

I'm guessing maybe not as the value needs to be a compile time constant, but I just wanted to check with you gurus before I gave up :)

Thanks a bunch.

Evan

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Sure you can, using profiles. Straight from MSDN

http://msdn.microsoft.com/en-us/library/ms228270.aspx

link|improve this answer
Thanks Jaimal, that's just what I was looking for. – evanmcd Sep 9 '09 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.