Web Forms :: Optimize ScriptResource.axd And WebResource.axd To Reduce Page Size?

Dec 14, 2010

In my web application, I have used AJAX Toolkit and my .net version is 3.5. When I run the application and save the page, so many ScriptResource.axd and WebResource.axd generate which makes the file size 200 to 300 KB more big. After doing the same procedures mentioned in the above link, it was working fine as all ScriptResource.axd and WebResource.axd file is removed.

But when I go from one page to another page using on click, then Object Expected Error comes and when I debug it,I found one ScriptResource.axd file containing query string like .axd?d=-bA.like this and Request. GetResponse cannot find the file and it gives 404 errror (File Not Found).

View 3 Replies


Similar Messages:

Web Forms :: Combining WebResource.axd And ScriptResource.axd Files?

Mar 25, 2010

combining these type of files so that there are fewer http requests? Or for that matter any other tips on making them more efficient?

View 5 Replies

AJAX :: Scriptresource.axd And Webresource.axd?

Mar 21, 2010

My website is looking in the wrong place for the scriptresource.axd and webresource.axd. How do I point it at the correct subfolder? Or how do I set it so that scriptresource.axd and webresource.axd are stored in the root of the website?All the ajax is done within subfolders. The web.config is at the root of the website.

View 2 Replies

Webresource.axd / Scriptresource.axd And Javascript Files Not Getting Cached?

Jun 9, 2010

I built the asp.net website in release mode, set the debug flag to false in web.config, but still some of the webresource.axd and scriptresource.axd and javascript files are not getting cached. fiddler shows the status code "200" for these items instead of "304". what else I am missing to cache these files?

View 1 Replies

AJAX :: Sys Is Undefinded - WebResource.axd ScriptResource.axd 404 Error?

Jul 12, 2010

I have a site that uses the Ajax Control Toolkit that's been running for several weeks and a week ago all of a sudden users are seeing script errors. I'm getting 'Sys' is undefined errors, as well as 'object required' and other JavaScript exceptions. The site does not function because of this.

I checked the page source and looked for the WebResource.axd and ScriptResource.axd's and tried navigating to them directly by putting the URL in the browser. I got a 404 error - file not found. If I do the same in our test environment, it comes back and asks me if I want to save or open the file. If I open it, I see the JavaScript that I am expecting (from the Ajax Control Toolkit).

In our test environment, with the same code, everything works fine. This tells me there was something on the production server that's preventing this from working. About 4 days before this started happening, we found that some user documentation (PDF) wasn't being protected by Forms Authentication (we need only legitmate users having access to it) so we added a wildcard mapping in IIS with "verify that file exists" was unchecked, knowing that if it were checked, we'd have this problem. I had one of the network admins check this setting after this started happenig and he said that it was still unchecked. I asked him to remove the wildcard mapping altogether and I still see the same behavior.

I am certain that this isn't a coding problem; again, as it went through the QA process in our test environment, everything works perfectly. And after the last deployment to production three weeks ago, everything was perfect as well. We added the wildcard mapping (which shouldn't have had an effect) and four days later the site breaks. I've asked our IT department if any changes were made to the server recently and nobody says they did.

What settings does anyone know of that might be causing this, either server or application? I checked the web.config and all the sections are there that deal with the ScriptResource HttpHandler and HttpModules. In fact, the web.configs are identical between the production and test environment, so I know it hasn't been tampered with.

View 4 Replies

AJAX :: How To Change Path Of ScriptResource.axd And WebResource.axd

Apr 12, 2010

Is there any way to change the path of both ScriptResource.axd and WebResource.axd to a relative path (remove the leading the "/")?

View 4 Replies

Web Forms :: How To Reduce Size Of Barcode Font In C#

Sep 30, 2012

i want to reduse the size of barcode image in this code . i tried to reduce but its cutting the number ...  how can i reduce the size of this barcode image

string barCode = TextBox2.Text;
System.Web.UI.WebControls.Image imgBarCode = new System.Web.UI.WebControls.Image();
using (Bitmap bitMap = new Bitmap(barCode.Length * 40, 80))

