HTML IMG SRC

  • Thread starter Thread starter psb
  • Start date Start date
P

psb

Hello,
I am dealing with a lot of published pages on a particular website.
(web-editor/publish/archive) It is easier for me to remove all of the
"../../imgageDir/image001.jpg" references and replace then with
http://www.aWebsite.com/imageDir/image001.jpg...

Will this slow down my website or the rendering of the html pages. It is
all happening on the same website (no external images)

ie,

<html><body>
<img src="../../imageDir/image001.jpg">
<img src="../../imageDir/image002.jpg">
</body></html>
--------------------------------------
OR
--------------------------------------
<html><body>
<img src="http://www.aWebsite.com/imageDir/image001.jpg">
<img src="http://www.aWebsite.com/imageDir/image002.jpg">
</body></html>

which one is faster?
THanks,
Paul
 
Niether is faster. Both are the same.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
Back
Top