Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Some images cannot display in IE6

Some images cannot display in IE6

Scheduled Pinned Locked Moved ASP.NET
help
11 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    smraj1503
    wrote on last edited by
    #1

    Hi... In my website uploaded some images and it will be successfully uploaded into the site. But images cannot display in IE6 it will shows a white box with left hand side having a Red 'X' in this image spaces. But i will run in firefox it will display images...anybody give solution to this problem... Thanks in Advance...

    A 1 Reply Last reply
    0
    • S smraj1503

      Hi... In my website uploaded some images and it will be successfully uploaded into the site. But images cannot display in IE6 it will shows a white box with left hand side having a Red 'X' in this image spaces. But i will run in firefox it will display images...anybody give solution to this problem... Thanks in Advance...

      A Offline
      A Offline
      ais07
      wrote on last edited by
      #2

      If you are using javascript then there are some property which IE doesn't support.You have to check for thos property.

      S 1 Reply Last reply
      0
      • A ais07

        If you are using javascript then there are some property which IE doesn't support.You have to check for thos property.

        S Offline
        S Offline
        smraj1503
        wrote on last edited by
        #3

        Hi.. I will retrieve image path from database to show the images iam didnt use any java script to display iamges... give any ideas Thanks

        L A A 3 Replies Last reply
        0
        • S smraj1503

          Hi.. I will retrieve image path from database to show the images iam didnt use any java script to display iamges... give any ideas Thanks

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          can you send me the link where the images are displayed. It will assist me to check the problem

          Regards Aman Bhullar www.arlivesupport.com[^]

          S 1 Reply Last reply
          0
          • L Lost User

            can you send me the link where the images are displayed. It will assist me to check the problem

            Regards Aman Bhullar www.arlivesupport.com[^]

            S Offline
            S Offline
            smraj1503
            wrote on last edited by
            #5

            www.subhamalai.com then goto quicksearch search the male it will displays

            L 1 Reply Last reply
            0
            • S smraj1503

              Hi.. I will retrieve image path from database to show the images iam didnt use any java script to display iamges... give any ideas Thanks

              A Offline
              A Offline
              ais07
              wrote on last edited by
              #6

              What you are using to retrieve Images from database.Can you paste some code here.

              S 1 Reply Last reply
              0
              • A ais07

                What you are using to retrieve Images from database.Can you paste some code here.

                S Offline
                S Offline
                smraj1503
                wrote on last edited by
                #7

                <asp:DataList ID="DListSearch" runat="server" ShowFooter="true" Width="100%" GridLines="Horizontal" ShowHeader="False" OnItemCommand="DListSearch_ItemCommand" Font-Names="Times New Roman" OnSelectedIndexChanged="DListSearch_SelectedIndexChanged" Height="100%"> <ItemTemplate> <asp:Panel ID="Panel2" runat="server" BorderColor="#6699cc" BorderWidth="1px" Width="100%" Height="100%"> <table style="height: 217px; color: activecaption;" width="100%"> <tr> <td colspan="1" rowspan="1" style="text-align: left; border-right: #6699cc 1px solid; border-top: #6699cc 1px solid; border-left: #6699cc 1px solid; border-bottom: #6699cc 1px solid; background-color: #6699cc; width: 290px; height: 20px;"> <asp:LinkButton ID="lnkbtnUserName" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"username") %>' OnClick="lnkbtnUserName_Click" ForeColor="White" ></asp:LinkButton>   <strong><span style="color: #ffffff">ID :</span></strong> <asp:Label ID="Label3" runat="server" Font-Bold="True" ForeColor="#FFFFFF" Text='<%# DataBinder.Eval(Container.DataItem,"memberid") %>'></asp:Label></td> <td colspan="3" rowspan="1" style="text-align: right; border-right: #6699cc 1px solid; border-top: #6699cc 1px solid; font-weight: bold; border-left: #6699cc 1px solid; color: white; border-bottom: #6699cc 1px solid; background-color: #6699cc; height: 20px;">  <asp:Label ID="lblPartAge" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"age") %>' Font-Bold="True"></asp:Label> years old</td> </tr> <tr> <td rowspan="7" style="width: 290px; text-align: center"> <a href="javascript:Openpopup('Image_Detail.aspx?PId=<%# ("~/Images/")+DataBinder.Eval(Container.DataItem,"imgview") %>')"> <asp:Image ID="ImgView" runat="server" Height="116px"

                1 Reply Last reply
                0
                • S smraj1503

                  Hi.. I will retrieve image path from database to show the images iam didnt use any java script to display iamges... give any ideas Thanks

                  A Offline
                  A Offline
                  Abhijit Jana
                  wrote on last edited by
                  #8

                  So, you are uploading the image into your server and stroing the image path into database want to show the image in the image box.

                  smraj1503 wrote:

                  I will retrieve image path from database to show the images iam didnt use any java script to display iamges..

                  Right click on the Image icon and check that path is valid or not? Where did you write the code for upload and display? can you please put the code ?

                  cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net

                  S 1 Reply Last reply
                  0
                  • A Abhijit Jana

                    So, you are uploading the image into your server and stroing the image path into database want to show the image in the image box.

                    smraj1503 wrote:

                    I will retrieve image path from database to show the images iam didnt use any java script to display iamges..

                    Right click on the Image icon and check that path is valid or not? Where did you write the code for upload and display? can you please put the code ?

                    cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net

                    S Offline
                    S Offline
                    smraj1503
                    wrote on last edited by
                    #9

                    Hi.. Right click on the Image icon and check that path is valid the path display the images but the same images display in firefox...

                    A 1 Reply Last reply
                    0
                    • S smraj1503

                      Hi.. Right click on the Image icon and check that path is valid the path display the images but the same images display in firefox...

                      A Offline
                      A Offline
                      Abhijit Jana
                      wrote on last edited by
                      #10

                      smraj1503 wrote:

                      Right click on the Image icon and check that path is valid the path display the images but the same images display in firefox...

                      check the image url. This is problem with "/" in url.

                      cheers, Abhijit CodeProject MVP Web Site:abhijitjana.net

                      1 Reply Last reply
                      0
                      • S smraj1503

                        www.subhamalai.com then goto quicksearch search the male it will displays

                        L Offline
                        L Offline
                        Lost User
                        wrote on last edited by
                        #11

                        hi, i was unable to generate any search results from the site. But i read your code, try removing brackets from the image path you specified.

                        Regards Aman Bhullar www.arlivesupport.com[^]

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups