<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %> <%@ page import= "java.sql.*" %> <% String name = (String)session.getAttribute("name"); String aname = (String)session.getAttribute("username"); String password = (String)session.getAttribute("password"); if(name ==null && aname==null && password ==null) { response.sendRedirect("index.jsp"); } else{ try{ %> Department of Biotechnology
 





 


Welcome <%=name %>

 

 
 Create New Faculty
 Manage Existing Faculty

 

 
<% }catch (Exception e){ out.println(e.getMessage()); out.println("sql Exexption"); } } %>