Hi
I've created a completely standard, empty web project in VS 2012 / 2013 - and the 2013 version doesnt allow me to see the png sprites and style sheets that _should_ be served by WebResource.axd. The Telerik.Web.UI.WebResource.axd requests seem to work just fine.
In both projects I've referenced the Bin45 versions of Telerik.Web.UI.dll and Telerik.Web.UI.Skins.dll, located in the "dependencies" folder, but deleted to save file size in the upload.
In the 2013 version I have removed a reference to System.Core (probably irrelevant) and I have aligned the minor differences between the two project's web.config files. None of the changes I made caused any differences whatsoever.
I'm attaching screenshots of the 2012/2013 differences.
This is a copy of a support ticket I created, I'll post an answer here if I get one before the forum manages to fix the problem :o)
Here is the web.config that works in 2012, but not in 2013
The GridTest.aspx file
And the GridTest.aspx.cs
I've created a completely standard, empty web project in VS 2012 / 2013 - and the 2013 version doesnt allow me to see the png sprites and style sheets that _should_ be served by WebResource.axd. The Telerik.Web.UI.WebResource.axd requests seem to work just fine.
In both projects I've referenced the Bin45 versions of Telerik.Web.UI.dll and Telerik.Web.UI.Skins.dll, located in the "dependencies" folder, but deleted to save file size in the upload.
In the 2013 version I have removed a reference to System.Core (probably irrelevant) and I have aligned the minor differences between the two project's web.config files. None of the changes I made caused any differences whatsoever.
I'm attaching screenshots of the 2012/2013 differences.
This is a copy of a support ticket I created, I'll post an answer here if I get one before the forum manages to fix the problem :o)
Here is the web.config that works in 2012, but not in 2013
<?
xml
version
=
"1.0"
?>
<!--
For more information on how to configure your ASP.NET application, please visit
-->
<
configuration
>
<!--
For a description of web.config changes for .NET 4.5 see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <
httpRuntime
> tag.
<
system.Web
>
<
httpRuntime
targetFramework
=
"4.5"
/>
</
system.Web
>
-->
<
system.web
>
<
compilation
debug
=
"true"
targetFramework
=
"4.5"
>
<!-- this section is added because it was in the VS2013 solution -->
<
assemblies
>
<
add
assembly
=
"System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"
/>
<
add
assembly
=
"System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"
/>
<
add
assembly
=
"System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
/>
</
assemblies
>
<!-- end section added -->
</
compilation
>
<!-- this section is added because it was in the VS2013 solution -->
<
httpRuntime
targetFramework
=
"4.5"
/>
<!-- end section added -->
<
pages
controlRenderingCompatibilityVersion
=
"4.0"
/>
<
httpHandlers
>
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
verb
=
"*"
validate
=
"false"
/>
</
httpHandlers
>
</
system.web
>
<
system.webServer
>
<
validation
validateIntegratedModeConfiguration
=
"false"
/>
<
handlers
>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
/>
</
handlers
>
</
system.webServer
>
</
configuration
>
The GridTest.aspx file
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="GridTest.aspx.cs" Inherits="EmptyVs2012withTelerik.GridTest" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadStyleSheetManager
ID
=
"RadStyleSheetManager1"
runat
=
"server"
>
</
telerik:RadStyleSheetManager
>
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
>
</
telerik:RadAjaxManager
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
<
Scripts
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.Core.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQuery.js"
>
</
asp:ScriptReference
>
<
asp:ScriptReference
Assembly
=
"Telerik.Web.UI"
Name
=
"Telerik.Web.UI.Common.jQueryInclude.js"
>
</
asp:ScriptReference
>
</
Scripts
>
</
telerik:RadScriptManager
>
<
div
>
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
AllowPaging
=
"True"
CellSpacing
=
"0"
GridLines
=
"None"
>
</
telerik:RadGrid
>
</
div
>
</
form
>
</
body
>
</
html
>
And the GridTest.aspx.cs
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Web;
using
System.Web.UI;
using
System.Web.UI.WebControls;
namespace
EmptyVs2012withTelerik
{
public
partial
class
GridTest : System.Web.UI.Page
{
protected
void
Page_Load(
object
sender, EventArgs e)
{
var persons =
new
List<Person>();
persons.Add(
new
Person() { FirstName =
"Jan"
, LastName =
"Hansen"
, Age = 37 });
persons.Add(
new
Person() { FirstName =
"Jannik"
, LastName =
"Meibom"
, Age = 39 });
persons.Add(
new
Person() { FirstName =
"Anne"
, LastName =
"Hansen"
, Age = 40 });
persons.Add(
new
Person() { FirstName =
"Jan"
, LastName =
"Hansen"
, Age = 37 });
persons.Add(
new
Person() { FirstName =
"Jannik"
, LastName =
"Meibom"
, Age = 39 });
persons.Add(
new
Person() { FirstName =
"Anne"
, LastName =
"Hansen"
, Age = 40 });
persons.Add(
new
Person() { FirstName =
"Jan"
, LastName =
"Hansen"
, Age = 37 });
persons.Add(
new
Person() { FirstName =
"Jannik"
, LastName =
"Meibom"
, Age = 39 });
persons.Add(
new
Person() { FirstName =
"Anne"
, LastName =
"Hansen"
, Age = 40 });
persons.Add(
new
Person() { FirstName =
"Jan"
, LastName =
"Hansen"
, Age = 37 });
persons.Add(
new
Person() { FirstName =
"Jannik"
, LastName =
"Meibom"
, Age = 39 });
persons.Add(
new
Person() { FirstName =
"Anne"
, LastName =
"Hansen"
, Age = 40 });
persons.Add(
new
Person() { FirstName =
"Jan"
, LastName =
"Hansen"
, Age = 37 });
persons.Add(
new
Person() { FirstName =
"Jannik"
, LastName =
"Meibom"
, Age = 39 });
persons.Add(
new
Person() { FirstName =
"Anne"
, LastName =
"Hansen"
, Age = 40 });
RadGrid1.DataSource = persons;
}
}
public
class
Person
{
public
string
FirstName {
get
;
set
; }
public
string
LastName {
get
;
set
; }
public
int
Age {
get
;
set
; }
}
}