<%--
Document : SampleFind
Created on : May 21, 2013, 8:38:08 PM
Author : onder
--%>
<%@page import="com.godoro.em.Sample"%>
<%@page import="com.godoro.em.SampleManager"%>
<%
long sampleId=Long.parseLong(request.getParameter("sampleId"));
SampleManager manager=new SampleManager();
Sample sample=manager.find(sampleId);
%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Örnek Bulma</h1>
Örnek No : <%=sample.getSampleId()%><br/>
Örnek Adı : <%=sample.getSampleName()%><br/>
Örnek Değeri : <%=sample.getSampleValue()%><br/>
<a href="SampleList.jsp">Liste</a>
</body>
</html>
Dosyayı İndir