Hi, I have an ASP.NET 1.1 application which uses a DataGrid control. I have
a column Template defined in the DataGrid which impliments a DropDownList
control for the EditItemTemplate. I need to be able to catch the
SelectedItemChanged event for this control, but not usre how to do it. Below
is the DataGrid def...
<asp:TemplateColumn HeaderText="Type" FooterText="Type of Characteristic">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"TypeName") %>
</ItemTemplate>
<EditItemTemplate>
<asp

ropDownList id=ddlTypes runat="server" Width="90px"
SelectedIndex='<%# DataBinder.Eval(Container.DataItem, "CharType") %>'
DataTextField="TypeName" DataSource="<%# dtCharTypes %>
</asp

ropDownList>
</EditItemTemplate>
</asp:TemplateColumn>
RML