Я использую asp.net c # 4.
У меня есть класс, используемый для ImageRouteHandler.
Изображения обрабатываются (поэтому я могу отображаться в моей системе), но в моих журналах я получаюэто сообщение:
System.Configuration.ConfigurationErrorsException
WebProject.Cms.BusinessLogics.SEO.Routing.ImageRouteHandler does not implement IHttpHandlerFactory or IHttpHandler.
System.Configuration.ConfigurationErrorsException: WebProject.Cms.BusinessLogics.SEO.Routing.ImageRouteHandler does not implement IHttpHandlerFactory or IHttpHandler.
at System.Web.Configuration.HandlerFactoryCache.GetHandlerType(String type)
at System.Web.Configuration.HandlerFactoryCache..ctor(String type)
at System.Web.HttpApplication.GetFactory(String type)
at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Начальная часть моего класса (я думаю, что ошибка в этой части)
public class ImageRouteHandler : IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
..........
У вас есть идеи, что не так?Спасибо