c# 怎样把Repeater中的某个数据赋值到textbox里
3个回答
2011-07-06
展开全部
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
TextBox TextBox1= (TextBox )e.Row.FindControl("TextBox1");
TextBox1.Text="你要赋的值!";
}
}
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
TextBox TextBox1= (TextBox )e.Row.FindControl("TextBox1");
TextBox1.Text="你要赋的值!";
}
}
展开全部
前台写TextBox的时候直接用绑定写
<asp:TextBox ID="Txt_ss" runat="server" Text='<%#Eval("显示的字段名称")%>';
后台有Datatable也可以,泛型List也可以、
repeater.DataSource=你的数据源(数据源里面的字段要有跟Eval里面字段相符的)
Repeater.DataBind();
<asp:TextBox ID="Txt_ss" runat="server" Text='<%#Eval("显示的字段名称")%>';
后台有Datatable也可以,泛型List也可以、
repeater.DataSource=你的数据源(数据源里面的字段要有跟Eval里面字段相符的)
Repeater.DataBind();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-07-06
展开全部
foreach (RepeaterItem var in this.Repeater.Items)
{
if (var.ItemType != ListItemType.Header &&
var.ItemType != ListItemType.Footer)
{
TextBox box = var.FindControl("TextBox1") as TextBox;
box.Text="&!@*()!@)*(*(!@(*)!@";
}
}
大概就是这样 没开.NET 没法测试
另外,虚机团上产品团购,超级便宜
{
if (var.ItemType != ListItemType.Header &&
var.ItemType != ListItemType.Footer)
{
TextBox box = var.FindControl("TextBox1") as TextBox;
box.Text="&!@*()!@)*(*(!@(*)!@";
}
}
大概就是这样 没开.NET 没法测试
另外,虚机团上产品团购,超级便宜
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询