Posts

Showing posts from September, 2019

Java Beans Program

Index.jsp <html>     <head>         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">         <title>JSP Page</title>     </head>     <body>               <form action="process.jsp">            <input type="text" name="uname" value="name" onclick="this.value="/><br/>             <input type="text" name="uemail" value="emailid" onclick="this.value="/><br/>            <input type="password" name="upass" value="password" onclick="this.value="/><br/>             <input type="Submit" value="register"/>         </form>                              </body> </html> Process.jsp <%@page contentType="text/html" pageEncoding="UTF-8"%>