Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Updating a forms drop down menu
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Updating a forms drop down menu

 Post Reply Post Reply
Author
edulog View Drop Down
Newbie
Newbie


Joined: 25 June 2003
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote edulog Quote  Post ReplyReply Direct Link To This Post Topic: Updating a forms drop down menu
    Posted: 27 June 2003 at 1:34pm
I've created a basic access database, using asp pages to read record and write new records.

I'm on working on updating exsiting records in the database. The user can add a new record to the database using a complicated HTML form. In this form I have some drop down menus, where the user can pick diffierent choises to enter.

For updating an exsiting record I want to use the same form. But, I don't know how to get the drop down menu to show the correct entry in the record. Here is an example of my code...

<tr><td>WebQuery Purchased:</td><td>
         <SELECT name="WebQuery">
             <OPTION><% Response.Write (rsGuestbook("WebQuery")) %></OPTION>
             <OPTION selected value="true">True</OPTION>
             <OPTION selected value="false">False</OPTION>
         </SELECT></td></tr>

Thanks!!
Back to Top
Scotty32 View Drop Down
Moderator Group
Moderator Group


Joined: 30 November 2002
Location: Manchester, UK
Status: Offline
Points: 1682
Post Options Post Options   Thanks (0) Thanks(0)   Quote Scotty32 Quote  Post ReplyReply Direct Link To This Post Posted: 27 June 2003 at 1:44pm

you could try

<SELECT name="WebQuery">
     <OPTION value="true" <% if rsGuestbook("WebQuery") = true then Response.Write("SELECTED")%>>True</OPTION>
     <OPTION value="false"<% if rsGuestbook("WebQuery") = false then Response.Write("SELECTED")%>>False</OPTION>
</SELECT>

if this doesnt work try using quotes round the true and false.. if you get any errors post the error here so sumone else or i can help futher

also you might want to thing about using a differnet page to edit records, as you cant get a record if your trying to posting one

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.