2012-01-16 13 views
1

this tutorialの後にAsp.Net MVC 3サイトでCombresを設定しようとしています。 ASP.NET MVC3 Combresエラー: 'System.Web.Mvc.UrlHelper'に 'CombresLink'の定義が含まれていません。

は、私はすべての指示に従い、私が実行したときに、私は次のエラーを取得する:

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1061: 'System.Web.Mvc.UrlHelper' does not contain a definition for 'CombresLink' and no extension method 'CombresLink' accepting a first argument of type 'System.Web.Mvc.UrlHelper' could be found (are you missing a using directive or an assembly reference?) 

Source Error: 


Line 5:  
Line 6:  @Sprite.ImportStylesheet("~/App_Sprites/") 
---> Line 7:  @Url.CombresLink("siteJs") 
Line 8:  <script src="@Url.Content("~/Scripts/excanvas.js")" type="text/javascript"></script> 
Line 9:  @RenderSection("HeadScripts", required: false) 

siteJsがconbres.xmlファイル内の私のjavascriptのResourceSet参照です。私は私のウェブ設定で :

<system.webServer> 
    <modules runAllManagedModulesForAllRequests="true"> 
     <add type="Microsoft.Web.Samples.ImageOptimizationModule" name="Microsoft.Web.Samples.ImageOptimizationModule" /> 
     <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> 
     <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> 
    </modules> 
    <validation validateIntegratedModeConfiguration="false" /> 
</system.webServer> 

(これは1、チュートリアルで言及さよりもSystem.Web.Routing.UrlRoutingModuleの異なるバージョンを使用している私は、チュートリアルIからのバージョンを参照しよう。私は古いDLLを持っていないのでできません。)

これを正しく設定するにはどうしたらいいですか?ビューの

答えて

1

は、あなたは私がWebConfigのファイルに名前空間を置くことができると考え

@using Combres.Mvc 
+0

が含まれています。それをビューに入れて問題を解決しました。 – NetHawk

+0

http://stackoverflow.com/questions/18254158/facing-issue-while-trying-to-cache-images-js-files-using-combres-nuget-package –

関連する問題