RadGrid Filter 和 RadDataPicker 图像未显示在 Live Server asp.net 上

发布于 2024-10-31 19:57:07 字数 174 浏览 0 评论 0原文

我正在使用 Rad Grid 和 Rad Date Picker。在开发服务器上一切正常。但是当我将其托管在实时服务器上时,Rad Grid 过滤器图像和 rad 日期选择器图像未显示...

非常感谢在此处输入图像描述

I am using Rad Grid and Rad Date Picker.Everything is working fine on development server.but when i hosted it on live server, Rad Grid filter image and rad date picker image is not displaying...

thank you very muchenter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

§对你不离不弃 2024-11-07 19:57:07

听起来您可能在实时 web.config 的 部分中缺少一个条目,例如:

也来自 ,例如:

<代码><添加路径=“Telerik.Web.UI.WebResource.axd”类型=“Telerik.Web.UI.WebResource”动词=“*”验证=“假”/>

Sounds like you may be missing an entry in your live web.config's <httpHandlers> section such as:

<add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*"/>

and also from the <system.webServer><handlers> like:

<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/>

薄暮涼年 2024-11-07 19:57:07

嘿,仅供参考,我遇到了同样的问题,我检查了 web.config 中您所说要添加的条目,而我的条目已经存在,但是在我的处理程序条目中,

  <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource"/>

我删除了 preCondition 属性,突然我的服务器部署开始工作。希望它能帮助别人!

hey guys just FYI I had the same problem and I checked the entries in my web.config that you said to add and mine were already there, however in my handler entry I had this

  <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource"/>

I removed the preCondition attribute and suddenly my server deployment started working. Hope it helps someone!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文