'JSP'에 해당되는 글 1건

  1. 2014.12.10 www.studytonight.com
2014. 12. 10. 13:18

1. Example of Scriptlet

<html>

<head>

</head>

<%

int count=0;

%>

<body>

Page Count is <% out.println(++count); %>

</body>

</html> 

 

2. Example of JSP Scriptlet Tag

index.html

<form method = "post' action = "welcome.jsp"

Name <input type="text" name = "user">

<input type="submit value="submit">

</form>

 

welcome.jsp

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Welcome Page</title>
    </head>


  <body>
        Hello, <% out.println(user); %>
  </body>
</html

Posted by 아도니우스