Advertisement
Guest User

tonyukuk

a guest
Sep 3rd, 2010
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. bibince this is the code to get content from rss Feed:
  2. [code]
  3. <x:forEach begin="0" end="4" var="story"
  4. select="$doc/rss/channel/item" varStatus="status">
  5. <div class="kategorihaberleri">
  6. <div class="row" onclick="location.href='<x:out select="link" escapeXml="false"/>'">
  7. <table id="feed" cellspacing="0" cellpadding="2" class="haberon">
  8. <tbody>
  9. <tr>
  10. <td valign="top" class="kresim">
  11. <img src=" <x:out select="image" /> "></td>
  12. <td valign="top" style="vertical-align: top;">
  13. <h2><x:out select="title" /></h2>
  14. <x:out select="description" escapeXml="false"/>
  15. </td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. </div>
  20. </div>
  21. </x:forEach>
  22. [/code]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement