i am using output cache attribute to cache my page ,
[OutputCache(Duration = 50000)]
public ActionResult GetRidOfZombies()
{
// Code
}
now the problem is that i have two domain running the same application abc.com and xyz.com
i want to do that when any user see my site in xyz.com then this cache attribute trim down to [OutputCache(Duration = 50)] .... How should i do that . I searched it alot on google but didn't find any solution . Thanks in advance !