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.
我正在尝试包含<% @using System.Web.Script.Serialization%>,但它给了我错误消息:服务器块的格式不正确。
<% @using System.Web.Script.Serialization%>
如果您使用的是 Razor 语法,则如下所示:
@using System.Web.Script.Serialization
ASP.net 语法是这样的:
<%@ Import Namespace="System.Web.Script.Serialization" %>