Click here to Skip to main content
15,887,337 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
My source code as follows
C#
<asp:GridView ID="gvfaculty" runat="server" AutoGenerateColumns="False"
                           BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px"
                           CellPadding="2" ForeColor="Black" GridLines="None" Height="107px"
                           onrowcreated="gvfaculty_RowCreated" onrowdatabound="gvfaculty_RowDataBound"
                           onselectedindexchanged="gvfaculty_SelectedIndexChanged" Width="91px">

                          <asp:BoundField DataField="Faculty Name" HeaderText="Faculty Name" />
                          <asp:BoundField DataField="FacultyID" HeaderText="FacultyID" />
                          <asp:TemplateField HeaderText="1">
                            <itemtemplate>
                                       <asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="true">
                                           <asp:ListItem Value="-1">--Select Grading --

                                   </itemtemplate>


                               <asp:TemplateField HeaderText="2">
                                   <itemtemplate>
                                       <asp:DropDownList ID="DropDownList2" runat="server" AppendDataBoundItems="true">
                                           <asp:ListItem Value="-1">--Select Grading --

                                   </itemtemplate>


                               <asp:TemplateField HeaderText="3">
                                   <itemtemplate>
                                       <asp:DropDownList ID="DropDownList3" runat="server" AppendDataBoundItems="true">
                                           <asp:ListItem Value="-1">--Select Grading --

                                   </itemtemplate>




for the above three dropdownlist how to write code for dropdownlist selected index changed event.

for that how can i do in asp.net using c#.
Posted
Updated 13-Feb-14 17:12pm
v2

1 solution

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