Print Page | Close Window

Mod Request...Text Area For Location...

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums Modifications
Forum Description: Mod's and Add-on's for Web Wiz Forums.
URL: https://forums.webwiz.net/forum_posts.asp?TID=19583
Printed Date: 29 March 2026 at 12:33pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Mod Request...Text Area For Location...
Posted By: bikrtrash
Subject: Mod Request...Text Area For Location...
Date Posted: 27 April 2006 at 3:39am
Can anyone tell me how to change the location from a drop box to select country to a text field that the members may type in a more specific location....ie...
 
Ft Worth, Texas  Big smile



Replies:
Posted By: Ali Bilgrami
Date Posted: 27 April 2006 at 11:32am
change the type to text area in register.asp, i think...


Posted By: venki
Date Posted: 29 April 2006 at 3:46pm

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><%


Posted By: bikrtrash
Date Posted: 01 May 2006 at 1:37am
That worked great...
thanks venki    Thumbs Up



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net