Printing problem in JSP

2001-05-11 Thread anil yeola
Hi, Can any one tell me if it is possible to print the current JSP page in compressed way so that day can fit on one page on printer. Thanx Anil __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.yahoo.com/

Re: [OT] query year in oracle date field - URGENT

2001-03-14 Thread anil yeola
Hi cedric Why dont u use the between clause in your sql for oracle to compare the dates. say where date between '01-JAN-1999' AND '31-DEC-1999' Hope this will work Thanks --- cedric sk chin <[EMAIL PROTECTED]> wrote: > hi fellow developers, > > can anyone give me some ideas on this? say i

Re: JSP equals problem ???

2001-03-13 Thread anil yeola
Hi Sufi, Can u tell the output of the command System.out.println(flag); --- sufi malak <[EMAIL PROTECTED]> wrote: > I found a solution that makes the file work, just I > used int instead of > String, but I am still wandering why it did not work > using String, please I > will appreciate any fu

Re: simple jsp question ? thanks

2001-03-13 Thread anil yeola
Hi, See flag is an object and download is an another object. So when u compare both of them by == sign it checks if both are point to same reference. As they are different object obiviously they will point to different refrences. Check for this case now. "download" == "download". Eventhough L.

Re: How to "force" POST method when using a link in a page..too many request parameters causing a problem..

2001-03-09 Thread anil yeola
Hi, What i feel is U can write the data to the output stream by opening a connection with the url. This will force for the post method. --- "Duffey, Kevin" <[EMAIL PROTECTED]> wrote: > Hi there, > > Does anybody perhaps know how you can force the use > of a POST without using > a type? Mainly,

Re: How to send attachment by email through JSP?

2001-03-08 Thread anil yeola
Hi Louie, I have written a bean to sent a attachment thorough JSP. U have to specify the host and to is the address to whom u are going to sent. U can view the code CODE IS import java.beans.*; import java.util.*; import java.io.*; import javax.mail.*; import javax.mail.internet.*; import j