开发者

No content loads after Facebook iframe

开发者 https://www.devze.com 2023-03-10 19:20 出处:网络
I have something like this <table> <cfoutput query=\"query1\"> <tr> <td>#data#</td>

I have something like this

<table>

<cfoutput query="query1">

<tr>
<td>#data#</td>
</tr>

<tr>
<td>
<iframe src="http://www.facebook.com/plugins/like.php?href=#shorturl#"
        scrolling="no"开发者_JS百科 frameborder="0"
        style="border:none;width:280px; height:25px;" >
<iframe>        
</td>
</tr>

<tr>
<td>#data2#</td>
</tr>

<cfoutput>
</table>

I do not know what the problem is, but no other content loads after the iframe tag. #data2# nor any other new row does not load. Any ideas?


You have two opening <iframe><iframe> tags instead of an opening and a closing tag: <iframe></iframe>. That could be the problem.


You have not closed your cfoutput or your iframe, the iframe might work but you should be getting a coldfusion error from that code.

0

精彩评论

暂无评论...
验证码 换一张
取 消