NetTalk Central

Author Topic: NetWebPage not refreshing by timer  (Read 2850 times)

Alberto

  • Hero Member
  • *****
  • Posts: 1873
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
NetWebPage not refreshing by timer
« on: May 09, 2015, 03:44:07 AM »
Hi,
I know it is a bad code problem, then I cut and cut code till I found what is the problem.

If I add a logo at the top of the page using:

<a href="http://www.portfoliofinanciero.com.ar" target="_blank"><img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;"></a>

Then the NetWebPage refreshes only once.

If I cut this code it refreshes ok every 11 seconds.

For what it worst, here is the code from the head:

</head>
<body class="nt-body">
<div id="body_div" class="nt-body-div">
<div id="menuwin_div"   data-role="header">
<div id="wb_Titulo" style="z-index:0;" align="center">
<a href="http://www.portfoliofinanciero.com.ar" target="_blank"><img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;"></a>
<p><b><font color="#808080" size="5">
PortIt web server - Michelis
</font></b></p>
</div>

next comes a double drop menu

I need to add this logo, then whats wrong with this code?

Thanks
-----------
Regards
Alberto

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: NetWebPage not refreshing by timer
« Reply #1 on: May 11, 2015, 05:18:00 AM »
>> I need to add this logo, then whats wrong with this code?

It is not xHTML because the <img> tag is not closed. try;

<a href="http://www.portfoliofinanciero.com.ar" target="_blank">
  <img src="images/logo_PF_ARMi.png" id="Image1" alt="" border="0" style="width:118px;height:118px;" />
</a>