How to Include CSS in HTML- Types of CSS Inline External Internal

CSS (Cascading Style Sheets) is a fundamental component of web design that enhances the visual appeal and aesthetics of websites. There are various types of CSS that developers can utilize to style their web pages. Each type has its own syntax, usage, and advantages. In this article, we will explore the three primary types of … Read more

Static keyword in Java with uses and Examples

Static keyword can be used with Variables Methods Blocks Static inner class lets see them one by one Static Variables in Java Static variable can be create by adding static keyword in front of variable. below count is static variable. A static variable is shared among all objects of class. Each class have their own … Read more

error: error:0308010c:digital envelope routines::unsupported

The error “error: error:0308010c:digital envelope routines::unsupported” typically occurs when you are trying to access an HTTPS website using the Python requests library and the SSL certificate of the website is not supported by the SSL library of your Python installation. Here are the step-by-step details to resolve this issue: Step 1: Check your Python version … Read more

How to find String length in java string method

Get String length with String length() method To find String length in java there is a method length(). This method is used to get the length of the string. The signature of length method is:

The length method returns the length of the string. it counts the number of Unicode in string. str.length java … Read more

1 billion in rupees: Billion to Lakhs Crores Million

If we talk about the Indian currency i.e. Rupees, then 1 billion is equal to 10000 lacs. 1 billion is equal to 10000000000 which is a natural number. The number 1000000001 comes after 1 billion and the number 999999999 comes before it. To describe in quantities in Math, the concept of place value is used. … Read more

What Is 7/8 As A Percentage?

7/8 As A Percentage is 87.5 % Percent and fractions are the two terms that we generally use in comparing quantities. A fraction is represented as a numerical value that is defined as a part of a whole while percent, a relative value tells you how much of the whole you have and it is … Read more

ITI full form | ITI Course Trades Institutes and Job

ITI Full form is Industrial Training Institute ITI is especially a 2-year technical course. This course is useful to those people who are in need of work and want to learn valuable skills. The various disciplines can be Fitter, Linesman, Welder, etc. The minimum eligibility criterion for ITI is grade 10. It can be done … Read more

Function Overriding in C++ with Example

Function Overriding in C++ Programming Language is one of the important concept in C++. Function Overloading is used to achieve run time polymorphism What is Function Overriding in C++? When two classes are in the inheritance hierarchy. The parent class function is re-defined in the child class with the same method signature. The re-defined function … Read more

Categories C++

How to get client IP address in java Struts2

When users submit a form along with form data we can get the IP address of the client. Let’s see one simple program to demonstrate this request.getHeader(“X-FORWARDED-FOR”);  is used to get the address of client in java/jsp/struts and in spring.

Employee Management System Project JSP Servlet

org. comp.model Employee Model – Employee.java

Employee Controller Servlet added org.comp.controller package is used for controller AddEmployee.Java

FetchEmployee.java

UpdateEmployee.java

showEmployee.java

DeleteEmployee.java

Data Access Object ConnectionFactory.java

EmployeeDAO.java

HTML Pages ListEmployees.jsp

AddEmployee.jsp

UpdateEmployee.jsp

menu.jsp

footer.jsp