If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Radiolist problems.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-19-07, 10:50
christyxo christyxo is offline
Registered User
 
Join Date: Oct 2003
Location: London
Posts: 291
Question Radiolist problems.

Hey Guys.

I'm really having trouble here getting the results of a radiolist into my database.

The Sql statement works fine so the problem lies with either my parameters or with the radio list itself but I really can't get my head around this.

My parameter is;

Dim paramQ1 as New OleDBParameter
paramQ1.ParameterName = "@Q1"
paramQ1.Value = Q1.selecteditem.value
paramQ1.DbType = DbType.
dbComm.Parameters.Add(paramQ1)

The DbType is blank because I have no idea what goes here and have been trying everything I can think of without results.

My radiolist is;

<asp:RadioButtonList ID="Q1" runat="server">
<asp:ListItem Value="1" Text="Excellent"></asp:ListItem>
<asp:ListItem Value="2" Text="Good"></asp:ListItem>
<asp:ListItem Value="3" Text="Adequate" Selected="true"></asp:ListItem>
<asp:ListItem Value="4" Text="Less than adequate"></asp:ListItem>
<asp:ListItem Value="5" Text="Poor"></asp:ListItem>
</asp:RadioButtonList>


I've got the submit button working a couple of times now so that it doesn't pass an error but its inserting "0" into my database rather than the listitem values.

Any suggestions? My aim is to choose a value in my radio list, take the corresponding value i.e. 1 for excellent, and to submit this into my database.

Thanks in advance
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On