webresource.axd

ASP.NET web application - WebResource.axd and ScriptResource.axd files - Loading time issue

假装没事ソ 提交于 2019-12-02 18:31:25
. Hi, We are building an ASP.NET application with C#.net as language. Here, when the IIS renders a page & when we analyze the page code with YSlow tool it shows many WebResource.axd and ScriptResource.axd files (as we are referring many script files in the page). Server-side code is executing fast but loading of these .axd files is taking time. So would you please guide me on this, if there is a way to optimize or suppress these axd files? If would be great if you could also provide a reference document or web references (If needed). Many Thanks, Regards. jrummell WebResource.axd and

WebResource.axd throwing exceptions in web farm

左心房为你撑大大i 提交于 2019-12-01 11:16:47
问题 We have an array of about 12 servers serving a website. Over the past few hours, one single server has started throwing exceptions for WebResource.axd and ScriptResource.axd requests. Exception System.Web.HttpException - This is an invalid script resource request. Stack Trace at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication

WebResource.axd not working with Internet Explorer 11

时光毁灭记忆、已成空白 提交于 2019-11-30 15:23:36
We're testing our websites for the new Windows 8.1 IE 11 browsers classic and metro. There is a Javascript file embedded in WebResource.axd . The WebResource is generated and loaded fine with Firefox,Google Chrome and IE 11 with the site added in Compatibility View. The only issue is IE 11 both classic and metro where the WebResource is not loaded. I am not seeking a precise answer but what confuses me is , I can't see the WebResource <script> tag in the generated HTML. Neither can I see any request made for the resource which is kind of implicit. Now my question is where could be the issue ,

WebResource.axd error - “This is an invalid webresource request.”

折月煮酒 提交于 2019-11-30 14:06:36
问题 I have a large .NET 2 web application that has been updated to target the .NET 4.0 framework. Since the update, I am seeing the following error recurring regularly in my logs: This is an invalid webresource request. The resource requested is " ~/WebResource.axd " As far as I can tell, the request looks fine in that there's a long querystring with keys (keys are d , t ) and values for those keys. Has the mechanism for generating requests to WebResource.axd changed between framework versions?

Why is my ASP.NET page injecting this WebResource.axd Javascript file?

此生再无相见时 提交于 2019-11-30 09:54:51
When I view source on my ASP.NET page I get the following snippet: <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=5lheyan7fritNTjDRpG8vA2&t=633734967316503584" type="text/javascript"></script> the .aspx file looks kinda like this: <%@ Page Language=

Ajax Control Toolkit is loading too many script resources

為{幸葍}努か 提交于 2019-11-30 09:04:37
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 worried because I know that this can affect the loading time of the page. Is it normal? What can I do?

ASP.NET: WebResource.axd call 404 error: how to know which assembly/resource is missing or responsible?

折月煮酒 提交于 2019-11-28 19:16:04
I get a 404 HTTP status error (not found) on a specific WebResource.axd call inside an ASP.NET 3.5 (AJAX) web application. I guess the error is thrown because a specific referenced assembly is missing in the bin folder/GAC. But I don't know which, since the page which requests the resource is very complex (I'm using third-party controls and ASP.NET Ajax.) Is it possible to know from the encrypted "d" querystring parameter of the query, like: .../WebResource.axd?d=... which assembly should create the content and is possibly missing? Note: There are other WebRequest.axd calls which execute with

Invalid Webresource.axd parameters being generated

末鹿安然 提交于 2019-11-28 07:38:18
Original Question: We have an odd error with WebResource.axd url generation. (It does not seem to be related to the fairly common "WebRsource.axd Padding is invalid and cannot be removed" issue). We have an ASP.NET web page that, when created, adds a script reference to WebResource.axd. In this case, we're seeing that the WebResource.axd link occasionally turns into garbage past a certain point, replaced by what looks like javascript. Worse yet, the url generation failure seems to be inconsistant. In our case, the link should (and usually does look like): /WebResource.axd?d=D-wd7RbHCvSp

“Padding is Invalid and cannot be removed” exception on WebResource.axd

北城余情 提交于 2019-11-27 19:01:33
I have an ASP.NET 2.0 application that is working fine in our local environment. When published to a test server, we're getting intermittent errors on the server. Here's the most common: Padding is invalid and cannot be removed. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Security.Cryptography.CryptographicException: Padding is invalid and cannot be removed. Source Error: An unhandled exception was generated during

Invalid Webresource.axd parameters being generated

久未见 提交于 2019-11-27 05:45:08
问题 Original Question: We have an odd error with WebResource.axd url generation. (It does not seem to be related to the fairly common "WebRsource.axd Padding is invalid and cannot be removed" issue). We have an ASP.NET web page that, when created, adds a script reference to WebResource.axd. In this case, we're seeing that the WebResource.axd link occasionally turns into garbage past a certain point, replaced by what looks like javascript. Worse yet, the url generation failure seems to be