RadGrid Filter 和 RadDataPicker 图像未显示在 Live Server asp.net 上
我正在使用 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 much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您可能在实时 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"/>
嘿,仅供参考,我遇到了同样的问题,我检查了 web.config 中您所说要添加的条目,而我的条目已经存在,但是在我的处理程序条目中,
我删除了 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
I removed the preCondition attribute and suddenly my server deployment started working. Hope it helps someone!