一个缓存(Cache)可以在不同页面设置不同的过期时间吗?
A页面用:
  Dim Key As String = "List"  
  If Caches.GetCache(Key) Is Nothing Then
       Caches.SetCache(Key, xxx, 5)
  End If
B页面用:
  Dim Key As String = "List"  
  If Caches.GetCache(Key) Is Nothing Then
       Caches.SetCache(Key, xxx, 10)
  End If
C页面用:
  Dim Key As String = "List"  
  If Caches.GetCache(Key) Is Nothing Then
       Caches.SetCache(Key, xxx, 20)
  End If
这样设置有什么影响吗?