Re: Alert!!!! DO NOT OPEN Previous email entitled HI...Virus Attached!!

2001-12-05 Thread David S. Moss
some text attachments do manage to get through as does some java files and probably embedded script tags as well, through I'm not sure of that last one. a virus/worm such as the kak worm could manage to get through, so be careful anyway. -Original Message- From: A mailing list about Java

Re: How to Lift the high performance?

2001-12-05 Thread Cheong Takhoe
Use a database connection pool Robin wrote: [EMAIL PROTECTED]"> Hi all: I have already deployed a Application(JSP/JAVA), But it is so slowly. How to Increase system performance? please help me about how to Increase web server`s performance( iPlanet4.1) and system speed. Oh God , It

: How to Lift the high performance?

2001-12-05 Thread Robin
there is a Connection pool be used in our application, how to set the iPlanet 4.1 server to Increase system performance? thanks -ԭʼÓʼþ-·¢¼þÈË: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]´ú±í Cheong

Help Needed - Flash Images problem with Netscape 4.61

2001-12-05 Thread SUBSCRIBE JSP-INTEREST Madhavi C S
Hi All, This is my first posting to this mailing list. I have a problem with Flash images loading in Netscape 4.61 We are displaying the advertisements (Flash image files with shockwave plugin 3) in our application. Multiple ads have to be displayed on a page. It works fine with IE 5. This

Re: Help Needed - Flash Images problem with Netscape 4.61

2001-12-05 Thread Mark Currie
The problem isn't with Flash or JSP the problem here is with the browser and how it handles Flash elements. Flash elements will always punch through every other element on the page, including other Flash elements (doesn't really make sense, but it does something wierd when 2 of them are

UNSUBSCRIBE

2001-12-05 Thread DIGEST Sascha Boehme
UNSUBSCRIBE Visit our website at http://www.ubswarburg.com This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by

little offtopic- design own comob MyField

2001-12-05 Thread Satyen Mehta
I like to design a field object with Label TextField and have its own event hanlders etc. Next time if we need it, we can to use it with say label name contructor and adding to a Panel. Can someone give some ideas, please? Thanks,

hoe to add jsp tags in servlet

2001-12-05 Thread Kam Premkumar
Iwant to add the jsp forward tags in servlet is it possible. PLease send the piece of code Thanks Prem === To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with

Re: hoe to add jsp tags in servlet

2001-12-05 Thread Chen, Gin
Look at the request dispatcher.. i'm not sending the code. if u did a search of the archives.. the code is already there. -Tim -Original Message- From: Kam Premkumar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 1:03 PM To: [EMAIL PROTECTED] Subject: hoe to add jsp tags

Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Michael Pomeroy
I have a Results form which displays result records. Then, when a SUBMIT button is hit, a Detail page is displayed. I added two more buttons within the Results form, one to go back one step in history: input type=button name=butModifySearch value=Modify Search onclick=window.history.go(-1)

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Mark Currie
Onclick works fine... the problem with the second button is that it should be written like: input type=button name=butNewSearch value=New Search onclick=somesortoffunctionhere() script function somesortoffunctionhere() { window.location=SearchPage.jsp; } /script That should work? Mark

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Chen, Gin
Here's another way to do it if it is in a form. You can do: input type=button name=butNewSearch value=New Search onclick=form.action='SearchPage.jsp';submit() As for ur second question: Handling navigation though onclick is not a bad option. Alot of people use this approach. But, one

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread syed huda
Try onClick=window.location='SearchPage.jsp' - Original Message - From: Michael Pomeroy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 11:20 AM Subject: Is onClick a bad way to navigate using buttons? I have a Results form which displays result records.

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Richard Yee
Mark, I have three answers to your two questions: 1)What is wrong with the New Search button? You have link.onclick instead of onclick. I think your handler should also be form.submit(SearchPage.jsp). I'm not sure if you can do this directly in the tag. you might have to reference a javascript

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Charles Williams
Title: RE: Is onClick a bad way to navigate using buttons? What about > -- chuck -Original Message- From: Michael Pomeroy [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 1:20 PM To: [EMAIL PROTECTED] Subject: Is onClick a bad way to navigate using buttons? I have a

vectors

2001-12-05 Thread Eric Cho
Hey all, I have a bean of "SummaryBean" with an interface of "SummaryInterface" that uses anther bean of "InquiryBean" with an interface of "InquiryInterface" as a vector. I'm trying to display "expiryDate" which is in the Inquiry Am i doing this right? jsp:useBean

Include problem

2001-12-05 Thread Alireza Nahavandi
Hi All, I have some include tags inside a jsp file. Sometimes I get this error : javax.servlet.ServletException: Unable to reload page: /title.jsp because not at top level. Please resend request. title.jsp is one of the jsp files which I am including. Does anybody know what's the reason?

Mod_webapp problem with Apache 1.3.22/Tomcat 4

2001-12-05 Thread Michael Rogan
Hello, I am receiving the following error when placing the statement LoadModule webapp_module libexec/mod_webapp.so in my Apache httpd.conf file: Invalid command 'LoadModule',perhaps mis-spelled or defined by a module not included in server configuration. The

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Swart, James (Jim) ** CTR **
Of course, you could also do this: input type=button name=butNewSearch value=New Search onclick=javascript:window.location=SearchPage.jsp; - J a m e s B. S w a r t Agere Systems - Colorado Design Centers Unix/Windows Systems

Re: hoe to add jsp tags in servlet

2001-12-05 Thread Ramesh Kesavanarayanan
you can use PrintWriter out = res.getWriter(); out.println( jsp forard /); out.flush(); out.close(); = For Stock Quotes, Finance News, Insurance, Tax Planners, Mutual Funds... Visit

Possible to set-aside records to persistent location?

2001-12-05 Thread Michael Pomeroy
Is it possible to set-aside records to one location, that were selected from results and detail pages, similar to a persistent shopping cart ? Using 3 simple pages: Search, Results (multiple records), Detail (multiple records), a user would use the site this way: Search--Results (set-aside a

Re: Possible to set-aside records to persistent location?

2001-12-05 Thread Chris Tucker
Use the session object. Add objects to it with session.setAttribute() and get them with session.getAttribute(). Other API calls are documented in the appropriate javadocs. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL

Re: hoe to add jsp tags in servlet

2001-12-05 Thread Hans Bergsten
Ramesh Kesavanarayanan wrote: you can use PrintWriter out = res.getWriter(); out.println( jsp forard /); out.flush(); out.close(); No, I'm afraid that's not correct (even if you fix the spelling of jsp:forward). The output written by a servlet to out is sent to the browser, and the browser

Re: Is onClick a bad way to navigate using buttons?

2001-12-05 Thread Mark Currie
yeah... I suppose you could do that. ;) I had suggest the function way, assuming that there would probably be more javascript used somewhere in the page. I'm fairly new to JSP, so I'm still in the heavy javascripting mode... Mark - Original Message - From: Swart, James (Jim) ** CTR **

I have a problem.

2001-12-05 Thread Chris
Hi, I am struggling with a problem and hope someone can assist. I am using JSP and class files to dynamically build a menu for each logged on user. It appears that the last person to log on overwrites the menu string for the other users. i.e.. When they refresh their screen they get a different

Re: I have a problem.

2001-12-05 Thread Richard Yee
Chris, Without seeing the code it is hard to tell what exactly the problem is. Are you declaring variables in %! % tags? This could be a problem since they have class scope. Are you using sessions? Make sure you are not using application scope variables. -Richard At 12:20 PM 12/6/2001