日期:2014-05-18  浏览次数:20504 次

棘手问题,高手请进!!!!!!!!
DataGrid   中   textbox的绑定,并对应数据库中的某个字段值

------解决方案--------------------
?
<asp:TextBox ID= "txtModel " runat= "server " Text= ' <%# DataBinder.Eval(Container, "DataItem.Model ") %> ' Width= "80px "> </asp:TextBox>
------解决方案--------------------
<asp:TextBox ID= "TextBox1 " runat= "server " Text= <%# Bind( "编号 ") %> > </asp:TextBox>
------解决方案--------------------
在DataGrid数据绑定方法中写
if(e.Item.DataItem is DataRowView)
{
DataRowView row = (DataRowView)e.Item.DataItem;
TextBox txt = (TextBox)e.Item.FindControls( "textbox ");
txt.Text = row[ "value "];
}