This question is locked. New answers and comments are not allowed.
                        
                        I have the following:
Server Error in '/' Application.
Exception Details: System.IO.FileNotFoundException: Specified file does not exist: "~/Scripts/jquery-1.4.js".
Source Error:
            
                                 <%
        Html.Telerik().ScriptRegistrar()
            .DefaultGroup(group => group
                                       .Add("~/Scripts/jquery.1.4.1.min.js")
                                       .Add("~/Scripts/MicrosoftAjax.js")
                                       .Add("MicrosoftMvcAjax.js")
                                       .Add("transact.js")
                                       .Combined(true)
                                       .Compress(true))
                                       .Render();
    %>
My javascript is in the Scripts folder. All of the jQuery files are there, including the vsdocs and minified.
I get the following error:
Server Error in '/' Application.
Specified file does not exist: "~/Scripts/jquery-1.4.js".
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.IO.FileNotFoundException: Specified file does not exist: "~/Scripts/jquery-1.4.js".
Source Error:
|              | 

