Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 Asp.net 页面中使用 SquishIt,但我在下面收到此错误
我的代码:<%@ Import Namespace="SquishIt.Framework" %>
网络配置:调试错误
这与 SquishIt 无关。
在 VB 中,回车是语法的一部分。(与将回车视为无意义的空格的 C# 不同。)所以这段代码是无效的:
Bundle.Css() .Add("something") ' and so on
在 VB 中,您要么需要将它放在一行中:
Bundle.Css().Add("something") ' and so on
或明确分隔行:
Bundle.Css() _ .Add("something") _ ' and so on