我在应用程序中编写了一个XMLHelper作为自己的项目。添加' XMLHelper'命名空间到web.config我收到以下错误:
The type or namespace name 'XMLHelper' could not be found (are you missing a using directive or an assembly reference?)
在web.config中的这一行:
<add namespace="XMLHelper" />
以下是XMLUtil类中的使用:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.XPath;
using System.IO;
using System.Web.Mvc;
using System.Web;
using System.Xml.Xsl;
namespace XMLHelper
{
public static class XMLUtil
{
}
}
我在这里遗漏了什么吗?