Well, in fact, I can prevent caching in the development server, but when I run the application in production server it doesn't work.
This is what I did:
In Page_Load()
Response.Cache.SetCacheability(HttpCacheability.NoCache)
As I said, it works fine in one server but not in the other. Both of them are IIS 5.0. I checked the HTTP version in both servers, and I see that the development server sends HTTP/1.1 in its response, and the production server sends HTTP/1.0. Does it have something to do with the problem? or is there any other thing I should check?
And, how could I update my web server to HTTP 1.1?
Thanks for your help.
José
JOSE CARLOS ARAMBURU
josecarloaa@hotmail.com
This is what I did:
In Page_Load()
Response.Cache.SetCacheability(HttpCacheability.NoCache)
As I said, it works fine in one server but not in the other. Both of them are IIS 5.0. I checked the HTTP version in both servers, and I see that the development server sends HTTP/1.1 in its response, and the production server sends HTTP/1.0. Does it have something to do with the problem? or is there any other thing I should check?
And, how could I update my web server to HTTP 1.1?
Thanks for your help.
José
JOSE CARLOS ARAMBURU
josecarloaa@hotmail.com