我在我的应用程序中添加了一个“cache.manifest”(效果很好),从那时起,调试起来就非常困难,因为我必须始终清除缓存或修改 cache.manifest 版本。
我尝试使用“HttpContext.Current.IsDebuggingEnabled”条件加载清单:
<!DOCTYPE HTML>
@if (HttpContext.Current.IsDebuggingEnabled)
{
<html>
}
else
{
<html manifest="/cache.manifest">
}
这不起作用,Visual Studio 给了我 3 个错误:
- 该块缺少结束 } 字符
- html元素未关闭
- 不能有超过 1 个html元素。
有人有想法吗?
谢谢 !