Form data does not get pre-populated on the page with certain tag usages

2005-01-08 Thread meena r
I am facing issues while the my jsp has to be pre-popluated with form data in case of from validation errors. The issues are : 1. Usage of I have a requirement where in the value in the is a dynamically generated value where I tried to do the following "> I got an error messge

Dynamic html input tag generation and form validation

2005-01-06 Thread meena r
Hi, Based on some database coutn I have to render a certain dynamic number of html:text tags and render it on the html page. And based on the values entered in the html:text(which have been generated) I need to do form validation and render the page back to the user in case of errors Is there an

Re: Opinion needed on a Design issue

2004-10-20 Thread meena r
t > > business logic elsewhere? What if you want to use > it in a webservice or > > in a GUI standalone application. The business > logic should have to know > > nothing about web servers and HttpSession objects, > unless your business > > is building web servers.

Re: Opinion needed on a Design issue

2004-10-20 Thread meena r
unless your business > is building web servers. > > meena r wrote: > > >Hi, > > > >We have been mulling over an issue where , we have > >people on our team who are proposing to pass the > >HttpSession which we have in our Action classes to > the > >

Opinion needed on a Design issue

2004-10-20 Thread meena r
Hi, We have been mulling over an issue where , we have people on our team who are proposing to pass the HttpSession which we have in our Action classes to the buisness delegate(which is an ordinary java class which encapusulates calls the session facade). While the j2ee blueprint for the business

RE: Page refresh

2004-09-13 Thread meena r
David, I am not able to figure out the following: Let us say I have a page A.jsp in which I have a hidden iframe called B.jsp. Now this page A.jsp has the select onchange call which in turn sets some values in the form present in the hidden iframe B.jsp and submits the form in the iframe B.jsp.

RE: Page refresh

2004-09-07 Thread meena r
frame and > javascript so you avoid the refresh > > let me know if any more qu's > > cheers, > > David > > > > |-+--------> > | | meena r | > | |

RE: Page refresh

2004-09-03 Thread meena r
Well ,this requires that the end-user's browser has a java plug-in installed. We are trying to look at approaches where there wouldn't be any addtln set up required on the client side. Thanks Meena --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original

Page refresh

2004-09-03 Thread meena r
Hi, I am currently working on a Struts based project where we have a requirement to fetch details/images from the server(Webshere 5.0) and display to it to the user without allowing the page to re-fresh. We are in the process of seeing whether we can use Iframes or Xml-Rpc for remote scripting. Wo