Hi,
How to reference row template controls(dropdownlist) on server side, in PAGE_Load event ?
I have :
<P align=right><asp:Table id="Table1" runat="server" __designer:wfdid="w19">
<asp:TableRow>
<asp:TableCell>
<asp:Label ID="lblProduct" runat="server" Text="Product"></asp:Label>
</asp:TableCell>
<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
</asp:TableRow>
</asp:Table>
id="igtbl_reOkBtn"
type=button
<INPUT style="WIDTH: 50px"
onclick="igtbl_gRowEditButtonClick(event);"
value="Cancel" />
</P>
</RowEditTemplate>
How do i load the dropdown list with values for users to select?
Can i do it on page_Load event?
Note: i can get the value from Grid row on client side, how can i let users pick another value from dropdown list (here comes the problem of loading dropdown list)?
thank you,
Any answer to this?