Read XML Taglib and JSTL in JSP

samle.xml  <?xml version="1.0" encoding="ISO-8859-1"?>  <weather ver="2.0">    <loc id="INXX0096">      <dnam>New Delhi, India </dnam>      <tm>3:30 PM </tm>  ...
READ MORE - Read XML Taglib and JSTL in JSP

How to read XML file in java

books.xml <?xml version="1.0" encoding="iso-8859-1"?> <library>  <book>    <name>Head First Java, 2nd Edition</name>    <author>Kathy Sierra and Bert Bates</author>    <publication-date>09-Feb-2005</publication-date>  </book>  <book>  ...
READ MORE - How to read XML file in java

getElementsByTagName in javascript

<html> <head> <title>getElementsByTagName Javascript</title> <script> function getElementFtn() {  alert(document.getElementsByTagName("p").item(0).innerHTML) } </script> </head> <body> <p>this...
READ MORE - getElementsByTagName in javascript

Form parameter validation using javascript(username,password,email,number,alphanumeric))

UserName Password validation <html> <head> <title>Required Validation</title> <script> function validate() {   var vUser=trim(document.frm.sUser.value);   var vPwd=trim(document.frm.sPwd.value);   if(vUser=="")  ...
READ MORE - Form parameter validation using javascript(username,password,email,number,alphanumeric))

Enable Disable Radio button Text box in JavaScript

<html> <head> <title>Enable Disable Radio button Text box in javascript</title> </head> <script>  function chMd()  {   // initialize form with empty field   document.forms[0].sTextBox.disabled=false;  ...
READ MORE - Enable Disable Radio button Text box in JavaScript

 
 
 
 


Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies|