Last active
June 1, 2017 13:21
-
-
Save kasundharmadasa/ee964a06333390e173188c65a988feac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page import ="java.util.*" %> | |
<!DOCTYPE html> | |
<html> | |
<body> | |
<center> | |
<h1> | |
Available Brands | |
</h1> | |
<% | |
List result= (List) request.getAttribute("brands"); | |
Iterator it = result.iterator(); | |
out.println("<br>We have <br><br>"); | |
while(it.hasNext()){ | |
out.println(it.next()+"<br>"); | |
} | |
%> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment