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 MVC4 是否与多浏览器兼容性限制有关?
换句话说:ASP.NET MVC 引擎还生成显示客户端的 HTML 服务器端(对吗??),它是生成“非多浏览器兼容”的 HTML 标记还是这两个东西彼此无关?
ASP.NET MVC 框架本身不会生成 HTML,它使用视图引擎来创建 HTML,例如:RAZOR、ASPX、SPARK 等。
不,asp.net MVC 不会神奇地生成任何 html。它呈现在您放置在视图中的任何位置。
您必须将代码编写为“多浏览器兼容”。