嗨,我正在编写一个经典的 ASP,当我导入我的 CSS 时,它被缓存了,我希望能够将它从缓存中删除。因为我只在特定场景中使用 CSS 文件。
任何人都可以帮忙吗?
<% If Session("SG_bIsRemoteBetslip")= True then %>
<style type="text/css" media="screen, tv, projection">
@import url(/Marketing/Site-Files/Sportsbook/Betslip/remote-betslip.css);
</style>
<% Session("SG_bIsRemoteBetslip") = False %>
<% End If %>