Sunday, April 15, 2012

how ro get unread mails from gmail using java

/*  *  This is the code for read the unread mails from your mail account.  *  Requirements:  *      JDK 1.5 and above  *      Jar:mail.jar  *  */ import java.io.*; import java.util.*; import javax.mail.*; import javax.mail.Flags.Flag; import javax.mail.search.FlagTerm; public class MailReader {     Folder inbox;     // Constructor of the calss.     public MailReader()...

Monday, April 9, 2012

Here is a simple popup contact form (modal popup)

http://www.html-form-guide.com/contact-form/simple-modal-popup-contact-form.ht...

Thursday, April 5, 2012

JSP Elements

A JSP page can have two types of data: Template Data: It is the static part of a jsp page. Anything that is copied as it is directly to the response by the JSP server is known as template data. JSP Elements: It is the dynamic part of a jsp page. Anything that is translated and executed by the JSP server is known as JSP element. There are three types of JSP elements: Directive Elements: The directive elements, contains the information about the page itself that remains the same between requests for the page. The general directive...