scriptresource.axd

SSRS IE8 JavaScript Error Invalid Character ScriptResource.axd

て烟熏妆下的殇ゞ 提交于 2019-12-30 05:21:08
问题 A colleague of mine has produced various reports in SSRS. We have 2 machines in the office that are failing to load the report via Internet Explorer 8. Both machines are returning a JavaScript error at the Reports 'Loading' screen. On these particular machines, the reports load fine in FireFox so I am guessing that it is IE related. Both Machines are running IE8. Any help would be greatly appreciated. The JavaScript error detail is as below:- Webpage error details User Agent: Mozilla/4.0

Ajax Control Toolkit is loading too many script resources

断了今生、忘了曾经 提交于 2019-12-30 03:12:32
问题 I created a new project. I installed Ajax Control Toolkit from NuGet. Then I created a new page aspx with following code: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <ajaxToolkit:ToolkitScriptManager ID="toolkitScriptMaster" runat="server"> </ajaxToolkit:ToolkitScriptManager> hello!!!! </div> </form> </body> </html> I was dumbfounded when I saw that ajaxtookit created 152 scriptresources files. I am

Getting error in ScriptResource.asxd after migrating website from target framework 3.5 to 4.5

泪湿孤枕 提交于 2019-12-24 03:12:23
问题 My website was in initially at target framework 3.5, and i have changed it to 4.5, everything works fine , when i click button on a page where script manager is added it shows following exception: Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManager ServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500 whenever i click this compiler button in my page it shows the above

Getting error in ScriptResource.asxd after migrating website from target framework 3.5 to 4.5

◇◆丶佛笑我妖孽 提交于 2019-12-24 03:10:22
问题 My website was in initially at target framework 3.5, and i have changed it to 4.5, everything works fine , when i click button on a page where script manager is added it shows following exception: Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManager ServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500 whenever i click this compiler button in my page it shows the above

Compress and Minify WebResource.axd and ScriptResource.axd in ASP.NET 4 WebForms

倾然丶 夕夏残阳落幕 提交于 2019-12-19 21:54:24
问题 I have been trying for a week now to reduce the number of requests on our web application but I can't seem to combine the .axd files. I got a suggestion from somewhere which worked locally (development box) but doesn't work on our test and production environment as they are both on HTTPS . The developer didn't comment on that and the component he wrote was last updated in 2011. (I will find the link and update this post). I tried using the CompositeScript in ScriptManager and again it doesn't

WebResource.axd and ScriptResource.axd weird behaviour

南楼画角 提交于 2019-12-12 11:17:05
问题 I am building a website, to be used primarily in my internal network. I am facing a very frustrating problem with AJAX .NET. To explain the problem, first let me detail out my environment. I am developing in Visual Studio .NET 2010, targeting .NET framework 4.0. My staging server is a win7 utlimate machine having the complete configuration of IIS 7 installed. I am using MySql Server 5.1 as my database server The staging server has the required MySQL connectors installed I am using the

Remove all .axd files from a webpage in ASP.NET 4.0

给你一囗甜甜゛ 提交于 2019-12-12 02:08:57
问题 I have added Ajax ToolKit in my website, but due to heavy load on the page we want to remove the Ajax Tool Kit. To remove I deleted the file from the bin folder, Removed the control tab from Tools. Now when I run the website, I see certain Webresource.axd? and Scriptresource.axd? script files in the project. One file is too heavy around 55 KBs which affects the load time of the page. Note: I am using Script Manager and update panel on the page, but all reference to Ajax ToolKit is removed. my

How do I force ASP.NET Ajax to use a script from the FS and not WebResource.axd, or to reduce its HTTP requests?

点点圈 提交于 2019-12-08 06:31:17
问题 Here is a hum-dinger of a problem that I have not found an answer for. I am using the ASP.NET ajax control toolkit controls on a few pages, which by nature want to load script resources via WebResource.axd. This is all well and good for some applications, but each call to WebResource.axd requires an HTTP request. Most pages will pull at least 3 or 4 resources from the WebResource.axd, so this many HTTP requests are issued for each page. Since having too many HTTP requests will negatively

WebUIValidation.js gets reloaded in async calls when in CompositeScript and UpdatePanel

空扰寡人 提交于 2019-12-06 08:29:06
问题 My scenario: I have a validator in an UpdatePanel . I want to combine my scripts so I am using CompositeScript in ScriptManager , and including a reference to WebUIValidation.js I am using .NET 4.0 My problem: When I asynchronously update the panel, .NET loads WebUIValidation.js (in a Scriptresource.axd file) in the async response, even though it has been loaded in the initial CompositeScript -generated script. This is a problem because I have custom code that hijacks some functions in

WebUIValidation.js gets reloaded in async calls when in CompositeScript and UpdatePanel

旧街凉风 提交于 2019-12-04 14:23:54
My scenario: I have a validator in an UpdatePanel . I want to combine my scripts so I am using CompositeScript in ScriptManager , and including a reference to WebUIValidation.js I am using .NET 4.0 My problem: When I asynchronously update the panel, .NET loads WebUIValidation.js (in a Scriptresource.axd file) in the async response, even though it has been loaded in the initial CompositeScript -generated script. This is a problem because I have custom code that hijacks some functions in WebUIValidation.js , and the async response overrides my hijacks. If you move the reference to