axd

ASP.NET AXD resources getting blocked at client side?

 ̄綄美尐妖づ 提交于 2019-12-23 12:00:30
问题 I have a web application that I am hosting, and a client of mine is reporting that certain Telerik javascript libraries that are included within the site (but not all of them) are not working properly. What I was able to diagnose so far was that at some point at the process, the WebResource.axd resources that contain the Telerik javascript code are getting blocked. Asking the client to navigate directly to the AXD file itself with the same querystring is yielding a "The connection to the

Removing all CSS from telerik controls

假装没事ソ 提交于 2019-12-07 00:07:43
问题 I'm using Telerik RadControls for ASP.NET and wondered if there was any way to turn off/stop the CSS that is automatically downloaded with the controls. I don't want to remove any of the class names that are applied to the telerik HTML elements, I just want a clean slate so that I can style them exactly how I want. The reaon I ask is that I'm trying to apply an font enlarger for people with impaired vision to my site. I can overwrite the current styles with something like: html body .RadInput

Removing all CSS from telerik controls

こ雲淡風輕ζ 提交于 2019-12-05 04:25:29
I'm using Telerik RadControls for ASP.NET and wondered if there was any way to turn off/stop the CSS that is automatically downloaded with the controls. I don't want to remove any of the class names that are applied to the telerik HTML elements, I just want a clean slate so that I can style them exactly how I want. The reaon I ask is that I'm trying to apply an font enlarger for people with impaired vision to my site. I can overwrite the current styles with something like: html body .RadInput_Default .riTextBox, div.RadComboBox_Default input.rcbInput { font-size: 0.9em !important; height: 1

Failed to load resource: net::ERR_INCOMPLETE_CHUNKED_ENCODING in IE & ASP.NET

好久不见. 提交于 2019-12-01 00:27:49
I use IExplorer 11 in Windows 8.1, and IIS and ASP.NET 4.6.1 in Windows Server 2008 R2. My ASP.NET application is WebForms and using UpdatePanels . I have handlers config: <httpHandlers> <remove path="*.asmx" verb="*" /> <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"

Failed to load resource: net::ERR_INCOMPLETE_CHUNKED_ENCODING in IE & ASP.NET

巧了我就是萌 提交于 2019-11-30 20:03:55
问题 I use IExplorer 11 in Windows 8.1, and IIS and ASP.NET 4.6.1 in Windows Server 2008 R2. My ASP.NET application is WebForms and using UpdatePanels . I have handlers config: <httpHandlers> <remove path="*.asmx" verb="*" /> <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services

How to ignore route in asp.net forms url routing

核能气质少年 提交于 2019-11-27 07:27:27
I am using the .NET 3.5 SP1 framework and I've implemented URL routing in my application. I was getting javascript errors: Error: ASP.NET Ajax client-side framework failed to load. Resource interpreted as script but transferred with MIME type text/html. ReferenceError: Can't find variable: Sys Which I believe is because my routing is picking up the microsoft axd files and not properly sending down the javascript. I did some research and found that I could use Routes.IgnoreRoute , which should allow me to ignore the axd like below: Routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); But, when I

How to ignore route in asp.net forms url routing

回眸只為那壹抹淺笑 提交于 2019-11-26 13:17:47
问题 I am using the .NET 3.5 SP1 framework and I've implemented URL routing in my application. I was getting javascript errors: Error: ASP.NET Ajax client-side framework failed to load. Resource interpreted as script but transferred with MIME type text/html. ReferenceError: Can't find variable: Sys Which I believe is because my routing is picking up the microsoft axd files and not properly sending down the javascript. I did some research and found that I could use Routes.IgnoreRoute , which should