IMG tag not displaying image

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David C

    IMG tag not displaying image

    I have ASP (classic) code that writes out a table and sets the <img....> tag
    with a virtual directory source, e.g. src='/test/imghold/xyz.png', and the
    images do not appear on the IE page. The code is from a production site
    that works fine. We just duplicated the web site to one named test and now
    the images do not display. The IMG item is in a TD element of a table.
    Also, I looked at the "view source" of the page and it shows the <IMG
    src='/test/imghold/xyz.png'...> just fine. I even tried it with different
    images and none of them show up. Can anyone help? Thanks.

    David


  • Jeff Dillon

    #2
    Re: IMG tag not displaying image

    Check to make sure both servers have the virtual directories configured the
    same

    Jeff

    "David C" <dlchase@lifeti meinc.com> wrote in message
    news:utz#bPbvEH A.3872@TK2MSFTN GP11.phx.gbl...[color=blue]
    > I have ASP (classic) code that writes out a table and sets the <img....>[/color]
    tag[color=blue]
    > with a virtual directory source, e.g. src='/test/imghold/xyz.png', and the
    > images do not appear on the IE page. The code is from a production site
    > that works fine. We just duplicated the web site to one named test and[/color]
    now[color=blue]
    > the images do not display. The IMG item is in a TD element of a table.
    > Also, I looked at the "view source" of the page and it shows the <IMG
    > src='/test/imghold/xyz.png'...> just fine. I even tried it with different
    > images and none of them show up. Can anyone help? Thanks.
    >
    > David
    >
    >[/color]


    Comment

    • David

      #3
      Re: IMG tag not displaying image

      They are actually on the same physical server, if that helps. Also, I
      did a Server.MapPath( "/test/imghold/") on both (other was
      /imaging/imghold/) and they both returned the same physical directory.
      Both web sites have the same virtual directory named /imghold and both
      point to the same physical directory. Another process that physically
      creates the image and saves it to that directory prior to the html
      display of that image uses the same virtual path.

      David



      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • Jeff Dillon

        #4
        Re: IMG tag not displaying image

        Hard code the src attribute so it works..and look for the differences.

        Jeff
        "David" <daman@biteme.c om> wrote in message
        news:uARskJcvEH A.1452@TK2MSFTN GP11.phx.gbl...[color=blue]
        > They are actually on the same physical server, if that helps. Also, I
        > did a Server.MapPath( "/test/imghold/") on both (other was
        > /imaging/imghold/) and they both returned the same physical directory.
        > Both web sites have the same virtual directory named /imghold and both
        > point to the same physical directory. Another process that physically
        > creates the image and saves it to that directory prior to the html
        > display of that image uses the same virtual path.
        >
        > David
        >
        >
        >
        > *** Sent via Developersdex http://www.developersdex.com ***
        > Don't just participate in USENET...get rewarded for it![/color]


        Comment

        • David

          #5
          Re: IMG tag not displaying image

          Do you mean hard coded with PHYSICAL path? e.g. D:\imghold\xyz. png ?

          David



          *** Sent via Developersdex http://www.developersdex.com ***
          Don't just participate in USENET...get rewarded for it!

          Comment

          • Jeff Dillon

            #6
            Re: IMG tag not displaying image

            No..src=test.jp g

            then

            src=/test/test.jpg
            src=test/test.jpg

            try a few things

            "David" <daman@biteme.c om> wrote in message
            news:OD4cKrcvEH A.3376@TK2MSFTN GP12.phx.gbl...[color=blue]
            > Do you mean hard coded with PHYSICAL path? e.g. D:\imghold\xyz. png ?
            >
            > David
            >
            >
            >
            > *** Sent via Developersdex http://www.developersdex.com ***
            > Don't just participate in USENET...get rewarded for it![/color]


            Comment

            Working...