I have been spending some time optimizing a site we have that uses this
project. One question is why is there so many small ASHX files loaded
Originally.
For Example
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/prototype.ashx"></script>
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/core.ashx"></script>
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/ms.ashx"></script>
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/converter.ashx"></script>
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/AjaxPro.Services.AuthenticationService,AjaxPro.2.ashx"></script>
<script type="text/javascript"
src="/Dutchdelight/ajaxpro/General,App_SubCode_VBCode.9mh0jkra.ashx"></script>

I have done my part to combine my code into Only one Call "General".
What I was noticing it that when the page loads it receives 6 request,
why not return just 1. I understand that some of them will need to be
separated out based on how it is Cached .... but wouldn't this reduce a
little round trip overhead. Each Request has to have a header and you
have to upload or ask for the file.

I was just thinking, I would like to get some input from the group on
what they think, or maybe the reason why to have more small request.

Would a Page of the same overall size load faster if it had 100 small
request or 10 request.

I know moving it down to 1 large request wouldn't make since but
ASP.Net apps already have several and I am not sure how many request
can be handled at once but I thought around 4 was standard.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info/

Don't forget to read my blog at http://weblogs.asp.net/mschwarz/

The open source project is now located at 
http://www.codeplex.com/Wiki/View.aspx?ProjectName=AjaxPro
-~----------~----~----~----~------~----~------~--~---

Reply via email to