Images were not displaying in the B2B web shop for the products

Hi,
We have an issue with Product catalog images.we maintained images for the products and replicated(Initial) to TREX server,replication was successfull,but the images were not displaying in the b2b webshop for the products.
Anyone suggest what could be the problem?
Regards,
PV.

Hi,
The problem could because of following issues.
1) The replication is not done properly
2) The XCM doesn't have Image server's settings(URL)
3) The Image server is not reachable from ISA application.
4) The image server is not connected through HTTP.
Please check.
Regards,
Sateesh Chandra

Similar Messages

  • Any suggestions about why images are not displaying in a published web gallery?

    A web gallery generated in Lightroom 3 in 2008 was certainly working correctly when originally published to our (Guernsey Museum) website and still functions correctly from the staging server across our intranet. I have republished it from the staging server (via Dreamweaver) and checked that all the files are present on the live site but still the images refuse to show. The audio associated with the images and the gallery framework itself does work as expected. Another gallery made later and published to the same site works exactly as it should. The ISP cannot explain why one gallery is working properly and the other is not so I'm asking here in desperation if anyone has any insight into possible causes. The (Book of Sark) gallery which doesn't work is here:
    http://www.museums.gov.gg/BkSark/gallery/html/index.html
    The (Peoples Choice) gallery which does work is here:
    http://www.museums.gov.gg/p-choice/index.html
    Thanks for reading this far - any helpful suggestions would be much appreciated!

    It looks like the Book of Sark gallery has photos in a bin folder.  Some servers don't like that, but it could be a clue for the ISP.

  • What are most valuable and required features in the B2B Web shop checkout?

    Hi,
    I am product manager for SAP Web Channel. I would like to use this forum as a channel to learn more about our customer's requirements for Web shop checkout. Also, I would like to gather new ideas from our customers and partners for a highly usable and functional Web shop checkout.
    What do you think are very valuable or even u201Cmust haveu201D features in a B2B scenario Web shop checkout? You can let me know checkout features that are especially relevant for your own business process. In this respect, it would be interesting to know what B2B checkout features you developed in your E-Commerce project. However, I would also like to know what features, apart from your own specific process requirements, that you would judge as very important standard B2B checkout features. Think of features such as an Ajax search for shipping addresses or payment via direct debit or 3D Secure. 
    Let me tell you upfront what I roughly understand as "checkout". Checkout for me is a process typically triggered by a 'Checkout' button in the shopping basket. As a result, a checkout page gets called. On this page or accross different sequent pages the customer is requested to enter or select certain information such as billing and shipping address(es) and payment data. This information is required by the Web shop owner in order to fulfill the customer order.
    All your ideas, feedback, and thoughts on this topic are very welcome. Please understand that providing your ideas and requirements on the checkout will not necessarily mean that SAP will develop them in the future. But every idea will broaden my mind on what are the market requirements regarding this topic.
    I hope that I can start an interesting discussion for all of you here in the forum. I will provide points for interesting ideas, thoughts and requirements.
    Greetings
    Torsten Kliesch

    Hi Sateesh,
    thanks for your feedback. I have granted you some points for it first of all. Let me ask 1-2 two questions regarding your feedback though:
    Regarding the pricing I understand your point in a way that it should be possible to display more price details in the basket or at least in the order overview of the checkout (before submitting the basket as a sales order). Meaning it should be possible to more easily switch on the display of price details like subtotal, customer discount in the basket and order overview. Is my understanding correct?
    Greetings
    Torsten

  • Delivery type unchanged in both Transaction & B2B Web shop

    Hi Gurus,
    My requirement is to change the Delivery type to 'expedited' in the b2b web shop if the gross weight is less than 4 kg. I wrote sample code, without condition, in BADI to see the delivery type change in both transaction and in webshop. It seems there is some issue with the below code I could not find any changes in .both transaction and in webshop. I tried with 'CRM_SHIPPING_CHANGE_OW'  also. But no luck. Could anly one please tell the bug in the code?
    BADI: CRM_ISA_BASKET_HEAD
    Method.CHANGEHEAD_SET_DATA
      DATA: LS_SHIPPING      TYPE CRMT_SHIPPING_COM,
            ls_shipping_com  TYPE CRMT_SHIPPING_COM,
            lt_input_field_names     TYPE crmt_input_field_names_tab,
            ls_input_field_names     TYPE crmt_input_field_names.
    Get the shipping data from ISA layer
      loop at IT_SHIPPING INTO LS_SHIPPING.
        MOVE-CORRESPONDING ls_shipping TO ls_shipping_com.
        ls_shipping_com-SHIP_COND = '02'.
    fill ct_input_fields
        ls_input_field_names-fieldname = 'SHIP_COND'.
        INSERT ls_input_field_names INTO TABLE lt_input_field_names.
    change shipping segment
       CALL FUNCTION 'CRM_SHIPPING_MAINTAIN_OW'
          EXPORTING
            is_shipping_com      = ls_shipping_com
          CHANGING
            ct_input_field_names = lt_input_field_names
          EXCEPTIONS
            error_occurred       = 1
            OTHERS               = 2.
    ENDIF.
      endloop.
    Method.:GETHEAD_GET_DATA
      DATA: LS_BASKET_HEAD       TYPE CRMT_ISALES_BASKETHEAD_UI,
            LS_FIELD_CHANGEABLE  TYPE CRMT_INPUT_FIELD_NAMES,
            LS_CRMT_SHIPPING_WRK TYPE CRMT_SHIPPING_WRK.
    *Get the changed data
      CALL FUNCTION 'CRM_SHIPPING_READ_OW'
        EXPORTING
         IV_REF_GUID                = LS_BASKET_HEAD-GUID
         IV_REF_KIND                = 'A'
       IMPORTING
         ES_SHIPPING_WRK            = LS_CRMT_SHIPPING_WRK
       EXCEPTIONS
         ENTRY_DOES_NOT_EXIST       = 1
         OTHERS                     = 2.
      IF SY-SUBRC = 0 AND LS_CRMT_SHIPPING_WRK-SHIP_COND IS NOT INITIAL.
        LS_BASKET_HEAD-SHIP_COND = LS_CRMT_SHIPPING_WRK-SHIP_COND.
      ENDIF.
    Pass back to ISA layer.
      READ TABLE CT_FIELD_CHANGEABLE INTO LS_FIELD_CHANGEABLE WITH KEY FIELDNAME = 'SHIP_COND'.
      IF SY-SUBRC  <> 0.
        LS_FIELD_CHANGEABLE-FIELDNAME = 'SHIP_COND'.
        LS_FIELD_CHANGEABLE-CHANGEABLE = 'X'.
        APPEND LS_FIELD_CHANGEABLE TO CT_FIELD_CHANGEABLE.
      ENDIF.

    In theory, ZOR orders created from both CRM GUI and B2B should use the same number range only. (internal)
    Since the B2B is not creating ZOR type, it is very likely, the shop settings are not effective.
    Check if the webshop profile you have set the ZOR is the default webshop that gets used by the B2B. This is done through webshop XCM admin.
    Or - are you using Transaction Type Group?
    Easwar Ram
    http://www.parxlns.com
    Edited by: Easwar Ram on Nov 4, 2008 4:13 PM

  • Error while opening the B2C Web Shop

    Hi All,
    Our Basis team has installed the JAVA Stack for CRM 7.0 EHP1. We can successfully open the XCM page for the web shop using the following URL: http://host:port/b2c/admin/xcm/init.do.
    We get a SAP E-Commerce Error page when we try to launch the B2C Web Shop using the following URL:
    http://host:port/b2c/b2c/init.do. The following error messages are shown along with a "Log On" button:
    An application error occurred
    A serious system error has occurred
    The shoplist read from buffer is empty
    Contact the administrator
    Log on
    I have created the Internet B2C Users& specific roles and also done the XCM Configurations (New customer configuration, General Settings & JCO Component created). Restarted the Java Application. However we still get the same error page while launching the web shop. Please help us to rectify this error.
    Also I get a blank-white page when I try to open this URL for maintaining a B2C Shop: http://host:port/shopadmin/shopadmin/init.do?configuration.xcm=Z_MY_SCENARIO
    I can successfully open the URL for SHOPADMIN XCM: http://host:port/shopadmin/admin/xcm/init.do
    Please help us to resolve the issue. How can we maintain the SHOP? Have we missed some configurations?
    Thanks !

    I am not able to open the shopadmin URL for defining a new B2C web shop. This URL does not work : http://host:port/shopadmin/shopadmin/init.do?configuration.xcm=ZMY_SCENARIO. I just get a white blank page.
    I can open the XCM for shopadmin using teh URL: http://host:port/shopadmin/admin/xcm/init.do.
    Thanks.

  • MIME object/Image(JPG) not displayed in the WAD template

    Hello all,
    I uploaded a .JPG file to mime repository. I used that object my WAD template. When i excute the Temapate, image file is not displayed just showing X mark.
    But i am able to open/see the file from the mime repository.
    What could be the problem? please let me know.
    Reagards
    Ravi

    Hi Anil,
    Thanks for your reply. I have found the problem.
    Imaage that i have kept in mime belongs to https protocol. BSP application with SSL, needs https to execute in the browser.
    when i execute the template, by default WAD is using http protocol, so the image is not displaying, when i use https, the image is being displayed in the WAD output.
    Regards,
    Ravi

  • SAP Webdispatcher :Images are not displayed after using the URL filtering

    Hello,
    I have installed the SAP webdispatcher 7.3 on Linux redhat 5.4 in front of the Portal 7.3.
    I wanted to restrict the access just for the IRJ prefix so for this i used the parameter wdisp/permission_table = PermFile
    with Permfile as follows:
    #Denial of the useradmin URL from the WebDispatcher
    P /irj*
    P /irj/*
    The filtering is working well except that for IRJ the images are not displayed so i was using so i added the following line to disply the images to the logon page
    icm/HTTP/auth_
    P /logon_ui_resources/*
    P /logon_ui_resources*
    but i still have the same issue for the irj page where no icons are displayed and i can do nothing.
    The same issue also happened when using the icm/HTTP/auth_xx
    Do you have an idea how to deal with this issue?
    Thanks in advance;
    Hassan

    Hello,
    After checking the HTTP code of the irj page on IE,  i foud the needed URL to permit so i modified the permision table and it works fine for the moement
    P /irj*
    P /irj/*
    P /logon_ui_resources/*
    P /logon_ui_resources*
    P /AFPServlet/*
    P /AFPServlet*
    P /com.sap*
    P /com.sap/*
    P /webdynpro/resources*
    P /webdynpro/resources/*
    Thanks for you help,
    Hassan

  • Image is not displayed in APEX Form with APEX utility Function

    Dear APEX experts,
    As i am new to the oracle apex development. I have just created the basic employee information form in which i upload the photograph of the employee. The photograph gets uploaded but it does not display properly. I have already referred the sample database application to display the image. Moreover, i have followed the same steps as it is used to display the product image in that application. Still i am unable to get result. I am getting following output:
    <img src="apex_util.get_blob_file?a=35682&s=101496289174102&p=15&d=10639237623242912156&i=10639236703270912154&p_pk1=21&p_pk2=&p_ck=FCA12832591A1C706D76FDD589E551A2" />
    Please help me seniors to solve this issue. How to display the image using this utility.

    mehpandya wrote:
    I have observed following HTML code after inspecting the two application.
    1.Sample Database application:
    In this application , the product image is uploaded and displayed correctly and following code is rendered in the HTML source.
    <span id="P6_IMAGE" class="display_only" ><img src="apex_util.get_blob_file?a=64703&s=134073736366663&p=6&d=25732916709090782422&i=25433760606377189086&p_pk1=1&p_pk2=&p_ck=7E23190CC0BFE98BBE4CCE2ADFBBEF26" /></span>
    2.Sample HRMS Application - Which i have created for learning.
    In this application , the employee photo is uploaded but it is not displayed correctly. Following is code is rendered in the HTML.
    "<span id="P15_EMPIMG" class="display_only" >&lt;img src="apex_util.get_blob_file?a=35682&amp;s=100541516379272&amp;p=15&amp;d=10639237623242912156&amp;i=10639236703270912154&amp;p_pk1=21&amp;p_pk2=&amp;p_ck=31A8328E0F5754D7CBD0FC0C6313B38A" /&gt;</span>"
    Hence , in my application the code is not rendered perfectly and syntax is not completed.
    following characters are rendered like this.: &lt , &quot , &gt , &amp.
    So, is this the reason of not displaying the image???Yes.
    To get a Display Item to render as HTML, in the item definition Security section set Escape special characters to No.
    For a report column, ensure the Display Text As report column attribute is Standard Report Column rather than the default Display as Text (escape special characters).
    Use a Display Image item and declarative BLOB support instead of this clunky manual method.
    Please read the FAQ and forum sticky threads (if you haven't done so already.
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    The APEX documentation is here.

  • Firefox page images do not display only text and links

    New desktop (not this one) with windows 8.1 Pro, Firefox 29, Norton Internet security. When I go to many of the Firefox pages images do not display, only text and links. This is true for the "get add-ons" page. I can search for add-ons, but when I try to install one, the installation fails. Is there a security setting in windows or NIS that is blocking Firefox images and installations? The Firefox installation went smoothly without error. Other sites do not have this problem.

    Wow! I never would have thought of that! My time settings were incorrect when I set up the PC, and I thought I set them. I did have the day, date, and time set correctly. But I did not have AM/PM set right. So, I was off by 12 hours. I corrected it and, voila, all works well.
    I'm so happy now, because I can now get all the security extensions I've grown to love:
    - NoScript
    - Ghostery
    - Better Privacy
    - Adblock Plus
    You guys are great! Thank you so much for your help.

  • Images do not display in Acmevideo sample application WebApp_8i.jws

    Hello,
    The JDeveloper 3 Acmevideo web application for Oracle8i is a nice-looking web application.
    There is a syntax fault in the Java source files WebAppReports.java, WebApp.java of the JDeveloper 3 workspace WebApp_8i.jws
    In the file acmevideo_deploy.properties I used something like this:
    ...imageURL=http://oashost:80/acmeimages/...
    All occurrences of "/topmovie.gif", "/onoracle.gif","/filmsquare.gif" in the java source files WebAppReports.java, WebApp.java should be replaced by "topmovie.gif","onoracle.gif","filmsquare.gif". Otherwise these images will not display correctly in the web application.
    I would like to know when Oracle will provide a tutorial on servlet deployment of the acmevideo web application to Oracle Application Server.
    I understand that by providng a Java Webserver servlet deployment example the JDeveloper customer is not dependent on Oracle Application Server as web server.
    How to deploy the acmevideo servlet to Oracle Application Server 4.0.8.1?
    Thank you in advance for your reaction,
    Erik Martens
    null

    Hi Erik,
    For our next release, we are actually removing the Acme Video sample application. It will be replaced with the Web Auctions demo, which was used at the most recent Oracle Open World conference.
    Instructions for deploying DBServlets to OAS 4.0.8.1 are included in the JDeveloper 3.0 release notes.
    Laura
    null

  • Banner image will not display in Dreamweaver; can you help?

    Banner image will not display in Dreamweaver; can you help?

    If the banner image is not displaying, it is either not in an acceptable web file format (optimized for web as jpg, gif or png). Or it is corrupted.  Or the path to the image file on server is broken. 
    It's impossible to say more without a link to your problem page.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Images are not displayed in Details Page of Open script

    I am trying to record a web application with open script.
    After recording the images are not displayed when playing back the script.
    Are there any option we have to enable to get the images.

    Hi
    As per default OpenScript will ignore any URL that contains an image, to change the filters you can:
    View -> OpenScript Preferences > Record -> HTTP Module -> Select the URL filters Tab to add/remove or edit any filters
    You can un-check the first one on the list to enable image recording.
    Regards
    Alex

  • Images do not display in iMessage in iOS8

    I have an iPhone 6 and iPad 2 running iOS8, and both have the same issue.
    Image attachments do not display in iMessage, but just show a blank frame with the file name and "?"
    Interestingly, it appears to have got worse since Friday.
    On Friday, it was just images from someone I know with iOS6 that were not displaying. At that point it showed "downloading" on the icon. Tapping "details' showed the image.
    Then others started to disappear from my iPhone, but iPad was fine.
    This morning, images don't show on either device in iMessage, even if looking in the details tab.
    Have tried logging out of iMessage, turning off iMessage - no joy.
    Couldn't find any other threads on this, but can't believe I'm alone on this. Have put in the iPhone community as there doesn't appear to be a generic iOS8 thread.

    Hi there
    Usually when you mix oil and water it doesn't go so well. (That was in reference to creating HTML from Word)
    Word likes to create a sub-folder for its images when it creates HTML. Usually it's a variation of the Word document file name. So if it's MyDoc, you may see something like MyDoc_Files as a folder name.
    Do you have such a folder in your project? If not, there's your answer. If so, you need to dig a bit deeper.
    Cheers... Rick
    Begin learning RoboHelp HTML 7 within the day - $24.95!
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Images are not displaying properly i.e Broken

    images are not displaying properly i.e Broken .they are not opening in any website even in facebook

    Hi Himanshu,
    Tools>Internet Options>Advanced tab, click the "Reset" button.
    Close all open IE windows and then start IE and try again.
    Post consumer questions about IE to http://answers.microsoft.com (Help>Online Support menu from IE.)... at the answers forum you have to select what version of windows and IE you are using with your question...
    which you did not stipulate here.
    You can also choose at answers your preferred language and receive an answer in your preferred language.
    Also include with your questions to answers, the FULL address of any websites you are having problems with... so that the support engineers can visit and test the web page...
    Just saying Facebook is not sufficient as when you say 'pictures' are not displaying...perhaps you mean 'video' pictures... also websites like Facebook have different addresses for different parts of the world.
    eg. http://facebook.com.au/ or http://youtube.com.au/nasa
    This forum is for questions from System Administrators who manage 100's of computers that use IE with IEAK and GPO.
    Regards.
    Rob^_^

  • Images are not displaying(PHP MySQL)

    Hi,
    I've created a database table (MySQL) to store file path of images stored in a folder but the only problem is that the images are not displaying on the web page. Here's the procedure that I've used:
    -Placed the cusor at the insertion point (div).
    -Then selected 'Insert image' from the insert menu.
    -Selected 'data sources' in the select image dialogue box.
    -Selected the 'path' field in the recordset containing the image details of the images I want to display.
    -Then OK.
    Here's the code generated:
    <td colspan="3" nowrap="nowrap"><img src="<?php echo $row_rsBanner['path']; ?>" width="950" height="141"/></td>
    Here's the client side code generated:
    <td colspan="3" nowrap="nowrap"><img src="C:/xampp/htdocs/Dirwebclient/banner3A_mod.png" width="950" height="141"/></td>
    But the funniest thing is that if I pull the image as a background of the <td> (table data) it displays perfectly.
    Here's the code:
    <td colspan="3" nowrap="nowrap" background="<?php echo $row_rsBanner['path']; ?>" width="950" height="141"></td>
    Can someone please give an idea of how I can pull the image using the <img> tag and not as a background.

    Here's the source code from the browser for pulling the photo;
    <td height="126" colspan="3"><p align="center"><img src="C:/xampp/htdocs/Dirwebclient/banner3A.png" alt="jpeg" width="950" height="124" /></p></td>
    And here's the source code for the whole page (It's quite long because I had not yet mastered CSS);
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title><style type="text/css">
    <!--
    @import url("links2.css");
    body {
    background-image: url();
    background-repeat: no-repeat;
    -->
    </style>
    <link href="style1.css" rel="stylesheet" type="text/css" />
    <link href="style2.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    <!--
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:hover {
    text-decoration: none;
    a:active {
    text-decoration: none;
    -->
    </style>
    <link href="links.css" rel="stylesheet" type="text/css" />
    <link href="copyright.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    <script src="jquery-latest.pack.js" type="text/javascript"></script>
    <script src="jcarousellite_1.0.1c4.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function() {
         $(".newsticker-jcarousellite").jCarouselLite({
              vertical: true,
              hoverPause:true,
              visible: 2,
              auto:500,
              speed:1000
    </script>
    <style type="text/css">
    <!--
    a:link {
         text-decoration: none;
    a:visited {
         text-decoration: none;
    a:hover {
         text-decoration: underline;
    a:active {
         text-decoration: none;
    -->
    </style>
    <link href="links2.css" rel="stylesheet" type="text/css" />
    <link href="link2.css" rel="stylesheet" type="text/css" />
    <link href="categories.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div align="center">
      <table width="51%" height="539" border="3" align="center" bordercolor="#008FE6">
        <tr>
          <th scope="col"><table width="85%" height="518" border="1" align="center" bordercolor="#D2EEFF">
            <tr>
              <td height="126" colspan="3"><p align="center"><img src="C:/xampp/htdocs/Dirwebclient/banner3A.png" alt="jpeg" width="950" height="124" /></p></td>
            </tr>
            <tr bordercolor="#A6DDFF" bgcolor="#A6DDFF">
              <td height="26" colspan="3" bgcolor="#A6DDFF"><table width="579" border="0" align="left">
                  <tr>
                                    <th width="573" height="20" scope="row"><div align="left"><a href="visualindex2.php?recordID=1" class="links">HOME</a></div></th>
                                    <th width="573" height="20" scope="row"><div align="left"><a href="visualindex2.php?recordID=2" class="links">ABOUT US</a></div></th>
                                    <th width="573" height="20" scope="row"><div align="left"><a href="visualindex2.php?recordID=3" class="links">SERVICES</a></div></th>
                                    <th width="573" height="20" scope="row"><div align="left"><a href="visualindex2.php?recordID=4" class="links">CONTACTS</a></div></th>
                                    <th width="573" height="20" scope="row"><div align="left"><a href="visualindex2.php?recordID=5" class="links">BOOKING</a></div></th>
                                  </tr>
                </table>
                  <table width="220" border="0" align="right" cellpadding="0">
                    <tr>
                      <td width="248"><div align="right" class="style2">
                          <div align="center">
                            <!-- #BeginDate format:fcAm1a -->Saturday, May 19, 2012 1:07 AM<!-- #EndDate -->
                          </div>
                      </div></td>
                    </tr>
                </table></td>
            </tr>
            <tr>
              <td bordercolor="#FFFFFF" bgcolor="#D2EEFF"><table width="201" height="250" border="3" align="left" cellpadding="0" bordercolor="#7DCEFF" bgcolor="#D2EEFF">
                <tr>
                  <td width="215" height="164"><div align="left">
                      <table width="199" height="77" border="0" align="center" cellpadding="0" bordercolor="#7DCEFF">
                        <tr bgcolor="#A6DDFF">
                          <td width="215" height="35"><div align="center">
                              <span class="categories">CATEGORIES</span> </div>
                              </td>
                        </tr>
                                            <tr>
                          <td height="36"><div align="left"><a href="visualindex2.php" class="links2">Plumbing</a>
                            <hr />
                          </div></td>
                        </tr>
                                            <tr>
                          <td height="36"><div align="left"><a href="visualindex2.php" class="links2">Electricals</a>
                            <hr />
                          </div></td>
                        </tr>
                                            <tr>
                          <td height="36"><div align="left"><a href="visualindex2.php" class="links2">Fittings</a>
                            <hr />
                          </div></td>
                        </tr>
                                            <tr>
                          <td height="36"><div align="left"><a href="visualindex2.php" class="links2">Roofing</a>
                            <hr />
                          </div></td>
                        </tr>
                                            <tr>
                          <td height="36"><div align="left"><a href="visualindex2.php" class="links2">Electronics</a>
                            <hr />
                          </div></td>
                        </tr>
                                          </table>
                  </div>
                    &nbsp;</td>
                </tr>
              </table>
              <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p>
                <p>&nbsp;</p></td>
              <td height="256" bordercolor="#FFFFFF"><table width="500" height="251" border="3" align="center" bordercolor="#7DCEFF">
                  <tr bordercolor="#FFFFFF">
                    <td width="469" height="247" bgcolor="#FFFFFF"><script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','499','height','245','src','images/slideview','quality','high','flashvars','flashlet={imageLinkTarget:\'_blank\',captionFont:\'Verdana\',titleFont:\'Verdana\',showControls:false,frameShow:false,slideDelay:5,captionColor:#333333,transitionsType:\'Fade\',titleColor:#333333,slideAutoPlay:true,imageURLs:[\'images/test2.JPG\',\'images/test.JPG\',\'images/test1.JPG\'],slideLoop:true,imageLinks:[\'http://macromedia.com/\',\'http://macromedia.com/\',\'http://macromedia.com/\'],frameColor:#333333,bgColor:#D2EEFF,imageCaptions:[],title:\'VISUAL CONCEPT MEDIA\'}','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','flash_component','ImageViewer.swc','movie','images/slideview' ); //end AC code
                    </script>
                      <noscript>
                      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="499" height="245">
                        <param name="flash_component" value="ImageViewer.swc" />
                        <param name="movie" value="images/slideview.swf" />
                        <param name="quality" value="high" />
                        <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:false,frameShow:false,slideDelay:5,captionColor:#333333,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:true,imageURLs:['images/test2.JPG','images/test.JPG','images/test1.JPG'],slideLoop:true,imageLinks:['http://macromedia.com/','http://macromedia.com/','http://macromedia.com/'],frameColor:#333333,bgColor:#D2EEFF,imageCaptions:[],title:'VISUAL CONCEPT MEDIA'}" />
                        <embed src="images/slideview.swf" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showControls:false,frameShow:false,slideDelay:5,captionColor:#333333,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:true,imageURLs:['images/test2.JPG','images/test.JPG','images/test1.JPG'],slideLoop:true,imageLinks:['http://macromedia.com/','http://macromedia.com/','http://macromedia.com/'],frameColor:#333333,bgColor:#D2EEFF,imageCaptions:[],title:'VISUAL CONCEPT MEDIA'}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="499" height="245"> </embed>
                      </object>
                      </noscript>                  </td>
                  </tr>
              </table></td>
              <td height="256" bgcolor="#D2EEFF"><table width="218" height="229" border="3" align="right" cellpadding="0" bordercolor="#7DCEFF" bgcolor="#EAF4F5" margin="0">
                  <tr>
                    <td width="198" height="188" bgcolor="#EAF4F5"><div id="newsticker-demo">
                      <div class="title">
                        <p class="categories">Latest News</p>
                      </div>
                      <div class="newsticker-jcarousellite">
                        <ul>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/5.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/4.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/3.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/2.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/1.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                                <li>
                            <div class="thumbnail"><img src="C:/xampp/htdocs/Dirwebclient/6.jpg" alt="jpeg" width="90" height="78" /></div>
                            <div class="info"> <a href="http://www.vladstudio.com/wallpaper/?knight_lady"></a> <span class="cat"></span> </div>
                            <div class="clear"></div>
                          </li>
                                              </ul>
                      </div>
                    </div>                <p>&nbsp;</p>
                      </td>
                  </tr>
              </table></td>
            </tr>
            <tr bgcolor="#A6DDFF">
              <td width="215" bgcolor="#D2EEFF" class="style2">&nbsp;</td>
              <td width="503" height="63" bgcolor="#A6DDFF" class="style2"><table width="479" height="61" border="0" align="center">
                  <tr>
                    <td width="558" height="57"><p align="center" class="style1">WELCOME TO VISUAL CONCEPT MEDIA</p>
                        <p align="left" class="style2">To redefine the default formatting of a specific HTML tag, select the Tag option and then enter an HTML tag in the Tag text box or select one from the pop?up menu.
    To define the formatting for a particular combination of tags or for all tags that contain a specific Id attribute, select the Advanced option and then enter one or more HTML tags in the Selector text box or select one from the pop?up menu. The selectors (known as pseudo?class selectors) available from the pop?up menu are a:active, a:hover, a:link, and a:visited.
    Select the location in which the style will be defined, and then click OK:
    To place the style in a style sheet that is already attached to the document, select the style sheet.
    To create an external style sheet, select New Style Sheet File.
    To embed the style in the current document, select This Document Only.
    In the CSS Rule Definition dialog box, select the style options you want to set for the new CSS rule. For more information, see the next section.
    When you are finished setting style properties, click OK.
    Note: Clicking OK without setting style options results in a new, empty rule.
    </p></td>
                  </tr>
              </table></td>
              <td width="219" bgcolor="#D2EEFF" class="style2"><table width="218" height="29" border="3" align="right" cellpadding="0" bordercolor="#7DCEFF">
                  <tr>
                    <td width="215"><div align="left">
                        <script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
                      </div>
                        <fb:like-box href="http://www.facebook.com/platform" width="205" show_faces="true" stream="false" header="true"></fb:like-box>
                      &nbsp;</td>
                  </tr>
                </table>
                <div align="right"></div></td>
            </tr>
            <tr>
              <td height="33" colspan="3" nowrap="nowrap" background="C:/xampp/htdocs/Dirwebclient/footer1.gif"><div align="center">
                <table width="374" align="center">
                  <tr>
                    <th class="copyright" scope="row">&copy VISUAL CONCEPT MEDIA 2011</th>
                  </tr>
                </table>
              </div></td>
            </tr>
          </table></th>
        </tr>
      </table>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Can I change the Game Center of my apps without deleting its data?

    I'll be making a new apple ID since I'm using the same with my sister. We all know that the game center helps to backup an app... So my apps is connected to the Apple ID my sister and I share and I want to connect it to the game center I will have wh

  • Hyper V in Windows 8.1 Enterprise does not work.

    Hi All, I am using Windows 8.1 Enterprise edition (Product is activated). I installed the Hyper V feature and when i open the Hyper V manager i don't see my system there. When i click on connect to server and click Local computer i get a cross mark m

  • Page Transitions

    Hi, I've created an Interactive PDF in InDesign CS4 that includes page transitions (not page turn since it's swf only). When the PDF is opened in Acrobat, is it possible to have the page transitions work outside of full screen mode? I've only been ab

  • Any negative impact on Customer system after switching on Delta...

    Hi Could u pls let me know that: 1) In general client switch on their Delta System for Data Extraction or not? 2) If they switch on Delta, Is their any negative impact on customer system? Thanks...

  • Ipod 4g wont update to IOS 6

    It would not let me . It said it was doing it then when its almost done. And error messsage pops up and it gives me 2 options Close or Setting. Iv tried it twice! Please help!!1