Combo box with ASP?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jochen scheire

    Combo box with ASP?

    Is there a way to implement a combo box, like in access in ASP? Or is there
    another way to have the same result. I want to make a page where people can
    choose an item in a list, but add one if it isn't in the list.


  • Roji. P. Thomas

    #2
    Re: Combo box with ASP?

    What you can do is have a seperate text box to enter the new item and add
    that to the list with some javascript.


    --
    Roji. P. Thomas
    SQL Server Programmer
    --------------------------------------
    "jochen scheire" <jochen.scheire @metamedia.be> wrote in message
    news:0kXAb.6637 1$ME1.2643010@p hobos.telenet-ops.be...[color=blue]
    > Is there a way to implement a combo box, like in access in ASP? Or is[/color]
    there[color=blue]
    > another way to have the same result. I want to make a page where people[/color]
    can[color=blue]
    > choose an item in a list, but add one if it isn't in the list.
    >
    >[/color]


    Comment

    • kmeds

      #3
      Re: Combo box with ASP?

      "jochen scheire" <jochen.scheire @metamedia.be> wrote in message news:<0kXAb.663 71$ME1.2643010@ phobos.telenet-ops.be>...[color=blue]
      > Is there a way to implement a combo box, like in access in ASP? Or is there
      > another way to have the same result. I want to make a page where people can
      > choose an item in a list, but add one if it isn't in the list.[/color]


      You would have to write a quick javascript to handle this sort of
      thing. You'd have a combo box that would basically be an array and
      then you'd write to that array via a form, the javascript would
      manipulate the combo box so the item would have values etc.

      Comment

      Working...