<asp:TemplateColumn HeaderText="类型"> <HeaderStyle Width="20%"></HeaderStyle> <ItemTemplate> <table cellpadding="0" cellspacing="0">
<tr><asp:DropDownList Runat="server" ID="selPrice" style="font-size:12px;width:69px">
<asp:ListItem Value="0" Selected="True">选择价格</asp:ListItem>
<asp:ListItem Value="PurposePrice">供应价</asp:ListItem>
<asp:ListItem Value="txtXianKuanJia">现款价</asp:ListItem>
<asp:ListItem Value="txtYaPiJia">压批价</asp:ListItem>
<asp:ListItem Value="txtJieSuanJia">结算价</asp:ListItem>
</asp:DropDownList>
           <td>
</td></tr></table></ItemTemplate>private void MyDataGrid_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
     如何添加 DropDownList 的 onchange=selectPrice(Convert.ToInt32(DataBinder.Eval(Container.DataItem,"row_num"))+1) 事件 

</asp:TemplateColumn>