Question on create dynamic content homepage.

2001-09-03 Thread Dick Wong
? If combine it, how to make a flexible homepage, or which part should be done by JSP and Servlet. Please give me some comments on it. Thanks for your kind attention & help. Regards, Dick Wong === To unsubscribe: ma

Help on JSP (No. of records display)

2001-09-10 Thread Dick Wong
How can I control 20 records display on each page through JSP ? Is there any simple example? Thanks for your help. Regards, Dick === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest:

How to implement a Grid on html

2001-09-13 Thread Dick Wong
Dear all, I want to implement a Sales Order Entry on a Web base. How can I do that with a Grid Box so that user can input all the order details ? By JSP ? or Servlet ? or any other existing tools ? Thanks for your attention & Help. Regards, Dick

Help on JSP error

2001-09-14 Thread Dick Wong
Dear all, When I execute the query, if the result set has no record then it display the following error ? why ? how can I prevent it ? Internal Servlet Error: javax.servlet.ServletException at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:459)

Help on JSP page.

2001-09-16 Thread Dick Wong
Dear all, Please tell me why if the result is no record, then the following error message display ? How can I solve it. Thanks. <%@ page language="java" import="java.sql.*,java.io.*" %> <%! Connection con=null; Statement stmt=null; ResultSet result=null; Statement stmt1=null; Resul

JSP on Sales Order form

2001-09-17 Thread Dick Wong
I would like to create a sales order form for data input and enquiry. Should I separate it in two forms or using the same form ? If using the same form, how can I do that ? Regards, Dick Wong === To unsubscribe: mailto

Help on connecting mysql server.

2001-09-19 Thread Dick Wong
Dear all, How can I connect to the mysql server ? I do not know the connection syntax . DriverManager.registerDriver( ??? ); Connection con=DriverManager.getConnection( ??? ); Can anyone help me ? Thanks Dick ==

Get Help on using the DOM

2001-09-19 Thread Dick Wong
Anyone can help me how to delete a record using the "DOM" or another good implementation for grid in html ? Help! Untitled Document idCounter=1 function addRow() { startPt=document.getElementById("resultTableBody") dataA=document.createTextNode( document.form1.text_name.value

How to set the PageSize in JSP ???

2001-09-20 Thread Dick Wong
Dear all, As I know that there is something like "PageSize" in asp to control how many records to be retrieve in each page. How can I implement it on JSP ?? Any PageSize in JSP ?? As I want to do a result page with 10 records per page. Thanks for your help. Regards,

Is there anyway to disable the getForcus and inout for textbox entry?

2001-09-21 Thread Dick Wong
Dear all, I create a entry form for Customer Master and I would also like to display the data on same form when user click the search button. Is there any way to disable the getfocus and input when user search record. Or should I seperate it into two form, one for data entry and the other is for

Re: Grid

2001-09-23 Thread Dick Wong
I tried to using the DOM to implement it. M Sankar <[EMAIL PROTECTED]To: [EMAIL PROTECTED] E> cc: Sent by: A Subject: Grid mailing list

Help on add or retrieve the Image through .jsp???

2001-09-24 Thread Dick Wong
, Dick Wong === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can

How can I trim the string in Java ???

2001-09-24 Thread Dick Wong
Same as subject. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at:

Help on JSP formatting.

2001-09-25 Thread Dick Wong
Job Details Table: 1. Job Order no. 2. Description. Description is used to record the job requirement, and all the details. Should I save the html tag to the table together with the data ? As I want to display the data with a formatting such as separate paragraph, bold and etc. Is there any good

Retrieve field value in JSP

2001-09-25 Thread Dick Wong
Dear all, select * from dick.joborder_details jd,dick.joborder_master jm,dick.customer_master cm where jd.joborderno=jm.joborderno and jm.customer_code=cm.customer_code There is two field called "description" in both table "joborder_master" and "joborder_details" but I cannot retrieve the jm.des

Re: Retrieve field value in JSP

2001-09-25 Thread Dick Wong
How ? Richard Yee <[EMAIL PROTECTED]>To: [EMAIL PROTECTED] Sent by: A cc: mailing list Subject: Re: Retrieve field value in JSP about Java Server

Re: connecting to oracle using jdbc and jrun (newbie)

2001-09-25 Thread Dick Wong
Try this one.. Connection con=null; Statement con=null; public void jspInit() { try { DriverManager.registerDriver( new oracle.jdbc.driver.OracleDriver() ); con=DriverManager.getConnection("jdbc:oracle:thin: @192.168.0.253:1521:aft", "system", "manager"); stmt=con.createStatement

Re: Help on retrieve value

2001-10-05 Thread Dick Wong
specification and reference HI USE window.refferer.document.form1.IDText.value Regards deepak http://www.geocities.com/deepak_38 --- Dick Wong <[EMAIL PROTECTED]> wrote: > if there is a button in form1. If I press it, it > open a new window (form2). > How

Help on Image processing.

2001-10-05 Thread Dick Wong
Dear all, I would like to know hot to handle the image in SQL server. Should I save the image to the BLOB field or just record the image path ? Which one is better and common practice ? Thanks for your help. Regards, Dick Wong

JSP Update Clipper Index file

2001-10-21 Thread Dick Wong
Der all, Can I using the JSP + java to update the Clipper database and the .NTX index file ?? Possible ? Thanks for your help. Regards, Dick Wong === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signof

Error

2001-10-28 Thread Dick Wong
Dear all, What is the following error message ? How to solve it?? java.sql.SQLException: Communication link failure: Bad handshake === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest:

charset in jsp

2001-11-20 Thread Dick Wong
When my jsp retrieve the data from mysql , it cannot display the Chinese Character. Why ??? What's the problem ?? I already add these lines on my .jsp : <%@ page contentType="text/html;charset=Big5" language="java" import ="java.sql.*, java.text.*, java.util.Date.*" %> <%=result.getString("jo

Re: Charset problem.

2001-11-21 Thread Dick Wong
that MySQL is storing the data correctly? > -Original Message- > From: A mailing list about Java Server Pages specification > and reference [mailto:[EMAIL PROTECTED]] On Behalf Of > Dick Wong > Sent: Tuesday, November 20, 2001 9:47 PM > To: [EMAIL PROTECTED] > Sub

Charset problem.

2001-11-20 Thread Dick Wong
Dear all, When my jsp retrieve data from mysql. All the chinese characters cannot be displayed and become special symbol. However, if I type a chinese characted in jsp file. It can display. So I think this is the mm driver problem or jdbc. Is there any suggestion or hints ?? Regards, Dick

Get help on rounding.

2001-11-26 Thread Dick Wong
Dear all, How can I round a money value into the nearest 5 cents ? e.g $2.0625 after round = $2.05 $2.0421 after round = $2.00 Thanks === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". F

Javamail Schedule

2001-11-27 Thread Dick Wong
how to write an javamail with auto send email based on the schedule ? The key question is how to set a schedule in Java ? Anyone can give me some hints ? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-IN