There is something really strange happening, and I guess it should be
something silly that I should be doing. I am working on a portal,
specifically on the new user registration piece. A user can click on
the button that says sign up, which links to a a page (register.vm )
in a scripts folder.

here is the gist of register.vm :

<form method="post" name="reg"
action="http://localhost:8080/diversity/servlet/diversity/action/user.FluxUserAction";>

<table border="0" cellpadding="0" "cellspacing="1" width="600">
      <tr>
                <td colspan="2" class="appstreamBoxTop">
                  Basic Information
        </td>
      </tr>

      <tr>
                  <td class="appstreamFormLabel" valign="top" align="right" 
width="30%">
                        &nbsp; Contact First Name: &nbsp;
                  </td>
                  <td class="appstreamFormElement" align="left">
                      &nbsp;&nbsp;<input type="text" class="appstreamFormText"
size="50" name="firstname" value="">
                  </td>
      </tr>


<tr>
                  <td class="appstreamFormLabel" valign="top" align="right" 
width="30%">
                        &nbsp; Contact Last Name: &nbsp;
                  </td>
                  <td class="appstreamFormElement" align="left">
                      &nbsp;&nbsp;<input type="text" class="appstreamFormText"
size="50" name="lastname" value="">
                  </td>
</tr>
...and then some more
...
...

<table border="0" cellspacing="1" celpadding="0" width="100%">
<tr>
<td class="appstreamBoxTop" colspan="2">
                Performable Task:
</td>
</tr>
<tr class="appstreamTransitionBox">
<td colspan="2" align="left">
<input class="appstreamFormButton" type="submit"
name="eventSubmit_doTest" value="Submit New Registration" />
                        The basic information we gather in this form will allow 
you
to login and complete your profile.
</td>
</tr>
</table>

 
Now, if I keep the number of input fields below 10 the action
(doTest() ) is found and the user is created. But as soon as I add the
11th field I can Running doperform in the log. It cant find my
doPerform() action.

Is there a limit?? I dont think so .. any help would be appreciated greatly.

Thanks,

Vick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to