When my Site.Master page loads I receive the following 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: CS1525: Invalid expression term '>' It refers to the following line of code: Line 9: .DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.windows7.min.css")).Render(); My thought is that I must be missing an assembly or something. The application works fine on my test server, but after uploading, I get this. Here is the code I'm trying to process: Code: <%Html.Telerik().StyleSheetRegistrar() .DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.windows7.min.css")).Render(); %> Any help is greatly appreciated, Jim