[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

Loop through bound DataGrid with RadioButtonList in TemplateColumn

Asked by wilg0005 in .NET

Tags: datagrid, loop, through, radiobuttonlist

I have a DataGrid and I need to check the selected value of the RadioButtonList in each column when the form is submitted. I have included the code for the DataGrid and the section of VB code I am using to loop through it below.

Thanks for your help!

**********Begin DataGrid*****************
<form id="QualitySurvey" method="post" runat="server">
<asp:DataGrid Runat="server" ID="dataGridQuestions" AutoGenerateColumns="False">
   <Columns>
      <asp:BoundColumn HeaderText="" DataField="QuestionOrder"></asp:BoundColumn>
      <asp:BoundColumn HeaderText="Question" DataField="QuestionText"></asp:BoundColumn>
      <asp:TemplateColumn HeaderText="Answer">
         <ItemTemplate>
            <asp:RadioButtonList ID="radiolistAnswers" Runat="server" RepeatDirection="Horizontal">
               <asp:ListItem Value="1">1</asp:ListItem>
               <asp:ListItem Value="2">2</asp:ListItem>
               <asp:ListItem Value="3">3</asp:ListItem>
               <asp:ListItem Value="4">4</asp:ListItem>
               <asp:ListItem Value="5">5</asp:ListItem>
            </asp:RadioButtonList>
         </ItemTemplate>
      </asp:TemplateColumn>
   </Columns>
</asp:DataGrid>
<br><br>
<input id="buttonSubmit" type="submit" value="Submit Survey" runat="server" onserverclick="submitSurvey">
</form>
*********End    DataGrid*********************

*********Begin VB Code*********************
'##  Bind the DataGrid
Public Sub datagridQuestionsBind()
   Dim strSelectQuestions = "SELECT * FROM dbo.Question WHERE SurveyIndex = '" & ddlSurvey.SelectedValue & "' ORDER BY QuestionOrder;"
   Dim connectionString = ConfigurationSettings.AppSettings("ConnectionStringQS")
   Dim objConnect As New SqlConnection(connectionString)
   Try
       objConnect.Open()
       Dim objCommand As New SqlCommand(strSelectQuestions, objConnect)
       Dim objDataReader As SqlDataReader
       objDataReader = objCommand.ExecuteReader()
       dataGridQuestions.DataSource = objDataReader
       dataGridQuestions.DataBind()
       objDataReader.Close()
       objConnect.Close()
   Catch objError As Exception
       Response.Write("Error transacting with database: " & objError.Message)
   End Try
End Sub
'##  loop through the DataGrid when form is submitted
Public Sub submitSurvey(ByVal sender As Object, ByVal e As System.EventArgs)
   Dim item As DataGridItem
   For Each item In dataGridQuestions.Items
      '##  need code here to check the RadioButtonList values in the row.
   Next
End Sub
*********End   VB Code*********************
 
Loading Advertisement...
 
[+][-]04/26/06 11:19 AM, ID: 16546571Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04/26/06 11:29 AM, ID: 16546708Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: .NET
Tags: datagrid, loop, through, radiobuttonlist
Sign Up Now!
Solution Provided By: GranMod
Participating Experts: 1
Solution Grade: B
 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy