|
-
Sep 24th, 2002, 09:40 AM
#1
Thread Starter
Member
-
Sep 24th, 2002, 10:07 AM
#2
your image links are probably pointing to local files. you need to upload them to your site and change the links to point to those.
-
Sep 25th, 2002, 02:43 AM
#3
Thread Starter
Member
Is this true even if you host on an intranet?
-
Sep 25th, 2002, 08:33 AM
#4
doesnt matter. This is not an asp .net issue or any kind of web form control problem. This is basic html/http
if your image link points to file://c:\myimage.jpg no one but on your computer will see that image. That is a local file link.
the image needs to be on your web server and the image link needs to point to it using the http protocol. http://mysite/myimage.jpg
-
Sep 25th, 2002, 08:43 AM
#5
A little better explanation.
you might have the wrong idea of how viewing web pagd works. When your web browser requests an .aspx pagw(or any other page for that matter) it sends only the final html code. Nothing more. It does NOT send any kind of binary snap shot or a package with all your images in it. The web browser when it receives the html begins to create what the page will look like. when it gets to image links, it looks at the address for the image, then requests that image from whatever location it says. file:// will look on the users local drive, and http:// will look on the web server location.
So in summary, make sure your image links are pointing to web paths, not local directories because a client will not see it unless the have those images in the EXACT same directory as you do.
-
Sep 25th, 2002, 11:24 AM
#6
Thread Starter
Member
Understood... It's all clear to me now
-
Sep 25th, 2002, 11:29 AM
#7
cool
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|