Guest User

Untitled

a guest
Sep 26th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
  3. <xsl:template match="students">
  4. <html>
  5. <title>4b</title>
  6. <body>
  7. <table border="1">
  8. <tr>
  9. <th colspan="6">Student Information</th>
  10. </tr>
  11. <tr>
  12. <th>USN</th>
  13. <th>Name</th>
  14. <th>College</th>
  15. <th>Branch</th>
  16. <th>Year of Joining</th>
  17. <th>email</th>
  18. </tr>
  19. <xsl:for-each select="vtu">
  20. <xsl:if test="position()=1">
  21. <tr>
  22. <td><xsl:value-of select="usn"/></td>
  23. <td><xsl:value-of select="name"/></td>
  24. <td><xsl:value-of select="college"/></td>
  25. <td><xsl:value-of select="branch"/></td>
  26. <td><xsl:value-of select="yoj"/></td>
  27. <td><xsl:value-of select="email"/></td>
  28. </tr>
  29. </xsl:if>
  30. </xsl:for-each>
  31. </table>
  32. </body>
  33. </html>
  34. </xsl:template>
  35. </xsl:stylesheet>
  36. 4b.xsl
  37.  
  38.  
  39. <?xml version="1.0" encoding="UTF-8"?>
  40. <?xml-stylesheet type="text/xsl" href="4b.xsl"?>
  41. <students>
  42. <vtu>
  43. <usn>4mt14cs039</usn>
  44. <name>divya</name>
  45. <college>mite</college>
  46. <branch>cse</branch>
  47. <yoj>2014</yoj>
  48. <email>divyacharan19@gmail.com</email>
  49. </vtu>
  50. <vtu>
  51. <usn>4mt14cs031</usn>
  52. <name>chrislene dias</name>
  53. <college>mite</college>
  54. <branch>cse</branch>
  55. <yoj>2014</yoj>
  56. <email>dias.chrislene18@gmail.com</email>
  57. </vtu>
  58. <vtu>
  59. <usn>4mt14cs051</usn>
  60. <name>mallika</name>
  61. <college>mite</college>
  62. <branch>cse</branch>
  63. <yoj>2014</yoj>
  64. <email>kavyashreeshettigar@gmail.com</email>
  65. </vtu>
  66. </students>
  67. 4b.xml
Add Comment
Please, Sign In to add comment