Re: Store int to session

2002-05-17 Thread Richard Yee
You can only store objects in a session. An int is not an object. Try storing an Integer object. -Richard At 01:05 PM 5/18/2002 +0700, you wrote: >Hi, >Is it possible to store int to session? I'm trying to store int but it can >not covert int object. >Explicit casting also did not work. >Tks. >

Store int to session

2002-05-17 Thread Gading
Hi, Is it possible to store int to session? I'm trying to store int but it can not covert int object. Explicit casting also did not work. Tks. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Fo

how to make colspan vary

2002-05-17 Thread [Vaishali S. Pandya]
can any one tell me how to change the value of colspan in javascript Plsee? it is needed urgently Thanks in advanse Vaishali RIL Ahm'd === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST

Re: how to use javascript variable in html?

2002-05-17 Thread [Vaishali S. Pandya]
Thanks chen but how to define myTD? cause td is not an object as the error occurs during run time please try the code here text box with ril shoud move on click of button should move one column right and left on click of > and < button respectivly. please try and help Dynamic colspan

Re: Submit a Window on Enter button

2002-05-17 Thread [Vaishali S. Pandya]
Check it function fun(){ alert ("In function"); } Try this this is working with me fine i mean don't user href but put the imag on the submit button Vaishali RIL Ahm'd Hi all, In my aplication, in some point of time, user clicks on change password

How much scriptlets?

2002-05-17 Thread Gading
Hi, How much scriptlets is acceptable to conforms the good design program? I've seems too many scriptlets in one page is seems very hard to maintains in future and also no benefits from asp, even after trying to put bussiness logic in bean. Some task are (imho) very eficient if handle by scriptle

Re: Save the Doc on Server

2002-05-17 Thread Pete Freitag
If you can convert the Word Document to HTML (you can find tools to do this) then you can use ActivEdit to edit the HTML content: http://www.cfdev.com/activedit/ -pete -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On

Submit a Window on Enter button

2002-05-17 Thread Smita Kotnis
Hi all, In my aplication, in some point of time, user clicks on change password button, a window will be opned up, asking about new password. On that window, I have a textbox and a image(On a href on this image, I am calling a java script function). Now, user wants to this to work, even

One more detail - "sendRedirect() from within a ?"

2002-05-17 Thread Jay Burgess
One important detail I forgot to mention is that the has "flush='false'", which should buffer the prior content ("" in this case), so the sendRedirect() should work. Right? Jay > -Original Message- > From: Jay Burgess [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 17, 2002 11:27 AM

sendRedirect() from within a ?

2002-05-17 Thread Jay Burgess
Obviously I'm missing some important detail about the mechanics of using . I've got a JSP with nothing in it but a ",,,". The "page" for the is a direct call to my servlet. The only thing my servlet does is a sendRedirect() to another page. When I request my JSP, I get back just "", which mea

how to use javascript variable in html?

2002-05-17 Thread [Vaishali S. Pandya]
hi friends i want to write an html code were in table the colspan = on button click i want to increase or decrease the colspan value how to make this value vari? well i am sorry but i don't want to use JSP here cause i want this thing on client side only. can i do it with javascript or html itsel

Save the Doc on Server

2002-05-17 Thread Chan Mal
In my web application.. frontend JSP Â…User needs to edit word document on browser which is residing in Server and has to save the document in Server it self that means at same URL(not on Local PC)... Is there any mechanism for this to handle either Server side or client side if you people

R: R: Page by page iterator

2002-05-17 Thread Luca Ventura
Ok, thanks a lot!! Luca -Messaggio originale- Da: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]Per conto di John Vanderbrook Inviato: venerdì 17 maggio 2002 12.10 A: [EMAIL PROTECTED] Oggetto: Re: R: Page by page iterator Use TICL (http:

Re: R: Page by page iterator

2002-05-17 Thread John Vanderbrook
Use TICL (http://www.kobrix.com), you can define different styles for your paged tableview displays. John - Original Message - From: Luca Ventura <[EMAIL PROTECTED]> Date: Fri, 17 May 2002 09:39:09 +0200 To: [EMAIL PROTECTED] Subject: R: Page by page iterator > Thank you! >

Re: SOAP

2002-05-17 Thread Ronny Van der Perre [Smart IT Systems]
http://www.google.be/search?q=%22soap+tutorial%22&ie=UTF8&oe=UTF8&hl=nl&meta = -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Kesav, Ramesh Sent: Friday, May 17, 2002 10:51 To: [EMAIL PROTECTED] Subjec

Re: SOAP

2002-05-17 Thread Panayiotis Periorellis
You better off buying either of these two books. http://www.amazon.co.uk/exec/obidos/ASIN/0596000952/qid=1021625739/sr=2- 1/ref=sr_2_3_1/202-8247909-6983804 Or http://www.amazon.co.uk/exec/obidos/ASIN/0672319225/qid=1021625853/sr=2- 3/ref=sr_2_3_3/202-8247909-6983804 panos -Original Mess

SOAP

2002-05-17 Thread Kesav, Ramesh
Hi, where can i find articles and tutorials about SOAP. Regards Ramesh Kesavanarayanan [EMAIL PROTECTED] === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED]

R: Page by page iterator

2002-05-17 Thread Luca Ventura
Thank you! But can I change the layout of every page? I mean...I don't want the same layout of Google or Altavista: I want to be able to define my own layout ,my bottons and so on...is it possible? Thanks a lot in advance! Luca -Messaggio originale- Da: A mailing list

Re: Passing "array parameters" from one page to another

2002-05-17 Thread Emmanuel Eze
Thanks Guys. I finally wrote: public String repeatChar(char achar, int size){ char arr[] = new char[size]; Arrays.fill( arr, achar ); return new String(arr); } -Original Message- From: Joseph Ottinger [mailto:[EMAIL PROTECTED]] Sent: Thurs