0

我在添加站点母版页时添加了 ajax 工具包,它向我显示了这样的错误,并且我在 web.config 中添加了参考如何在 asp.net 中添加 ajax 控制工具包的命名空间

 ASP.NET runtime error: Sections must only appear once per config file.  See the help
    topic <location> for exceptions. 

在这一行

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site1.master.cs" 
    Inherits="WebApplication1.Site1" %>


any help?
4

1 回答 1

0

尝试像这样注册控件

<%@ Master Language="C#" AutoEventWireup="true" 
         CodeBehind="Site1.master.cs" 
           Inherits="WebApplication1.Site1" %>
<%@ Register assembly="AjaxControlToolkit" 
            namespace="AjaxControlToolkit" tagprefix="asp" %>

此外,您要确保文件中没有重复的部分web.config

于 2013-11-14T21:19:57.290 回答