To add more fields in registration needs database editing, if you would like to change some fields to another, youst type what you want in language file, for ex. 'ICQ Number' could become 'Something' by editing in file 'language_files/language_file_inc.asp' at line 622. To add it as required field needs javascript editing in file 'register.asp'...
in file 'register.asp' at line you will find this code
<tr class="tableRow">
<td><% = strTxtLocation %></td>
<td>
<select name=location>
<option value="<% = strLocation %>" disabled selected><% If strLocation = "" Or strLocation = null Then Response.Write "-- " & strTxtSelectCountry & " --" Else Response.Write strLocation %></option>
<!-- Include countires include file -->
<!-- #include file="includes/select_countries_list.asp" -->
</select>
</td>
</tr><%
replace it whit this code
<tr class="tableRow">
<td><% = strTxtLocation %></td>
<td><input type="text" name="location" id="location" size="30" maxlength="40" value="<% = strLocation %>" /></td>
</tr><%
Edited by venki - 30 April 2006 at 1:38pm