RadGrid Filter and RadDataPicker images are not displaying on Live Server asp.net
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
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"/>
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!
精彩评论