Click here to Skip to main content
15,888,189 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ASP.NET
<asp:GridView ID="grdquestion" runat="server" DataKeyNames="questionId" CssClass="table" EmptyDataText="No grdquestion Found." AutoGenerateColumns="false" ShowHeader="false" BorderWidth="0"
                                                        OnRowCommand="grdquestion_RowCommand">
                                                        <columns>
                                                            <asp:TemplateField>
                                                                <itemtemplate>
                                                                    <div class="row">
                                                                        <label for="exampleInputEmail1">
                                                                            <asp:HiddenField ID="hdnquestionId" runat="server" Value='<%# Eval("questionId") %>' />
                                                                            <span class="newvertxt"><%# Eval("questionText") %> </span>
                                                                        </label>
                                                                        <div class="col-md-8">
                                                                            <div class="col-md-4">
                                                                                <asp:RadioButtonList ID="RdbLstquestin1" runat="server" AutoPostBack="true" OnSelectedIndexChanged="RdbLstquestin1_SelectedIndexChanged">
                                                                                    <asp:ListItem Text="Compliant" Value="1" Selected="True">
                                                                                    <asp:ListItem Text="NonComplaint" Value="2">
                                                                                    <asp:ListItem Text="NonApplicable" Value="3">
                                                                                
                                                                            </div>
                                                                            <div class="col-md-3">
                                                                                <asp:LinkButton ID="lnkEditFood" Text="Edit Corrective Action" runat="server" Visible="false" CommandName="EditFoodAnswer" CommandArgument='<%#Eval("questionId") %>'>
                                                                            </div>
                                                                        </div>
                                                                    </div>
                                                                </itemtemplate>
                                                            
                                                        </columns>
Posted
Updated 25-Feb-14 3:29am
v3
Comments
Not clear. What exactly happening?

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900