<html>
<head>
<title>
Data Entry Screen
</title>

<script language="javascript">

function fun1()
{
 document.frm.method="POST"
 document.frm.action="Add1.jsp"
 document.frm.submit()
 return false
}

function fun2()
{
 document.frm.method="GET"
 document.frm.action="Add2.jsp"
 document.frm.submit()
 return false
}

</script>

</head>
<body>

Data Entery:
<form name="frm">

Enter Name:

<p>
<input type=text name=inputSQL1 size=10>

<p>

Enter Phone:

<p>

<input type=text name=inputSQL2 size=10>

<p>

<input type="submit" name="action" value="add" onclick="fun1()">
<input type="submit" name="action" value="del">
<input type="submit" name="action" value="mod">
<input type="submit" name="action" value="find" onclick="fun2()">
</form>
</body>
</html>

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to