Re: frame problem

2001-04-30 Thread Shirley Chen
and the questions you are asking is like asking someone write the JSPs for you. This is how it appears to me, please enlighten me otherwise though. =) Okay to answer your question. use HttpSession's setAttribute and getAttribute. -Original Message- From: Shirley Chen [mailto:[EMAIL

frame problem

2001-04-27 Thread Shirley Chen
Hi, I have a nested frameset which looks like this: frameset rows=100,* frame src=Header.jsp name=HeaderFrame frameset cols=250,* frame src=menu.jsp name=MenuFrame frame src=main.jsp name=MainFrame /frameset /frameset in the main.jsp, it looks like this:

Re: frame problem

2001-04-27 Thread Shirley Chen
onLoad=... Tarik - Original Message - From: Shirley Chen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 27, 2001 1:21 PM Subject: frame problem Hi, I have a nested frameset which looks like this: frameset rows=100,* frame src=Header.jsp name=HeaderFrame

Re: frame problem

2001-04-27 Thread Shirley Chen
onLoad=... You will have to specify the frame number in javascript. Justin -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Shirley Chen Sent: Friday, April 27, 2001 7:26 PM To: [EMAIL PROTECTED] Subject: Re

Re: frame problem

2001-04-27 Thread Shirley Chen
://javascript.internet.com/navigation/frames-load-order.html -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Shirley Chen Sent: Friday, April 27, 2001 8:23 PM To: [EMAIL PROTECTED] Subject: Re: frame problem How do I

Re: frame problem

2001-04-27 Thread Shirley Chen
are you using frames. There is more effective ways of laying out sites. Just curious though. Justin -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Shirley Chen Sent: Friday, April 27, 2001 10:35 PM To: [EMAIL

Re: How to display messages

2001-02-23 Thread Shirley Chen
y to message1/td well u got the idea tr Where blank.gif is a transparent image. Sorry i have no blank image now to attach to you. Rafael Antillón Reyes Grupo Vitro Tel. 3-29-17-00 Ext. 2966 [EMAIL PROTECTED] ICQ# 61057293 ---Original Message- From: Shirley Chen [mailto:[EMAIL PROT

Re: Cant Save .jsp file!!

2001-02-14 Thread Shirley Chen
Jennifer, I use textPad all the time, and I never have problems like that. Try this: when you do save as, use double quotes around the name e.g. "name.jsp". Good luck! From: Jennifer Feeney [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference

Re: A Servlet Exception Has Occurred ??

2001-02-14 Thread Shirley Chen
It means the error is on line 14 character 1, usually I only pay attention to the line number. From: sufi malak [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: A Servlet Exception Has Occurred

Re: arrays

2000-12-22 Thread Shirley Chen
} // print out the contents of the second array for (int y = 0; y array2.length; ++y) { System.out.println(array2[y]); } } } ----- Original Message - From: Shirley Chen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 20, 2000 2:

arrays

2000-12-20 Thread Shirley Chen
Hi, I have a question, somebody please help me: I have a vector which will keep all the names the user typed in. Then the user supposes can do a query like "give me all the name which starts with 'C'". In order to do that, I do something like this: ... String[] array1 = new

Re: arrays

2000-12-20 Thread Shirley Chen
Dec 2000 13:06:06 -0800 Why don't you just use Vector? Vector v_queryResult = New Vector(); ... if(tmpString.indexOf('C')!=-1) { v_queryResult.addElement((Object)tmpString); } Then there's no need for Array2. -Original Message- From: Shirley Chen [mailto

LinkedList

2000-12-07 Thread Shirley Chen
I am strugling so hard on this, could anybody help me? Here is my problem: I need a fixed size linkedlist (100 elements) to store string objects. The reason for the fixed size is I don't know how many strings I will get, and I don't want the linkedlist out grow so it will fill up the memory.

Re: LinkedList

2000-12-07 Thread Shirley Chen
Hi, Maybe I didn't explain it very clearly, basically I have a code segment like this: LinkedList myMessages = new LinkedList(); int startPoint = 0; . String message = aFirstName + "," + aLastName + ","+ aSex + "," + aComment; while (message != null) { myMessages.add(startPoint,

JavaBeans - a little off of the topic

2000-11-17 Thread Shirley Chen
Hi everyone, Sorry for the off topic. Today I try to learn JavaBeans. I downloaded jdk1.2.2 and bdk1.1. Then I follow the readme file on bdk1.1 to try to hook the juggler bean and two ourButton beans. I followed the instructions exactly as follow: 1. Start the BeanBox. 2. Drop a Juggler