I have written an XMLHelper as its own project within the application. After adding the 'XMLHelper' Namespace to web.config i get the following error:
The type or namespace name 'XMLHelper' could not be found (are you missing a using directive or an assembly reference?)
At this line in web.config:
<add namespace="XMLHelper" />
Here are the Using's in XMLUtil Class:
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
{
}
}
Am I missing anything here?