This topic is locked

User registration fields

9/8/2006 10:56:03 PM
ASPRunnerPro General questions
A
aroldox author

How can I change the registration fields order?
The correct order are:

Username:

Password:

Re-enter password:
But it apear in this order:

Password:

Re-enter password:

Username:

J
Jane 9/11/2006

Hi,
you can do it to edit generated register.asp file.

Open file, locate this code:

<tr>

<td align=right width="50%">

<div align="left"><%= MultilangMessage("USERNAME") %>:</div>

</td>

<td width="50%">

<input name="userinfo_FirstName" value="<%=Session("userinfo_FirstName")%>" >

</td>

</tr>



cut it and paste after following:

<tr>

<td align=right width="50%">

<div align="left"><%= MultilangMessage("REENTER") %>:</div>

</td>

<td width="50%">

<input type=password name=password1 value="<%=strPassword%>">

</td>

</tr>

A
aroldox author 9/12/2006

How can I change the registration fields order?

The correct order are:

Username:

Password:

Re-enter password:
But it apear in this order:

Password:

Re-enter password:

Username:


------------------------

<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=11030&image=1&table=forumreplies' class='bbc_emoticon' alt=':D' />

I found the solution for the problem below modifying the archive of the project and inverting the lines: <m_arrUserField>Senha</m_arrUserField>

<m_arrUserField>Username</m_arrUserField>