|
-
Apr 20th, 2001, 04:00 AM
#1
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.
-
Apr 20th, 2001, 04:08 AM
#2
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>
-
Apr 20th, 2001, 04:21 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|