[Code]....

View 1 Replies

Web Forms :: Reduce Image Size And Dimensions Using C#

May 30, 2012

I have many image in my page my images size are between 100 -200kb I want redeuce my images size to 4-5Kb ... How I can do it? is there any control to do it?

View 1 Replies

Web Forms :: Reduce Image Size While Fetching From Database

Feb 25, 2016

I have stored images in folder each images is more than 700kb so datalist binding process became slow.so it is possible that while loading record and corresponding images from folders Can I reduce the image size or compress images so that record fetching become faster.In database i m stroing image path and image is stored in directory.

View 1 Replies

How To Reduce Box Size

Aug 13, 2010

I have the line where is goes "Hide Suggested budget with tolerance %' then the box is too large. It is almost fine, you can see here

[URL]

The box holding the '5' for the Tolerance percent is too large. How can I reduce this?

the code for all this area is here:

[URL]

View 2 Replies

Web Forms :: Without Effecting Quality Reduce Image File Size While Resizing Saving To Folder

Aug 31, 2013

I have uploaded a .jpg image and resized as Small and Large thumbnail. The small image is (135 X 173) but after resizing the small thumbnail image file size is of 40.8 KB. And mostly all images (around 64) thumbnails having file size more than 40 KB. Due to which thumbnails taking lot of time to get display.

Is there a way through which we can reduce the image file size upto 8 to 12 kb, but without effecting image quaity??

Below is the source code that i am using for resizing an image:

If FileUpload1.HasFile Then
Dim stream As Stream = FileUpload1.PostedFile.InputStream
Dim x As String = IO.Path.GetExtension(FileUpload1.FileName).ToLower
If x = ".jpg" Or x = ".jpeg" Then
Dim image As New Bitmap(stream)

[Code] .....

View 1 Replies

Reduce PDF Size On Upload To Database?

Oct 25, 2010

I have an application that allows users to upload a pdf. I am saving the PDF into SQL (I know already this is not the best practice, but it was not my decision) and I need to some how duing this upload process reduce the size of the pdf. Is there a way to get the uploaded file, reduce its size, then stream it to SQL?

View 12 Replies

Reduce The Size of The Image In Code Behind before uploading?

Mar 18, 2011

I am using a sql server 2008 database and I am uploading images to the server using an asp.net webapplication. I have an image column that I use to store the images. I have chosen the database to store the image and not a folder on the server, because the database table will contain only very few rows. maybe close to 10 or 15 rows.

My question is, Do I have to reduce the size (dimensions and quality affecting size on disc in kbs) of the image in code behind before uploading it to the database or do I keep it as is. The total upload size permitted is 200kb. I am thinking that when the image size (size in kbs) is small my webapplication performance will not be affected when displaying them from the database.

View 6 Replies

Controls :: GridView Export To PDF - Reduce Font Size

Apr 4, 2013

I am using iTextSharp to convert my html page to pdf, It works perfectly.

But the size of the font is very big.

I am using the below code,

Response.ClearHeaders()
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", String.Format("attachment; filename={0}.pdf", Me.psn.Text))
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Dim sw As New StringWriter()

[Code] ....

View 1 Replies

When Load Webpage Image's File Size Stays Same Rather Then Reduce

Aug 4, 2010

when I load the web page the image's file size stays the same rather then reduce.

[Code]....

View 54 Replies

Visual Studio :: Publish The Website And Reduce Its Size By Command Line

Sep 11, 2010

We need through command line to build our site (which we already do using msbuild.exe), but the resulting files are way too many and it takes our to ftp it to the server. I am able to publish the website and reduce its size by ~90%; however, we need to do this through command line not manually using the GUI. I have read many postings but noone is clear on how to do it (and msbuild seems to no be able to do this). Can anyone provide me a link. We are using Visual Studio 2010 and DOT NET4.0

View 3 Replies

Forms Data Controls :: 11 Gridviews On Same Page - Optimize Page Load Time?

Oct 4, 2010

I have a web page which has about 11 gridviews.Hence the page takes bout 15 seconds to load.The grids are 1 below the other.They are populated at the page load.

