diff --git a/4.2 Database connection JSP/pom.xml b/4.2 Database connection JSP/pom.xml
new file mode 100644
index 0000000..466ee6b
--- /dev/null
+++ b/4.2 Database connection JSP/pom.xml
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+ com.mycompany.employeebeans
+ EmployeeBeans
+ 1.0-SNAPSHOT
+
+ UTF-8
+ 18
+ 18
+ com.mycompany.employeebeans.EmployeeBeans
+
+
\ No newline at end of file
diff --git a/4.2 Database connection JSP/src/main/java/com/mycompany/employeebeans/EmployeeBeans.java b/4.2 Database connection JSP/src/main/java/com/mycompany/employeebeans/EmployeeBeans.java
new file mode 100644
index 0000000..ee58431
--- /dev/null
+++ b/4.2 Database connection JSP/src/main/java/com/mycompany/employeebeans/EmployeeBeans.java
@@ -0,0 +1,33 @@
+package com.mycompany.employeebeans;
+import java.io.*;
+
+public class EmployeeBeans implements Serializable{
+
+ private String fName;
+ private String lName;
+ private String post;
+
+ public EmployeeBeans(){
+ this.fName=null;
+ this.lName=null;
+ this.post=null;
+ }
+ public String getFname(){
+ return fName;
+ }
+ public void setFname(String name){
+ this.fName=name;
+ }
+ public void setLname(String last){
+ this.lName=last;
+ }
+ public String getLname(){
+ return lName;
+ }
+ public void setPost(String post){
+ this.post=post;
+ }
+ public String getPost(){
+ return post;
+ }
+}
diff --git a/4.2 Database connection JSP/target/classes/.netbeans_automatic_build b/4.2 Database connection JSP/target/classes/.netbeans_automatic_build
new file mode 100644
index 0000000..e69de29
diff --git a/4.2 Database connection JSP/target/classes/com/mycompany/employeebeans/EmployeeBeans.class b/4.2 Database connection JSP/target/classes/com/mycompany/employeebeans/EmployeeBeans.class
new file mode 100644
index 0000000..2afd0cf
Binary files /dev/null and b/4.2 Database connection JSP/target/classes/com/mycompany/employeebeans/EmployeeBeans.class differ
diff --git a/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
new file mode 100644
index 0000000..6fd1982
--- /dev/null
+++ b/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
@@ -0,0 +1 @@
+com\mycompany\employeebeans\EmployeeBeans.class
diff --git a/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
new file mode 100644
index 0000000..d5a3dcd
--- /dev/null
+++ b/4.2 Database connection JSP/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
@@ -0,0 +1 @@
+D:\AJP\EmployeeBeans\src\main\java\com\mycompany\employeebeans\EmployeeBeans.java
diff --git a/4.2 Database connection JSP/target/test-classes/.netbeans_automatic_build b/4.2 Database connection JSP/target/test-classes/.netbeans_automatic_build
new file mode 100644
index 0000000..e69de29
diff --git a/4.3 JavaBean/build.xml b/4.3 JavaBean/build.xml
new file mode 100644
index 0000000..1ac9a05
--- /dev/null
+++ b/4.3 JavaBean/build.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+ Builds, tests, and runs the project Exp5_5.
+
+
+
diff --git a/4.3 JavaBean/build/web/META-INF/MANIFEST.MF b/4.3 JavaBean/build/web/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..59499bc
--- /dev/null
+++ b/4.3 JavaBean/build/web/META-INF/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/4.3 JavaBean/build/web/META-INF/context.xml b/4.3 JavaBean/build/web/META-INF/context.xml
new file mode 100644
index 0000000..29298d1
--- /dev/null
+++ b/4.3 JavaBean/build/web/META-INF/context.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/4.3 JavaBean/build/web/ProcessEmp.jsp b/4.3 JavaBean/build/web/ProcessEmp.jsp
new file mode 100644
index 0000000..846dbf9
--- /dev/null
+++ b/4.3 JavaBean/build/web/ProcessEmp.jsp
@@ -0,0 +1,28 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+
+
+
+
+ Employee Details
+
+
+
+
+ Hello World!
+ <%
+ String first_name=request.getParameter("f_name");
+ String last_name=request.getParameter("l_name");
+ String designation=request.getParameter("posting");
+ %>
+
+
+
+
+ <% out.print("First Name> "); %>
+
+ <% out.print("Last Name> "); %>
+
+ <% out.print("Designation> "); %>
+
+
+
diff --git a/4.3 JavaBean/build/web/WEB-INF/classes/.netbeans_automatic_build b/4.3 JavaBean/build/web/WEB-INF/classes/.netbeans_automatic_build
new file mode 100644
index 0000000..e69de29
diff --git a/4.3 JavaBean/build/web/WEB-INF/classes/.netbeans_update_resources b/4.3 JavaBean/build/web/WEB-INF/classes/.netbeans_update_resources
new file mode 100644
index 0000000..e69de29
diff --git a/4.3 JavaBean/build/web/index.html b/4.3 JavaBean/build/web/index.html
new file mode 100644
index 0000000..27da35d
--- /dev/null
+++ b/4.3 JavaBean/build/web/index.html
@@ -0,0 +1,13 @@
+
+
+
+ EmpData
+
+
+
+
+ First name: Haresh
+ Last name: Kurade
+ Designation: Student
+
+
diff --git a/4.3 JavaBean/nbproject/ant-deploy.xml b/4.3 JavaBean/nbproject/ant-deploy.xml
new file mode 100644
index 0000000..c2349eb
--- /dev/null
+++ b/4.3 JavaBean/nbproject/ant-deploy.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/4.3 JavaBean/nbproject/build-impl.xml b/4.3 JavaBean/nbproject/build-impl.xml
new file mode 100644
index 0000000..10341f7
--- /dev/null
+++ b/4.3 JavaBean/nbproject/build-impl.xml
@@ -0,0 +1,1427 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must set src.dir
+ Must set test.src.dir
+ Must set build.dir
+ Must set build.web.dir
+ Must set build.generated.dir
+ Must set dist.dir
+ Must set build.classes.dir
+ Must set dist.javadoc.dir
+ Must set build.test.classes.dir
+ Must set build.test.results.dir
+ Must set build.classes.excludes
+ Must set dist.war
+
+
+
+
+
+
+
+
+
+The Java EE server classpath is not correctly set up - server home directory is missing.
+Either open the project in the IDE and assign the server or setup the server classpath manually.
+For example like this:
+ ant -Dj2ee.server.home=<app_server_installation_directory>
+
+
+The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
+Either open the project in the IDE and assign the server or setup the server classpath manually.
+For example like this:
+ ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file)
+or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must set javac.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ No tests executed.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+The libs.CopyLibs.classpath property is not set up.
+This property must point to
+org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
+of NetBeans IDE installation and is usually located at
+<netbeans_installation>/java<version>/ant/extra folder.
+Either open the project in the IDE and make sure CopyLibs library
+exists or setup the property manually. For example like this:
+ ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must set JVM to use for profiling in profiler.info.jvm
+ Must set profiler agent JVM arguments in profiler.info.jvmargs.agent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must select some files in the IDE or set javac.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must select some files in the IDE or set javac.jsp.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must select a file in the IDE or set jsp.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
+
+
+ Launching ${browse.url}
+
+
+
+
+
+ Must select one file in the IDE or set run.class
+
+
+
+ Must select one file in the IDE or set run.class
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must select one file in the IDE or set debug.class
+
+
+
+
+
+
+
+
+
+
+
+ Must select one file in the IDE or set debug.class
+
+
+
+
+ Must set fix.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This target only works when run from inside the NetBeans IDE.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Must select some files in the IDE or set javac.includes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Some tests failed; see details above.
+
+
+
+
+
+
+
+
+ Must select some files in the IDE or set test.includes
+
+
+
+ Some tests failed; see details above.
+
+
+
+ Must select some files in the IDE or set test.class
+ Must select some method in the IDE or set test.method
+
+
+
+ Some tests failed; see details above.
+
+
+
+
+ Must select one file in the IDE or set test.class
+
+
+
+ Must select one file in the IDE or set test.class
+ Must select some method in the IDE or set test.method
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/4.3 JavaBean/nbproject/genfiles.properties b/4.3 JavaBean/nbproject/genfiles.properties
new file mode 100644
index 0000000..18e862b
--- /dev/null
+++ b/4.3 JavaBean/nbproject/genfiles.properties
@@ -0,0 +1,8 @@
+build.xml.data.CRC32=c0173d58
+build.xml.script.CRC32=6c6edfce
+build.xml.stylesheet.CRC32=1707db4f@1.89.0.1
+# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
+# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
+nbproject/build-impl.xml.data.CRC32=c0173d58
+nbproject/build-impl.xml.script.CRC32=9a44b0ee
+nbproject/build-impl.xml.stylesheet.CRC32=334708a0@1.89.0.1
diff --git a/4.3 JavaBean/nbproject/private/private.properties b/4.3 JavaBean/nbproject/private/private.properties
new file mode 100644
index 0000000..838b09e
--- /dev/null
+++ b/4.3 JavaBean/nbproject/private/private.properties
@@ -0,0 +1,4 @@
+deploy.ant.properties.file=C:\\Users\\Kurade\\AppData\\Roaming\\NetBeans\\13\\tomcat90.properties
+j2ee.server.home=C:/Tomcat
+j2ee.server.instance=tomcat90:home=C:\\Tomcat
+user.properties.file=C:\\Users\\Kurade\\AppData\\Roaming\\NetBeans\\13\\build.properties
diff --git a/4.3 JavaBean/nbproject/private/private.xml b/4.3 JavaBean/nbproject/private/private.xml
new file mode 100644
index 0000000..a7baa14
--- /dev/null
+++ b/4.3 JavaBean/nbproject/private/private.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ file:/D:/AJP/Exp5_5/web/index.html
+ file:/D:/AJP/Exp5_5/web/ProcessEmp.jsp
+
+
+
diff --git a/4.3 JavaBean/nbproject/project.properties b/4.3 JavaBean/nbproject/project.properties
new file mode 100644
index 0000000..1a8e906
--- /dev/null
+++ b/4.3 JavaBean/nbproject/project.properties
@@ -0,0 +1,84 @@
+annotation.processing.enabled=true
+annotation.processing.enabled.in.editor=true
+annotation.processing.processors.list=
+annotation.processing.run.all.processors=true
+annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
+build.classes.dir=${build.web.dir}/WEB-INF/classes
+build.classes.excludes=**/*.java,**/*.form
+build.dir=build
+build.generated.dir=${build.dir}/generated
+build.generated.sources.dir=${build.dir}/generated-sources
+build.test.classes.dir=${build.dir}/test/classes
+build.test.results.dir=${build.dir}/test/results
+build.web.dir=${build.dir}/web
+build.web.excludes=${build.classes.excludes}
+client.urlPart=
+compile.jsps=false
+conf.dir=${source.root}/conf
+debug.classpath=${build.classes.dir}:${javac.classpath}
+debug.test.classpath=\
+ ${run.test.classpath}
+display.browser=true
+# Files to be excluded from distribution war
+dist.archive.excludes=
+dist.dir=dist
+dist.ear.war=${dist.dir}/${war.ear.name}
+dist.javadoc.dir=${dist.dir}/javadoc
+dist.war=${dist.dir}/${war.name}
+endorsed.classpath=\
+ ${libs.javaee-endorsed-api-7.0.classpath}
+excludes=
+includes=**
+j2ee.compile.on.save=true
+j2ee.copy.static.files.on.save=true
+j2ee.deploy.on.save=true
+j2ee.platform=1.7-web
+j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-ssi.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.20.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jaspic-api.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-cs.jar:${j2ee.server.home}/lib/tomcat-i18n-de.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-i18n-ko.jar:${j2ee.server.home}/lib/tomcat-i18n-pt-BR.jar:${j2ee.server.home}/lib/tomcat-i18n-ru.jar:${j2ee.server.home}/lib/tomcat-i18n-zh-CN.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar
+j2ee.server.type=Tomcat
+jar.compress=false
+javac.classpath=
+# Space-separated list of extra javac options
+javac.compilerargs=
+javac.debug=true
+javac.deprecation=false
+javac.processorpath=\
+ ${javac.classpath}
+javac.source=1.7
+javac.target=1.7
+javac.test.classpath=\
+ ${javac.classpath}:\
+ ${build.classes.dir}
+javac.test.processorpath=\
+ ${javac.test.classpath}
+javadoc.additionalparam=
+javadoc.author=false
+javadoc.encoding=${source.encoding}
+javadoc.noindex=false
+javadoc.nonavbar=false
+javadoc.notree=false
+javadoc.preview=true
+javadoc.private=false
+javadoc.splitindex=true
+javadoc.use=true
+javadoc.version=false
+javadoc.windowtitle=
+lib.dir=${web.docbase.dir}/WEB-INF/lib
+no.dependencies=false
+persistence.xml.dir=${conf.dir}
+platform.active=default_platform
+resource.dir=setup
+run.test.classpath=\
+ ${javac.test.classpath}:\
+ ${build.test.classes.dir}
+# Space-separated list of JVM arguments used when running a class with a main method or a unit test
+# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value):
+runmain.jvmargs=
+source.encoding=UTF-8
+source.root=src
+src.dir=${source.root}/java
+test.src.dir=test
+war.content.additional=
+war.ear.name=${war.name}
+war.name=Exp5_5.war
+web.docbase.dir=web
+webinf.dir=web/WEB-INF
diff --git a/4.3 JavaBean/nbproject/project.xml b/4.3 JavaBean/nbproject/project.xml
new file mode 100644
index 0000000..8bd0d13
--- /dev/null
+++ b/4.3 JavaBean/nbproject/project.xml
@@ -0,0 +1,18 @@
+
+
+ org.netbeans.modules.web.project
+
+
+ Exp5_5
+ 1.6.5
+
+
+
+
+
+
+
+
+
+
+
diff --git a/4.3 JavaBean/src/conf/MANIFEST.MF b/4.3 JavaBean/src/conf/MANIFEST.MF
new file mode 100644
index 0000000..59499bc
--- /dev/null
+++ b/4.3 JavaBean/src/conf/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/4.3 JavaBean/web/META-INF/context.xml b/4.3 JavaBean/web/META-INF/context.xml
new file mode 100644
index 0000000..29298d1
--- /dev/null
+++ b/4.3 JavaBean/web/META-INF/context.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/4.3 JavaBean/web/ProcessEmp.jsp b/4.3 JavaBean/web/ProcessEmp.jsp
new file mode 100644
index 0000000..846dbf9
--- /dev/null
+++ b/4.3 JavaBean/web/ProcessEmp.jsp
@@ -0,0 +1,28 @@
+<%@page contentType="text/html" pageEncoding="UTF-8"%>
+
+
+
+
+ Employee Details
+
+
+
+
+ Hello World!
+ <%
+ String first_name=request.getParameter("f_name");
+ String last_name=request.getParameter("l_name");
+ String designation=request.getParameter("posting");
+ %>
+
+
+
+
+ <% out.print("First Name> "); %>
+
+ <% out.print("Last Name> "); %>
+
+ <% out.print("Designation> "); %>
+
+
+
diff --git a/4.3 JavaBean/web/index.html b/4.3 JavaBean/web/index.html
new file mode 100644
index 0000000..27da35d
--- /dev/null
+++ b/4.3 JavaBean/web/index.html
@@ -0,0 +1,13 @@
+
+
+
+ EmpData
+
+
+
+
+ First name: Haresh
+ Last name: Kurade
+ Designation: Student
+
+