>What is the alternative syntax for ><%Response.Expires = -1%> in Dotnet (this works fine with the prev. version >of ASP)
You could try: Response.Cache.SetNoServerCaching() Response.Cache.SetNoStore() Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches) Response.Cache.SetMaxAge(System.TimeSpan.Zero) Hope thats what you were looking for Jeremy You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.