Some JSP Questions..

2002-06-13 Thread vijay
Hi all, I have some questions in JSP. Could any one one has answers for these questions.. 1. Difference between Include and Forward tags.? 2. Difference between Class and beanName in UseBean tag.? 3. Does a bean has to be put in a package to be used from a JSP page.? thanks

Re: Some JSP Questions..

2002-06-13 Thread vijay
hi Ramesh, THANKS FOR UR ANSWERS...IT CLEARED MY DOUBTS.. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: Kesav, Ramesh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June

How to get an Hashtable from a servlet..

2002-05-30 Thread vijay
hi, I have designed a jsp page which calls an servlet. In that servlet, i have an hashtable which has come beans in it. I need to access these beans from jsp page. Iam redirecting to that jsp from servlet. How to access the servlets hastable objects from the rdirected jsp page. thanks

Re: date service contd

2002-05-15 Thread vijay
hi, i tried to compile the program.. but iam getting the following error.. D:\TestJavaPrograms\DateService.java:47: cannot resolve symbol symbol : class InvalidDateException location: class DateService public static String format(Date date, String simpleFormat) throws InvalidDateException

Re: date service contd

2002-05-15 Thread vijay
Subject: Re: date service contd Vijay, There is nothing like InvalidDateException in Java. Kesav might have created his own exception. You need to define that or just remove it from the code. -Original Message- From: vijay [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 11:14 AM

Re: JDBC Connection close

2002-05-14 Thread vijay
hi, if u close the connections in finally block, then it will be closed successfully. there will be no connections opened. its advisable to close the connection after closing other things thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' )

Re: how to use global variable?

2002-05-13 Thread vijay
declare it in %! StringArray[] str = new StringArray[10] % tag.. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: [Vaishali S. Pandya] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: How to restrict access of my server??

2002-04-29 Thread vijay
after saving the file.. just restart ur tomcat... thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: [Vaishali S. Pandya] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 29, 2002

Re: Logging System.out.print or System.err.print

2002-04-22 Thread vijay
hi, u can store the errors in a log file.. just write the errors into a file.. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: Ranjan Sarkar [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Help on parameter begin passed from JSP to Java Bean

2002-04-05 Thread vijay
check for ur scope. set ur scope to the page thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: [Aruniima Chakrabarti] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 05, 2002

Re: Another question on JSP Java Bean adding data to database

2002-04-05 Thread vijay
while inserting into the database, u can use NVL function to avoid null values.. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: [Aruniima Chakrabarti] [EMAIL PROTECTED] To: [EMAIL

Re: Another question on JSP Java Bean adding data to database

2002-04-05 Thread vijay
- From: [Aruniima Chakrabarti] [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 05, 2002 8:56 PM Subject: Re: Another question on JSP Java Bean adding data to database Thank you vijay. But the thing is that I want null value or something that indicates that the user has given no answer

Reg :- Java.....

2002-04-04 Thread vijay
Hi guys, Is there any site for Java like [EMAIL PROTECTED]. if there, could any one of u can give the address to register myself to that mail forum. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)=

Re: Optimised JSPs

2002-04-04 Thread vijay
hi follow these steps in ur JSP's ? Separate HTML from Java ? Place business logic in JavaBeans ? Factor general behavior out of custom tag handler classes ? Favor HTML in Java handler classes over Java in JSPs ? Use an appropriate inclusion mechanism ? Use a JSP template mechanism ? Use

Re: How to draw graphs in JSP

2002-04-02 Thread vijay
hi, Search for Graphs in Javascripts. U can get lot of free scripts. thanks regards vijayanand.R (),,,() ( (. .) .-''-. (o ) ) ('o' ) =(,,)=(,,)=(,,)==(,,)= - Original Message - From: Murali Mohan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Regarding Hotkey in JSP page

2002-04-01 Thread vijay
PROTECTED]] Sent: Monday, April 01, 2002 12:04 PM To: [EMAIL PROTECTED] Subject: Re: Regarding Hotkey in JSP page buttonspan style=text-decoration:underlineQ/spanuit/button -Original Message- From: vijay [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 4:39 PM To: [EMAIL

Regarding Hotkey in JSP page

2002-03-28 Thread vijay
Hi gurus, I am having some buttons in my JSP page. I need to set the hot keys for those button. For example if i have a Save button, i would display the button like.. Save. how to do this. can any one help me in this problem.. thanks regards vijayanand.R (),,,() ( (. .)

Re: Regarding Hotkey in JSP page

2002-03-28 Thread vijay
=somebutton accesskey=Q sets alt-q to that button, ie only. -Original Message- From: vijay [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 12:18 AM To: [EMAIL PROTECTED] Subject: Regarding Hotkey in JSP page Hi gurus, I am having some buttons in my JSP page. I need to set

Re: Join requests from more than 1JSP page

2002-03-18 Thread vijay
hi, You can do this in different ways. The best way is to use Beans for the JSPs. List all the parameters in the Bean from all the three jsps. use set property = * to set all the form values into the bean. later by using getter method u can get the required values. the another way is to use

Re: Exception initializing application (struts) ??

2002-03-18 Thread vijay
hi check if these jar files are under ur lib folder, 1. struts.jar 2.jdbc2_0-stdext.jar if not include the jar files into ur lib folder. they can be found in the zip file which contains struts frame work that u downloaded thanks regards vijayanand.R (),,,() ( (. .)

Uploading file sizes of 20GB

2001-06-22 Thread Polani, Vijay
the files place to place.The client can be a windows system also. Thanks regards Vijay === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set JSP-INTEREST

Re: how implement carriage return

2001-01-24 Thread Vijay Raghavan
dont encase \n in double quotes: eg:out.println("Make: Details" + \n + "Model : ..."); Thats becoz u encase string in quotes and jsp directives without quotes. This should work --Vijay "The difference between Insanity and Genius is

Re: error in tmpdir\default\pagecompile\jsp

2000-07-21 Thread Vijay Rastogi
The JWS translates the jsp pages in the servlets which it transalates in the \tmpdir\deafault\pagecompile\jsp. Please modify your jsp programs instaed of modifying the servlets.. That should help. -Original Message- From: SRINIVAS RAO [SMTP:[EMAIL PROTECTED]] Sent: Friday, July

Re: error in tmpdir\default\pagecompile\jsp

2000-07-21 Thread Vijay Rastogi
Hi Srinivas, Will you please mail yr code and the translation error/run error ? This will help in providing some help. Regards, Vijay -Original Message- From: SRINIVAS RAO [SMTP:[EMAIL PROTECTED]] Sent: Friday, July 21, 2000 4:22 AM To: [EMAIL PROTECTED] Subject:Re

Re: About user-defined finder methods

2000-07-21 Thread Vijay Rastogi
Will you please specify which app server you are using ? What are you specifying in the xml files ? Regards, -Original Message- From: sanjay bhat [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 19, 2000 6:05 AM To: [EMAIL PROTECTED] Subject:About user-defined finder

Tag Library for EJB in Weblogic Enterprise server.

2000-07-14 Thread Vijay Rastogi
Hi All, I am exploring the usage of the tag library for accessing the Enterprise Java Beans loaded on Weblogic Enterprise server container. What are the options for this ? Can we do this or not ? Please advise. Thanks in advance. Regards, Vijay Rastogi

FW: Out of Office AutoReply: Tag Library for EJB in Weblogic Enterpr ise server.

2000-07-14 Thread Vijay Rastogi
Shouldn't these guys thrown out of the list ??? Regards, Vijay -Original Message- From: Mark Edgington [SMTP:[EMAIL PROTECTED]] Sent: Friday, July 14, 2000 5:51 AM To: Vijay Rastogi Subject:Out of Office AutoReply: Tag Library for EJB in Weblogic Enterpr ise server

Re: where is the Java Mailing list ?

2000-04-22 Thread Vijay Mali
These r the java mailing list, For Subscribing send blank mail to [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] Bye Vijay - Original Message - From: Vineet Sethi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 23, 2000 1:00 AM Subject: where is the Java Mailing list

In Digest form ??

1999-11-15 Thread Vijay Bhandari
Hi, How to I switch to receiving this mail group in a message digest form ??? cheers, Vijay begin:vcard n:Bhandari;Vijay tel;fax:212-793-3605 tel;work:212-559-9626 x-mozilla-html:FALSE org:Citigroup;Emg. Mkts. Technology version:2.1 email;internet:[EMAIL PROTECTED] title:Manager

use of display tag

1999-03-31 Thread Vijay Eranti
be discouraged normally. In 95% of cases, the designer will be using display tag and it is real painful to include whole of the two keywords DISPLAY property= and then the property name. Regards Vijay === To unsubscribe, send

Re: use of display tag

1999-03-31 Thread Vijay Eranti
and the XML page to the XSL Engine which merges both and generates the final page. The XSL doesnt include code etc.,. I am not completely against % % tags since they provide enormous amount of flexibility in the dynamic page that is generated but also makes the html jsp page a little murky. Regards Vijay