delphi programming forums mysql charset mget recursive synonimos
free ventrilo servers hosting cs javascript delay python find in list
Back Forum New
abstract:

Same way our request  is also not one request but infact browser will be sending request for css/javasctip file and images seperately.
When I look at attached image from Firefox tamper data tool, I got little confused and think it one request made of multiple requests
Thanks


Hi,
When we hit some website suppose  www.mygoogle.com/index.html We send the request to the server and in turn we get response by server giving us
the desired page.
My question is will it be true that it is not one reponse but multiple reponses.
If the page has css include file/javascript  file image each will be part of seperate reponse.
Same way our request  is also not one request but infact browser will be sending request for css/javasctip file and images seperately.
When I look at attached image from Firefox tamper data tool, I got little confused and think it one request made of multiple requests
Thanks

TOP

Yes.  First the GET is made which returns the HTML and the browser looks for links to CSS, images, etc.  Then it GETs those.  So each page request can be many, many additional requests.

TOP

When you visit a URL, you make one request for the resource located there.  If that resource happens to be an html document it may include links to additional resources.  In that case, your browser will make a new request on your behalf for each resource the html document tells it to.  You will never just make one request and get multiple responses.



Same way our request  is also not one request but infact browser will be sending request for css/javasctip file and images seperately.
When I look at attached image from Firefox tamper data tool, I got little confused and think it one request made of multiple requests
Thanks

TOP

Back Forum