HOME Delphi PHP HTML Javascript C# chkdsk Display DateTime SMTP today TIdMessage file_exists mysql SendMail ContentType CharSet SmtpServer SQL Java mail MailMessage SmtpMail DragQueryFile Thumbnail creation from image stream TidURI Monitor Power Turn Monitor Off max connection MIME Type Encoding setRecipients session.setAttribute session.getAttribute session SC_MONITORPOWER Rename Postfix Print Out Text Strings RDP Port RecipientType remark Framework Bitmap Bitmap to Jpeg Conversion calendar Canvas CentOS 7 Cloud Computing cron.hourly dead code declaration Filename Change MapReduce framework Get Available System Memory Information getDay getMonth Image Scaling include file auto-repair Javascript DateTime JSP Image Processing

DISPLAY.ZIP

How to resize image ?   (created at Jun 03, 2009)   174  

Here's the simple example can resizing source image:

Word counting source program based on MapReduce framework   (created at Feb 28, 2012)   125  

The MapReduce framework operates exclusively on  pairs, that is, the framework views the input to the job as a set of paris and produces a set of pairs as the output of the job, conceivably of different types. Below is the simple application that...

Copy text to clipboard in Javascript   (created at May 07, 2013)   897  

Below is the example can copy text to clipboard in javascript. It's all tested in Microsoft Internet Explorer.

Put Date Time on HTML   (created at Oct 27, 2008)   60  

In JSP, you can simply put Date Time as below.

How to print out text strings on HTML directly ?   (created at Oct 27, 2008)   128  

In JSP, you can print out text strings by out.println(). Here's the example. <%   

How to include file in JSP ?   (created at Oct 27, 2008)   112  

Just like ASP, or PHP, JSP is also allow to include for programmer by include function.Here's the simple example.Going to include hello.jsp...
<%@ include file="hello.jsp" %>

How to add a declaration on JSP code ?   (created at Oct 27, 2008)   105  

If you have developed C or C++ program, you may know below examples.// printf( "a.out");/*  printf( "b.out");*/Above code have no bug, but no code will be compiled, because it's all declarations.In JSP, you can make declarations as well. In some docum...

How to set and get sessions on JSP code ?   (created at Oct 27, 2008)   160  

Here's the simple example to set and put sessions.save_my_name,jsp<%   String name = request.getParameter( "username" );   session.setAttribute( "theName", name );%>Continuesave_my_n...

JQuery And Function Chaining   (created at Aug 30, 2007)   72  

I am learning new things about jQuery: function chaning is a really cool feature: