我正在尝试为添加到外部站点的asp.net mvc包启用客户端js缓存。目前,该网站使用网址https://example.com/bundles/myscriptbundle引用js包。
查看来自服务器的响应我似乎总是得到Cache-Control:“no-cache”。
我尝试将以下内容添加到global.asax.cs中,但它似乎没有什么区别。有关如何将缓存标头添加到捆绑包的任何建议吗?
<DataGrid ...>
<DataGrid.RowStyle>
<Style TargetType="{x:Type DataGridRow}">
<Setter Property="Background">
<Setter.Value>
<SolidColorBrush Color="{Binding Path=BackgroundColor}"/>
</Setter.Value>
</Setter>
</Style>
</DataGrid.RowStyle>
</DataGrid>