急!GridView和下拉菜单DropDownList结合的问题,改变某一行DropDownList的值,数据库里的数据为什么不更

protectedvoidGridView1_SelectedIndexChanged(objectsender,EventArgse){DropDownListType... protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList Type = sender as DropDownList;
TableCell cell = (TableCell)Type.Parent;
GridViewRow item = (GridViewRow)cell.Parent;
string sqlstr = "Update assignment set LL='" + Type.SelectedValue + "' where ID='"+item.Cells[0].Text+"'";
sqlcon = new MySqlConnection(strCon);
sqlcom = new MySqlCommand(sqlstr, sqlcon);
sqlcon.Open();
sqlcom.ExecuteNonQuery();
//sqlcon.Close();
}
<asp:TemplateField HeaderText="LL">
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" DataSource='<%# ddlbind()%>' DataValueField="LL" DataTextField="LL" AutoPostBack="True">

</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
我的目的就是在gridview中,直接修改dropdownlist的值,能更新到数据库。
展开
 我来答
weil_fighting
2011-02-16 · TA获得超过146个赞
知道答主
回答量:581
采纳率:0%
帮助的人:122万
展开全部
1、GridView1_SelectedIndexChanged这个方法根本就进不去的
2、你可以把前台的下拉框改一下<asp:DropDownList ID="DropDownList1" runat="server" DataSource='<%# ddlbind()%>' DataValueField="LL" DataTextField="LL" AutoPostBack="True" OnSelectedIndexChanged=”方法名”>,然后在后台编写这个方法就好了
你心中的净水
2011-02-16 · 超过13用户采纳过TA的回答
知道答主
回答量:128
采纳率:0%
帮助的人:68.9万
展开全部
设置个断点 然后看程序运行了冒
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式