I need a solution to reduce page load time. Is there a way,where the gridview loads only if user scrolls to it. I donot want the user to make selection for everytime he wishes to see a gridview. The page should show gridview if its data is bound to it, not waiting for entire page gridviews to get populated.

View 3 Replies

Web Forms :: Optimize Websites Load Page Time

Oct 18, 2013

How I can optimize my website's  load page time?

View 1 Replies

Web Forms :: How To Optimize Page Load With Expected 3K Records To Display

Feb 1, 2011

I am looking for a way to improve user experience on a UI that can display on average 3K records in the Grid. Today's implementation limits grid on the page to 20 records with a "Next" option to continue through the data. Requirement is to load all of the available data in one shot and allow Sorting, Filtering, etc.

Environment: ASP.NET 3.5 SP1, WCSF 2.0, IIS 7.0

View 6 Replies

AJAX :: ScriptResource.axd Is Being Invoked Several Times Per Each Aspx Page Request

Apr 1, 2010

I use ASP.NET Ajax in my web site and I am monitoring the HTTP requests per each page. I am surprised by the excessive call of ScriptResource.axd with different query string variables. I am pasting a sample of HTTP trace below. The call for ScriptResource.axd take lots time percentage out of total response time. Is this by design or there is something wrong with my AJAX configuration in web.config?

[Code]....

Actually it is degrading the performance of the application. And the user experience becoming very poor in case of lower bandwidth.

View 2 Replies

AJAX :: The Controls Inside TabContainer Size, Font Size And Location Changing After Page Refresh?

Dec 19, 2010

I am using TabContainer with some controls on each tab (asp: labels, text boxes). When redirecting to the page that contains the TabContainer, the tabs and their content loads as expected, but when there is a postback, and the page refreshes, the TabContainer UI changes - the font size of the labels gets bigger, the text boxes become bigger and their location changes a bit (not aligned as before), and the tab header is partially hidden. I am using IE7.

I dont know if this is relevant but in some of the text boxes i use edit mask extender as well for date. Also, I have used a table inside the TabContainer for layouting the controls.

View 1 Replies

Page Size As Screen Size And Scrollable Frame Inside

Aug 17, 2010

Here's the scenario:I have an asp.net webpage which displays dynamic data in a gridview.I'm using a master page to display the header and footer of the page, and this gridview is being displayed inside a div in the contentplaceholder.

The Problem:What I want is that the size of the page that is displayed remains constant for a user and must be equal to the size of their browser's available display area and the content being visible by scrolling the div.Sort of like the header and footer remain at the same position and the content inside it is scrollable.

View 1 Replies

Configuration :: Page Using Validation Throws WebResource.axd Error

Mar 3, 2011

I have a simple textbox and button on a page using validation, like so:

<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" ValidationGroup="TestV" Text="Button" />
<asp:RequiredFieldValidator ControlToValidate="TextBox1" ID="RequiredFieldValidator1" ValidationGroup="TestV" runat="server" ErrorMessage="RequiredFieldValidator"></asp:RequiredFieldValidator>
</div>
</form>
</body>
[code]...

View 1 Replies

Reduce Time Of Loading Page?

Jun 11, 2010

I am facing a problem related to webpage loading. After analysing the problem I got the conclusion that this is because of the use of third party control (Telrik Control) on the page.

it loads "ScriptResource.axd?d=VHFRlHPU4ruHmOYm-mEPLk5XeFL0XZCCksSiaq9cH120I4XzMjzdvS3A-Z1Q4FSlJuGkXycxn8tvOxEGZvni7w2&t=634068427680000000"

type of scripts on browser so it take time to load the page. Is there any way to reduce time of loading page?

View 5 Replies

Web Forms :: ScriptResource.axd PageRequestManagerServerErrorException (Server Error 500)?

Mar 29, 2011

When I have a string in a textbox starting with a < sign, it causes server error 500 during post back. Is this a known issue?

Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500
Line: 604
Char: 13
Code: 0
URI: http://.../ScriptResource.axd?d=.....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved