This question is locked. New answers and comments are not allowed.
I get the following error when trying to run the page for the first time:
CS1061: 'Telerik.Web.Mvc.UI.ScriptRegistrarBuilder' does not contain a definition for '__w' and no extension method '__w' accepting a first argument of type 'Telerik.Web.Mvc.UI.ScriptRegistrarBuilder' could be found (are you missing a using directive or an assembly reference?)
I've already setup a reference, name space in the web.config, copied the scripts and css to their directories and then added :
to the <head> section of my master page. Did I miss a step?
CS1061: 'Telerik.Web.Mvc.UI.ScriptRegistrarBuilder' does not contain a definition for '__w' and no extension method '__w' accepting a first argument of type 'Telerik.Web.Mvc.UI.ScriptRegistrarBuilder' could be found (are you missing a using directive or an assembly reference?)
I've already setup a reference, name space in the web.config, copied the scripts and css to their directories and then added :
| <% |
| Html.Telerik().StyleSheetRegistrar() |
| .DefaultGroup(group => group.Add("telerik.common.css") |
| .Add("telerik.vista.css")) |
| .Render(); |
| %> |
to the <head> section of my master page. Did I miss a step?