What are the actions that take place when we browse an ASPX page?
When we request an aspx page from the browser what are all of the files that will be downloaded to the client browser and what will run on th开发者_如何学JAVAe client and server?
If you want to get all details
i recommend you to install firebug and check the site on the mozila firefox will give you all detail.
This will depend on the ASPX page. For example if this page represents an HTML document that is eventually returned to the client (after processing it on the server) and this document references external javascripts, CSS, images, ... all those external resources will be downloaded by the client browser by sending additional HTTP requests (assuming obviously that they haven't been cached by the client browser in which case they will be served from the client cache).
Well you'll be given the requested HTML page along with any linking data used within it -- images, stylesheets, javacascript, active x objects, sound, etc.... Take a look at your Firebug's NET tab to see exactly what is being retrieved along with the page...
精彩评论