HOME PHP HTML Javascript Display today SMTP file_exists SendMail Thumbnail creation from image stream DragQueryFile Java MimeBodyPart JSP Email Monitor Power Print Out Text Strings RDP Port RecipientType remark SC_MONITORPOWER session session.getAttribute session.setAttribute setRecipients Turn Monitor Off Framework Bitmap Bitmap to Jpeg Conversion Canvas Cloud Computing cron.hourly DB Optimization dead code declaration MapReduce framework Image Scaling include file ISO 8601 Format JQuery auto-repair JSP Image Processing JSP session control

REMARK.ZIP

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" %>

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

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

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

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...

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

Here's the simple example can resizing source image:

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...

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

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 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. <%   

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

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

How to include Javascript from anonther ?   (created at Jan 25, 2008)   114  

Actually there is such a function in PHP which function is "include".It's very strong function.But Javascript does not support such a function.Here's the alternate method to do that.To include javascript, following is using usually: