Saturday, July 11, 2020

Leadership

To become a great leader, its always necessary to face defeat.

Thursday, May 28, 2020

Get Realtime Date and Time

During the development of my project, I wanted to get the RealTime date and time to user. Code is as under: var myVar=setInterval(function () {showTime()}, 1000); var counter = 0; function showTime() { var date = new Date(); document.getElementById("time").innerHTML = date; span id="time" Time is most powerful thing. Regards Deepak Pandey

Creation of System Parameter/Variables

Application gives you the power to variables/parameters as per your choice. By default, application has System Parameter with id as 1. Remaining can be set up as per choice. Regards Deepak Pandey

Sunday, May 24, 2020

Micro Level User Role Management

In application, it has been taken care that clients are able to manage access of application to user level. We are maintaining view at 2 levels > User Group Level : It has permission for application access and assigned to user. > Application Access at User Level: Access level can be modified at user level. With regards Deepak Pandey (Bug Tracking System, Office Automation, Project Management System, Task Activity, Graphs)

Monday, May 18, 2020

User Registration

User Can Simply register themselves by using a simple form and they can start. With regards (Deepak Pandey)

Sunday, May 17, 2020

Bug Tracking System

Friends, I am introducing Web Application with below mentioned Key feature: 1- Project Management System 2- N Level Maintenance for Location, Role, Module and Task 3- User Wise Application Control 4- Tracking of Bugs 5- Tracking of Task Status 6- Interactive Graphs ......Continued Further, I will host it soon and help you to manage your project in a minute. With Regards Deepak Pandey

Sunday, April 26, 2020

Read value from properties file

To get the value of database connection or fetch labels for JSP, it is better to use properties file. So that if you change at one place, it will be reflected to all places. Code to read properties file and return value import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class ReadLabelProperties { public static String getProperties(String key) throws IOException { InputStream inputStream=ReadLabelProperties.class.getClassLoader().getResourceAsStream("label.properties"); Properties myproperties = new Properties(); myproperties.load(inputStream); return myproperties.getProperty(key); } } label.properties are having entries like below dbserver=jdbc:mysql://localhost:3306/ dbdriver=com.mysql.jdbc.Driver Hope the same is useful while creating web application Deepak