本文介绍了MVC @import HTML关键字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图使用方法:
<style>@import url("css/main.css");</style>
但MVC把它当作在剃刀鉴于.NET code。 CS0103:名称进口并不在目前情况下存在
如何解决呢?
谢谢
but mvc treats it as .net code in razor view. "CS0103: The name 'import' does not exist in the current context"how do i fix it?thanks
推荐答案
双击该 @
来解决这个问题:
Double the @
to fix the issue:
<style>@@import url("css/main.css");</style>
这里
More details here.
这篇关于MVC @import HTML关键字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!