Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Content Rotator

    Sir,
    How can I check whether "content rotator" component is
    properly installed on my windows 2000 Server OS.
    Expecting an earliest reply,

    Ajai
    Ajai Kurian Guest

  2. Similar Questions and Discussions

    1. Top Story Rotator Extension
      Does anyone know of an extension similar to the ones seen on most of the major sports sites such as http://mlb.mlb.com/index.jsp and...
    2. Banner Rotator
      I have a site setup with a place for a banner at the top of the page where I want to rotate several different banners. I have tried downloading...
    3. ANN: Released the free Simple Banner Rotator for DW MX(2004)
      I have made a simple extension for the PHP_MySQL and PHP_ADODB server model which permits to rotate images in a folder at the defined interval. It...
    4. ad rotator
      can anyone recommend a ad rotator plugin for use with asp.net thanks
    5. Ad rotator object and non-random ordering?
      Has anyone tried using top to bottom ordering of ad rotation with the Ad rotator? If so how? I assume a completely custom script would be...
  3. #2

    Default Content Rotator

    Hi all,

    I'm using the content rotator to develop an app in asp. My
    code works as expected on Win2k/IIS 5.

    However, on Windows 2003 (Standard Ed.)/IIS 6, the page
    using the content rotator gives the error "64 - Host not
    available", and Technical Information "The server, while
    acting as a gateway or proxy, has lost the connection with
    the upstream content server."

    I know that the page executes, since I inserted a simple...
    response.write("testing")
    response.flush

    ....before the code that executes the contentrotator. The
    words "testing" appears fleetingly on the browser window
    (tested on Firefox1.0 as well as Internet Explorer, same
    result), followed by the error specified above. I have
    enclosed the code below. Oddly, if I remove the img tags
    from the html, there is no problem rendering the content.
    The images specified by the img tags exist, so there should
    be no problem there. In any case, as far as I understand,
    the content rotator isn't at all responsible for the
    behaviour or interpretation of the code, but is meant only
    to randomly pick up text from a file and present it to the
    calling code for processing.

    I would deeply appreciate any help on this.

    The code that runs the content rotator is:
    <html>

    <%
    set cr=server.createobject("MSWC.ContentRotator")
    response.write(cr.ChooseContent("test/rotate.txt"))
    %>

    </html>

    The contents of the file rotate.txt is:
    %%

    <body style="margin: 0px; height: 100%; width: 100%; ">
    <table width="100%" height="100%" border="0"
    cellpadding="0" cellspacing="0">
    <tr>
    <td >
    <table width="713" border="0" align="center"
    cellpadding="0" cellspacing="0">
    <tr>
    <td><img src="images/test.bmp" ></td>
    <td><img src="images/test.bmp" ></td>
    <td><img src="images/test.bmp" ></td>
    <td><img src="images/test.bmp" ></td>
    </tr>
    <tr>
    <td colspan="3"><img src="images/test.bmp" ></td>
    <td><img src="images/test.bmp" ></td>
    </tr>

    <tr>
    <td colspan="3">
    <img src="images/test.bmp" >
    </td>
    <td rowspan="5">
    <img src="images/test.bmp" >
    </td>
    </tr>
    <tr>
    <td>
    <img src="images/test.bmp" >
    </td>
    <td colspan="2">
    <img src="images/test.bmp" >
    </td>
    </tr>
    <tr>
    <td colspan="2">
    <img src="images/test.bmp" >
    </td>
    <td>
    <img src="images/test.bmp" >
    </td>
    </tr>
    <tr>
    <td colspan="3">
    <img src="images/test.bmp" >
    </td>
    </tr>
    <tr>
    <td colspan="3">
    <img src="images/test.bmp" >
    </td>
    </tr>
    </table></td>
    </tr>
    </table>
    </body>

    cirquitz Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139