Posted on: 10/14/2014 3:00:15 AM | Views : 384

Dear All dotnet forum..
i have DropDownList inside datagridview FooterTemplate.
my question : how to get my DropDownList  "id" to aspx file ?
i want use it into the aspx file for :  <asp:AsyncPostBackTrigger ControlID="Dd_Currency" EventName="SelectedIndexChanged" />
this is my datagridview code :
<asp:GridView ID="GridViewProject" runat="server" AllowSorting="true" <FooterTemplate> <asp:DropDownList ID="Dd_Currency" OnSelectedIndexChanged="GetRates" autopostback="true" runat="server"> <asp:ListItem Text="JPY" Value="JPY" /> <asp:ListItem Text="IDR" Value="IDR" /> <asp:ListItem Text="SGD" Value="SGD" /> <asp:ListItem Selected="True" Text="US ...

Go to the complete details ...