0

アプリケーションは正常に動作しているようですか?しかし、ログにこれらの例外が表示され続けます。

2013-03-11 11:32:46,736 [30] DEBUG COPSGMIS.Logging.GMISLogging - Executing controller: Home, action: Index
2013-03-11 11:32:48,934 [30] ERROR COPSGMIS.MvcApplication - GMIS Exception
System.Web.HttpException (0x80004005): The controller for path '/GMIS/ie-css3.htc' was not found or does not implement IController.
   at System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType)
   at System.Web.Mvc.DefaultControllerFactory.CreateController(RequestContext requestContext, String controllerName)
   at System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory)
4

3 に答える 3

0

これを試して。この行を追加します

routes.IgnoreRoute("GMIS/ie-css3.htc");

MapRouteの通話の上

于 2013-03-11T15:54:07.440 に答える
0

ie-css3.htcをコンテンツフォルダに配置し ます。

于 2013-03-11T17:27:12.420 に答える
0

なぜ私がそれを見落としたのかわからない..私のスタイルシートには次のものがあった:

behavior: url(ie-css3.htc);

それは次のようにする必要がありました:

behavior: url(../Content/ie-css3.htc);
于 2013-03-11T18:36:42.907 に答える