SampleInsert.jsp
Dosyayı İndir
<%--
Document : SampleInsert
Created on : May 21, 2013, 7:05:57 PM
Author : onder
--%>
<%@page import="com.godoro.em.SampleManager"%>
<%@page import="com.godoro.em.Sample"%>
<%
String insert = request.getParameter("insert");
String message = "L�tfen bilgileri giriniz.";
if (insert != null) {
String sampleName = request.getParameter("sampleName");
double sampleValue = Double.parseDouble(request.getParameter("sampleValue"));
Sample sample=new Sample(0, sampleName, sampleValue);
SampleManager manager=new SampleManager();
boolean inserted=manager.insert(sample);
message ="Kay�t eklendi " + sampleName + " " + sampleValue+" "+(inserted?"Evet":"Hay�r");
}
%>
<%@page contentType="text/html" pageEncoding="iso-8859-9"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<title>JSP Page</title>
</head>
<body>
<h1>�rnek Ekleme</h1>
<i><%=message%></i>
<form>
�rnek Ad� : <input type="text" name="sampleName"/><br/>
�rnek De�er : <input type="text" name="sampleValue"/><br/>
<input type="submit" value="Ekle" name="insert"/>
</form>
<a href="SampleList.jsp">Liste</a>
</body>
</html>
Dosyayı İndir