Hi!
 
    I have a JSP page for registering user.
    I want to use a RegisterBean for reciving data.
    The registering JSP page is looking lik:
----------------------------------------------------------------------------------------------------------
<jsp:useBean id = "registerBean" scope="session" />
<jsp:setProperty name="registerBean" property="&" />
<form>
Name: <INPUT maxLength=10 name=userName size=10><br>
 ......
</form>
----------------------------------------------------------------------------------------------------------
    Buf afte the RegisterBean get the data from the JSP page,
 
    1. how could the RegisterBean report the registering result to the same page or another page?
    2. or I only can write some scipt code in the same or another JSP page to report the result?
    
    I don't want to use 2nt way, because the JSP page would contain too many codes,
    I want make the JSP page as clean as possible ...
 
    Sorry for my bad English .... :)
    Thanks for any response!!!
 

Reply via email to