Monthly Archives: June, 2010
How to get multiple xml files in XSL
Some times, you have to access more than one xml file in your xsl if you are developer guy. Normally one xml file and xsl file are transformed at a time. But if you want more than one xml file to access in your xsl file. Then you have to follow some tricky policy. Which …
Starting C in Ubuntu
First we have to set up c environment in ubuntu gcc and other neccessary compilers are not pre-installed in Ubuntu. Execute this Code: In case your machine doesn’t have internet access, execute this first : Code: After setting up environment now time to coding. Simply we can create any file as like as test.c. We …
Replacing non-alphanumeric value from a string using regular expression
Please, follow the regular expression to replacing non-alphanumeric value from a string Regular expression Replacing code That’s it.
How to pass parameter from JSPX to XSLT
Passing parameter from jspx to xslt is following The first thing is we have to set parameter from jspx. You can use the following code in your jspx code where you are using the code to transfomation. Also you can pass server information by parameter. It is very important because you have no way to …