Re: List page problem - JSP

2002-04-03 Thread Kwan, William
Hi Eric, I had to use taglibs. Go to http://jsptags.com/tags/navigation/pager/ talk to you later, Will -Original Message- From: Eric Fleming [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 11:53 AM To: [EMAIL PROTECTED] Subject: Re: List page problem - JSP Does anyone

Re: Urgent !!!!!!!! Please help me

2001-12-13 Thread Kwan, William
Hi, Try the following. script language='javascript' function verifydate() { if (document.form1.txtbox.value == ) then { document.form1.txtbox.focus(); return false; }else return true; } /script html body form method='post'

Re: JDBC question

2001-12-10 Thread Kwan, William
Eric, I used the following code: Class.forName=(allaire.jrun.jdbc.JRunDriver); dbcon = DriverManager.getConnection(jdbc:jurun:sqlserver://server1:1433;databaseNam e=test,user1,user1); You could also try http://www.allaire.com/support/forums/ to ask questions about JRUN. talk to you later,

Re: including files in jsp

2001-11-27 Thread Kwan, William
/test.inc% or you can also change the file extension to test.js {netscape style} %@include file=test.js% cheers! ashish - Original Message - From: Kwan, William [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 26, 2001 4:14 PM Subject: including files in jsp Hi, Is it possible

including files in jsp

2001-11-26 Thread Kwan, William
Hi, Is it possible to include a file in your jsp without having to use out.println statements?? I would like to include some javascript to the output page but I dont want to type it in all my jsps?? Something like vbscript !--INCLUDE FILE=test.inc-- Is there an equivalent in jsp?? talk to you

Limiting number of records returned to be displayed

2001-11-14 Thread Kwan, William
Hi, I'm new to JSP and I have a couple of questions. 1) how do I display only one record on the page?? 2) the user can scroll to the next or previous records by pressing a next/previous button, get the next record to be displayed?? thanks, Will