Temporary Internet Files(urgent)
-
In my application css file for page is genrating at run time . Now when i made some changes old file is get deleted and new file is created. Problem is that css which is getting applied on page is previous one as it get stored on client machine in Temporary Internet Files. Name of file has to be same otherwise useless files will get stored on server. How can i apply newly genrated css file which is stored on server. Thanks in advance. :)
-
In my application css file for page is genrating at run time . Now when i made some changes old file is get deleted and new file is created. Problem is that css which is getting applied on page is previous one as it get stored on client machine in Temporary Internet Files. Name of file has to be same otherwise useless files will get stored on server. How can i apply newly genrated css file which is stored on server. Thanks in advance. :)
Add a random parameter to the url:
MyStyle.css?t=9838459873645
That will make the url unique each time and load the file from the server every time. This of course removes any advantage of having a css file in the first place, so you can just as well put the style in the page instead.--- b { font-weight: normal; }
-
Add a random parameter to the url:
MyStyle.css?t=9838459873645
That will make the url unique each time and load the file from the server every time. This of course removes any advantage of having a css file in the first place, so you can just as well put the style in the page instead.--- b { font-weight: normal; }
Thanks, But i can't use response.redirect.
-
Thanks, But i can't use response.redirect.