Ajax中的站点主错误

时间:2013-11-14 21:17:04

标签: asp.net ajax

我添加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?

1 个答案:

答案 0 :(得分:0)

尝试像这样注册控件

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

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