Intranet access

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

I made a webpage for my local intranet, put some .bmp
and .gif on the page. When I open it from the server side,
it shows everything no problem. I open it on another
system, and the page opens up, but the .bmp and .gif on
the page do not show up. I can click on the links and they
take me where I want to, just the images are not showing
up on the webpage.

I've tried putting the images in different folders and
changing the img src location, will work all the time with
the server side, but not on the client side. Is there
something else that I'm missing in the coding of my HTML
document? Or am I missing a setup option on my web server?

Thanks in advance...
 
The images are seperate files, what is there size. It's good practice to
resize the images with a program like Photoshop to get them down to about
25k - 40k. The reason I bring this up is you said one of the images was a
bitmap file which are very large ( in the megabytes).
 
Thanks for the response. The files are very small, the
size of the .bmp is only 215KB. But the size of my files
shouldn't matter, seeing as it's only on my local network
and I have 100Mb network connections. I have .jpg files
as little as 4k and they don't show up at all, just when
I open up the page on the server side, then they show up.
I'm just thinking I'm not pointing to the images with the
right html code. I've built my own sites before, and had
them hosted, and never had problems with images showing
up. I just don't understand this particular situation.

I've tried omitting the drive letter that my images are
stored on in the code, and they still show up when I open
the webpage on the server side, but nothing still on the
client side(no images, but the page opens up)....hmmmm...
 
I always have the images in the same folder as the htm file. Then in the htm
file I do not put any path. This is a snippit of code that I use on one of
sites that I created and manage.

<table width=30% align=right cellpadding=5 cellspacing=10 >

<tr>
<td><P><img src="gvc1a.jpg" width=499 height=299></p></td>
</tr>

<tr>
<td><P><font size=-2>Sewer Separation Project Linton Road
Lynn, Massachusetts
</font></p></td>
</tr>
</table>

as you see there isn't any path.
 
Thanks for the response again. I will give that a go and
let you know how it works out. Thanks!!
 
That worked just fine. Thanks for all your help. I figured
it was the html coding in some way. Once again, thanks.
 
Back
Top