Results 1 to 3 of 3

Thread: Select Problem

  1. #1
    rsitogp
    Guest
    I've got a problem (with vb), I'm using webbrowser control to fill forms, but I've got a selectbox:
    <SELECT name="day"><OPTION><OPTION>01<OPTION>02<OPTION>03<OPTION>04<OPTION>05<OPTION>06<OPTION>07</SELECT>

    which I don't know how to set a value because the is no value="xxx", can someone help?

    Thanks in advance.

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    You only have start tags, not the end ones :
    Code:
    <SELECT name="day">
        <OPTION>01</OPTION>
        <OPTION>02</OPTION>
        <OPTION>03</OPTION>
        <OPTION>04</OPTION>
        <OPTION>05</OPTION>
        <OPTION>06</OPTION>
        <OPTION>07</OPTION>
    </SELECT>

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  3. #3
    rsitogp
    Guest
    It's ok, I fixed it, thanks anyway.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width