I.E icon keeps spinning after jsp gets loaded

1999-12-15 Thread Rupesh Choubey
Title: I.E icon keeps spinning after jsp gets loaded sorry if this has been sent twice.had some trouble the first time... hi, we have a multi-framed screen...on some of the screens, the I.E icon keeps spinning and it seems to be attempting to do something...seems to be waiting for more d

I.E icon keeps spinning after loading jsp's

1999-12-15 Thread Rupesh Choubey
Title: I.E icon keeps spinning after loading jsp's hi, we have a multi-framed screen...on some of the screens, the I.E icon keeps spinning and it seems to be attempting to do something...seems to be waiting for more data.although the frames are downloaded correctly..this problem does

ERRORPAGE does paint over on the main FRAME - goes to the frame w hich throws exception.

1999-11-16 Thread Rupesh Choubey
ideas.Thanks. Rupesh. -Original Message- From: Rupesh Choubey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 16, 1999 5:38 PM To: [EMAIL PROTECTED] Subject: ERRORPAGE does not work on Netscape 4.6x Hi, I have ERRORPAGE setup for my JSPsIT works beautifully on I.E.It does

ERRORPAGE does not work on Netscape 4.6x

1999-11-16 Thread Rupesh Choubey
Title: ERRORPAGE does not work on Netscape 4.6x Hi, I have ERRORPAGE setup for my JSPsIT works beautifully on I.E.It does not work on Netscape.It displays the entire tag instead of redirecting to the errorpage... EXPERTS Please help with this issue.Thank you Rupe

doPost versus doGet - DESIGN DECISION???

1999-10-11 Thread Rupesh Choubey
quick question for the DESIGN gurus... we have a html+servlet+EJB+jsp application we are building. the servlets we use have the primary function of determining where we come from and what actions were taken on the pages, etc some of our servlets serve MULTIPLE pages..hence in ce

Re: difference between request.setParameter and session.putValue? ???? - but they achieve the same effect--dont they?

1999-10-08 Thread Rupesh Choubey
r("name", value); and then in a JSP write this session.getValue("name"); That will not work.   You can use session objects to pass data to a page but you must specifically remove/invalidate it or else it will stay around for the lifetime of the session. Mike -- >

difference between request.setParameter and session.putValue?????

1999-10-08 Thread Rupesh Choubey
Title: difference between request.setParameter and session.putValue? hi, i know you can make a value persist for the request lifetime using two ways: 1. request.setParameter("name", value); 2. session.putValue("name", value); and in the jsp say: what is the difference between the

Frames and JSPs?

1999-10-05 Thread Rupesh Choubey
Title: Frames and JSPs? i looked a lot for information on using JSPs and frames..but could not find anyhence, if anyone can help, that would be great.. How would frames work with JSPs? Would each frame be a new JSP? If so, how could changes to one frame be reflected in the othersa

call a servlet from a JSP! or a servlet from another??

1999-09-29 Thread Rupesh Choubey
Title: call a servlet from a JSP! or a servlet from another?? Could anyone help with the following issues: ** How do I call a servlet FROM a JSP? something like ** How do I call a servlet FROM another servlet? (i know its got to do with the RequestDispatcher...but i couldnt make it work..

session timeout...need to login (sometimes) and get back to same page

1999-09-29 Thread Rupesh Choubey
jsp gurus..please help the issue i am dealing with (sounds similar to what many have dealt with) is that if a user is on a certain page and the session times out.then we need to send him ot the login page and after a successful login, we need to redirect the user to the page he had su

Re: Session Tracking

1999-09-22 Thread Rupesh Choubey
Title: RE: Session Tracking  we've tried storing all the information (state) we need in the session object which is available to the servlet...hence, if we need to store the userId in for the next request/page, we actually do         session.putValue("userId", currentUserId); i

useBean : how does it get the object instance

1999-09-20 Thread Rupesh Choubey
Title: useBean : how does it get the object instance the useBean uses a Java bean and not an EJB. the javabean is a place holder for the data coming back from EJBs (potentially).. i know one mechanism the java bean instance can be sent to the jsp. *** session beans create the holder objec

How to generate complex tables using JSP and useProperty

1999-09-13 Thread Rupesh Choubey
What would be the (best) way to implement a complex table using JSPs. By a complex table, I mean one where : one of the columns is a button one of the columns is a checkbox different columns have different display properties (different text fonts, sizes, etc.) rows have

Re: Silly doubt AND Need help with URLEncoding examples

1999-09-09 Thread Rupesh Choubey
there is no such thing as a screen factory.when u have a large number of screens to develop, the idea is to get the process down to such a level, that the creation of screens is as it is being done in a factoryquick and easy. JSPs provide a LOT of freedom. hence one needs to decide what s

Re: How to design a screen factory using JSP?

1999-09-07 Thread Rupesh Choubey
how to >render themselves as HTML) -Original Message- From: Craig R. McClanahan [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: Tuesday, September 07, 1999 3:29 PM To: Rupesh Choubey Cc: [EMAIL PROTECTED] Subject: Re: How to design a screen factory using JSP? Rupesh

How to design a screen factory using JSP?

1999-09-07 Thread Rupesh Choubey
I have a design problem, around creating screen factories using JSPs, which I am trying to solve. Goals: * Design a screen factory which is scalable (easy to produce 10 screens or 500 screens) * Allow look and feel of screens to be changed globally with changes to as few places a

error talking to a servlet which is not used for some time....

1999-09-03 Thread Rupesh Choubey
Hi,I have a jsp page talking to a servlet running on weblogic which talks to another jsp. The second jsp has a useBean / getProperty tag which talks to a bean and gets some information.When I run this initially ( any number of times ) it works fine. However, if I leave it alone without touching