我添加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?
答案 0 :(得分:0)
尝试像这样注册控件
<%@ Master Language="C#" AutoEventWireup="true"
CodeBehind="Site1.master.cs"
Inherits="WebApplication1.Site1" %>
<%@ Register assembly="AjaxControlToolkit"
namespace="AjaxControlToolkit" tagprefix="asp" %>
此外,您还要确保web.config
文件中没有重复的部分。