Skip to main content

Posts

JSP Download EXCEL or PDF from Server

The following code snippet shows you how to download content i.e PDF and Excel files from Server. Since its a JSP page the output stream has been cleared so binary content will not be corrupted. Code can be converted to a servlet if required To change to other content formats for download just change setContentType e.g response.setContentType("image/png");

VB.NET Common Utility class for String manipulation , validation

Having a util class is pretty handy when needing common system wide functions to call in order to manipulate strings perform validations. The following Class is just work in progress of some of the more common functions you would use when starting out your project. Please fill free to add comments i.e other useful functions to make it a more comprehensive utility class.