page « Validation « JSP-Servlet Q&A





1. jsp validation in same page    stackoverflow.com

i want to validate the text box values in same jsp page and the output will be shown in the same jsp page .Is that possible

2. How to do validation in java script involve two jsp page?    stackoverflow.com

First page's image http://img30.imageshack.us/img30/5886/firstfs.th.jpg Second page's image enter image description here First page's code

<jsp:useBean id="labelBean" scope="session"
    class="my.com.infopro.ibank.ui.bean.LabelBean" />
<jsp:useBean id="txLimitMaintBean" scope="session"
    class="my.com.infopro.ibank.ui.bean.TxLimitMaintBean" />
<jsp:useBean id="lang" scope="session"
  ...

3. please validate my jsp page    coderanch.com

I agree with your comments. And I am trying to incorporate JSP in right manner. Since I am working on old application which is being hosted in a Apache/tomcat server with OS solaris. There are lots of application hosted there. I cannot change the whole set up rigt now for each application. I wanted to write a connection class inside a ...

4. How to to validation in java script involve two jsp page?    coderanch.com

This is first page.. After user click Update button it will go to second page at the following.. [list]I have success validate the new limit cannot exceed 2000 for 3rd Party Transfer. Coding for first page !! -------------------------- <%@ page import="java.util.Iterator"%> <%@ page import="my.com.infopro.ibank.dto.TxLimitMaintDto"%> <%@ page ...