C# - Resizing images

The following function can be used to resize images on your machine. Note that this function works out the image format internally and creates a file of the same format. You may want to adjust this to output a file of a different format. [Read More]
Tags: c#

JDBC - Executing stored procedures

To execute a stored procedure on your database server with JDBC, you need to prepare a CallableStatement using your active connection. Input and output parameters but be explicitly declared. [Read More]
Tags: java

ASP.NET pages without code-behind

Although this is not the best way to do it, there may be instances where you can’t use a code-behind cs file. In that case, here is a basic example of how to set up the aspx file: [Read More]
Tags: asp.net