Advertisement
teguhsugiono891208

beranda

Mar 15th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. //coding home
  2. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@page contentType="text/html" pageEncoding="UTF-8" %>
  4. <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>
  5. <sql:setDataSource var="dataSource"
  6. driver="com.mysql.jdbc.Driver"
  7. url="jdbc:mysql://localhost:3306/ptmsa_dbo"
  8. user="root" password="" />
  9. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  10. <html lang="en">
  11. <head>
  12. <title>Home</title>
  13. <meta charset="utf-8">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <link rel="stylesheet" href="css/style_beranda.css">
  16. </head>
  17. <body>
  18.  
  19. <ul class="dropmenu">
  20. <li><a href="beranda.jsp?halaman=utama">Home</a></li>
  21. <li><a href="#">File</a>
  22. <ul>
  23. <li><a href="logout.jsp">LOG Out</a></li>
  24. <li><a href="#">Create User</a></li>
  25. </ul>
  26. </li>
  27.  
  28. <li><a href="#">Master</a>
  29. <ul>
  30. <li><a href="beranda.jsp?halaman=tps&aksi=SIMPAN">TPS</a></li>
  31. </ul>
  32. </li>
  33. </ul>
  34.  
  35. <!--<div class="kotakhtps"> -->
  36. <c:choose>
  37. <c:when test="${param.halaman=='tps'}">
  38. <%@include file="tps.jsp" %>
  39. </c:when>
  40. <c:otherwise>
  41. <%@include file="utama.jsp" %>
  42. </c:otherwise>
  43. </c:choose>
  44. <!--</div>-->
  45.  
  46. </body>
  47. </html>
  48.  
  49. <!-- penempatan class di css yang ekstensinya ada titiknya sedangkan id didepannya ada # -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement