Re: Javascript and JSP

2002-10-28 Thread Branden Root
Wesley, Given that Javascript is client-side, and JSP is server side, the only way to do this would be to submit the information (in a form perhaps) after the user hits the popup. On Monday, October 28, 2002, at 10:05 AM, Wesley Choate wrote: I am wanting to display a popup prompt using

Javascript and JSP

2002-10-28 Thread Wesley Choate
I am wanting to display a popup prompt using javascript to get a value, and then use this value in my JSP page. Is there anyway to do this? Thanks, Wesley Choate Programmer / Analyst Lavender & Wyatt Systems, Inc. [EMAIL PROTECTED] 5805 West 12th Street Little Rock, AR 72204 (501)664-7039 "Sh

Re: Javascript and JSP Question?

2002-10-15 Thread Harsha Sanjeewa
- Original Message - From: "Daniel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 15, 2002 3:39 PM Subject: Javascript and JSP Question? > Hi All, > > I have a Srting array Object > > String[] str = a.getCity(); //returns an ar

Re: Javascript and JSP Question?

2002-10-15 Thread Giovanni Azua
, Giovanni > -Original Message- > From: Daniel [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 2002 11:40 AM > To: [EMAIL PROTECTED] > Subject: Javascript and JSP Question? > > > Hi All, > > I have a Srting array Object > > String[] str = a.

Javascript and JSP Question?

2002-10-15 Thread Daniel
Hi All, I have a Srting array Object String[] str = a.getCity(); //returns an array of City I have a Javascript Code here var arrCity = new Array(); for(i=0; i<<%=str.length%>;i++) I want to put all the elements in the str array Object into arrCity Javascript array Object.(i.e.) arrCity[i]

problem with javascript and jsp

2002-03-16 Thread [Your Full Name]
An: [EMAIL PROTECTED] Kopie: Blindkopie: Absender: [EMAIL PROTECTED] Thema: problem with javascript and jsp Hello to all, perhaps somebody has a useful hint ... The JSP-File f2_logon1.jsp invokes f2_logon2.jsp. When doing this, I need to change 4 HTML-frames simultaneously. This is

Re: combining javascript and jsp

2000-11-24 Thread JSP Insider
with your server. The applet will also be on the client side and can work with the JavaScript. Jayson Falkner [EMAIL PROTECTED] - Original Message - From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 24, 2000 2:08 AM Subject: co

combining javascript and jsp

2000-11-24 Thread [EMAIL PROTECTED]
Hi its possible to something like this: function myFunc() { if (a_condition){ <% myBean.setBeanProp(1);%> . } } or the code between <% %> is always executed? Thanx Raffaele Bello === To unsubscribe: mai

Re: javascript and jsp

2000-02-06 Thread Dmitri Namiot
JavaScript is client side issue. So you need to transfer this variable to server by some way. One of solutions you can see at http://coldjava.hypermart.net It is J2J servlet. ColdJava: java server side programming http://coldjava.hypermart.net

Re: javascript and jsp

2000-02-06 Thread Joseph B. Ottinger
On Fri, 4 Feb 2000, w yen wrote: > i created a variable in javascript and want my jsp > code to recognize it, suggestion? Create the variable as a hidden value in a form and manipulate it as normal. When the form is submitted, the JSP will have acces to it as an HTTP form field. ---

Re: javascript and jsp

2000-02-05 Thread Antonio Calzada
al Message - From: w yen <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 04, 2000 6:17 PM Subject: javascript and jsp > i created a variable in javascript and want my jsp > code to recognize it, suggestion? > __

javascript and jsp

2000-02-05 Thread w yen
i created a variable in javascript and want my jsp code to recognize it, suggestion? __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com ===

Re: ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Srinivas Attili
9 9:08 AM > To: [EMAIL PROTECTED] > Subject: ERROR with JAVASCRIPT AND JSP (can i do this???) > > Here is the code > in the jsp file > <%String xyz[ ]={"one","two","three"};%> > > function one() > { > two(<%=xyz%>) &

Re: ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Praveen Kumar S .
into a single string Amit > -Original Message- > From: Attili Srinivas [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, December 28, 1999 9:08 AM > To: [EMAIL PROTECTED] > Subject: ERROR with JAVASCRIPT AND JSP (can i do this???) > > Here is the code > in the jsp file

ERROR with JAVASCRIPT AND JSP (can i do this???)

1999-12-27 Thread Attili Srinivas
Here is the code in the jsp file <%String xyz[ ]={"one","two","three"};%> function one() { two(<%=xyz%>) } function two(object) { ... .. } I get a javascript error as follows missing ] after argument list. two([Ljava.lang.String;@1bc27e74) Can anyone help me with this Thanks Sriniva