The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I have this piece of code:
I am trying to pass a value to the database into the column F_ISFREE
But everytime I upload it passes the 0 value instead of 1 when the 1 is selected.
Hope this makes sense I am trying to pass the second value to the database cause it always passes the 0<
Code:
" <select name=""FISFREE"" size=""4"">" & vbNewLine & _
" <option value=""0"">Pay To Download</option>" & vbNewLine & _
" <option value=""1"">Free Download</option>" & vbNewLine
Response.Write " </select>" & vbNewLine & _
I am trying to pass a value to the database into the column F_ISFREE
But everytime I upload it passes the 0 value instead of 1 when the 1 is selected.
Hope this makes sense I am trying to pass the second value to the database cause it always passes the 0<