Masking insurance number in account creation 1) header.js Function call in .JS :- hideNum(); 2) function displayNum(x) { var p = document.getElementById('employeeHSubscriberNum'); p.setAttribute('type', 'text'); return; } function hideNum() { var p = document.getElementById('employeeHSubscriberNum'); var employeeHSubscriberNumValues = $('#employeeHSubscriberNum').val(); if(employeeHSubscriberNumValues!=null && employeeHSubscriberNumValues!=" ") { p.setAttribute('type', 'password'); }else{ $("#employeeHSubscriberNum").val(""); } ...
Posts
More Than 1 Million Google Accounts Breached by Gooligan
- Get link
- X
- Other Apps
Passing the parameter via Ajax
- Get link
- X
- Other Apps
How to pass the parameter via Ajax Calling URL.... Here you can get the value from term Its realyy fantastic to have this thing in ajax.... **************************************************** $ ( document ). ready ( function () { $ ( function () { $ ( "#search" ). autocomplete ({ source : function ( request , response ) { $ . ajax ({ url : "SearchController" , type : "GET" , data : { term : reques...
Key Features that Make Java More Secure than Other Languages
- Get link
- X
- Other Apps
Key Features that Make Java More Secure than Other Languages 1) No use of pointers 2) Exception handling concept 3) Defined order execution 4) Byte code is another thing that makes Java more secure 5) Tested code re-usability 6) Access Control functionality 7) Protection from security attacks 8) Garbage collection mechanism 9) Type-safe reference casting in JVM Thanks Pavan
JDBC Connection Pooling
- Get link
- X
- Other Apps
JDBC Connection Pooling 1)JDBC connection pooling is conceptually similar to any other form of object pooling. 2)All in all, JDBC database connections are both expensive to initially create and then maintain over time. Therefore, as we shall see, they are an ideal resource to pool. 3)If your application runs within a J2EE environment and acquires JDBC connections from an appserver defined datasource then your application is probably already using connection pooling. 4)If your application is not J2EE based then you may need to investigate using a standalone connection pool manager. EXAMPLE:- ---------------------------------------- <Resource name="jdbc/ptportaldbTent" auth="Container" type="javax.sql.DataSource" maxActive="20" maxIdle="5" maxWait="10000" username="root" password="root" driverClassName="com.mysql.jdbc.Driver" ...
About JDK in Java
- Get link
- X
- Other Apps
Hello, Today we try to be aware about JDK as follows... Developer :- Oracle Corporation Stable Release :- Java Standard Edition 8 Update 60 (1.8.0_60) / 18 August 2015; 39 days ago Operating System :- Cross Platform Type :- Software Development Kit Licence :- Sun Licence (Most of it under GPL) Website :- http://www.oracle.com/technetwork/java/index.html Thanks Pavan (P1)