Re: OOT:Database connection in weblogic

2002-01-31 Thread Deepak Rustagi
hi, u must have classes 102.zip and classes 11.zip in classpath of weblogic. Open weblogic.properties for WB - 5.1. # WEBLOGIC JDBC CONNECTION POOL MANAGEMENT weblogic.jdbc.connectionPool.name_of_POOL=\ url=jdbc:oracle:thin:@127.0.01:1521,\ driver=oracle.jdbc.driver.OracleDriver,\

Re: Form submit

2002-03-19 Thread Deepak Rustagi
hi, Don't put action attribute in form tag. Call a method of javascript on form submit (onSubmit) m1() { if(condition ) { document.forms[0].action=""; } else{ document.forms[0].action=""; } document.forms[0].submit();

Re: Last Auto Increment

2002-07-24 Thread Deepak Rustagi
hi Duc, I think that last id is a number int id = select max( id) from table_name; then "select * from table_name where last_id = "+ id; What r u doing in Last_insert_id() Regards deepak rustagi -Original Message- From: Duc Nguyen [mailto:[EMAIL PROTECTED]] Sent:

Re: how to compare values in javascript

2002-12-26 Thread Deepak Rustagi
= and <> -Original Message- From: Abdul jeelani [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: how to compare values in javascript Hi, I need to compare the selected value of a combo box with a string. I tried using == and !=, but it