jsp-servlets

2000-06-19 Thread Kuklani Mahesh
Hi, I want to use collections in my code . Can anybody point out the problem with the following code. I am getting an SQLException SQLException: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'GET_DATA' ORA-06550: line 1, column 7: PL/SQL: Statement ignore

Re: If condition in jsp

2000-06-12 Thread Kuklani Mahesh
- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Kuklani Mahesh Sent: Monday, June 12, 2000 10:55 AM To: [EMAIL PROTECTED] Subject: Re: If condition in jsp I tried changing the code i.e this way but i want if the text item is null t

Re: If condition in jsp

2000-06-12 Thread Kuklani Mahesh
("") { out.println("Invalid login Id"); } else { %> <% following code %> Santosh Kuklani Mahesh <[EMAIL PROTECTED]> on 06/12/2000 01:37:08 PM Please respond to A mailing list about Java Server Pages specification and reference <[EMAIL P

Re: If condition in jsp

2000-06-12 Thread Kuklani Mahesh
n in jsp try if (request.getParameter("cid") != null) { // blah blah } -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Kuklani Mahesh Sent: Monday, June 12, 2000 10:37 AM To: [EMAIL PROTECTED]

If condition in jsp

2000-06-12 Thread Kuklani Mahesh
Hi , I am new to jsp and want to design a form. The form has 2 fields id and password. I want to check in jsp whether if the field is null then re-direct him to login.html again. Below is my code, if i am sending blank id field still i am getting hello printed on the browser but i want it to r

Collection

2000-06-09 Thread Kuklani Mahesh
Can anybody help me with a code of collection object. i.e how to retrive from database through servlets and display it using jsp. Thanks in advance Mahesh === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP

PL/SQL tables

2000-06-07 Thread Kuklani Mahesh
Hi all, I have a database procedure which gives me a PL/SQL table of records as out parameter and which i need to display it on page. i.e type emp_record is record ( empno varchar2(4), ename varchar2(20)) ; type emp_array is table of emp_reco